URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [rtems/] [c/] [src/] [libnetworking/] [rtems/] [rtems_bootp.c] - Rev 158
Go to most recent revision | Compare with Previous | Blame | View Log
/* * $Id: rtems_bootp.c,v 1.1.1.1 2001-07-10 10:00:12 chris Exp $ */ #include <rtems.h> #include <rtems/error.h> #include <sys/types.h> #include <rtems/rtems_bsdnet.h> /* * Perform a BOOTP request */ void rtems_bsdnet_do_bootp (void) { rtems_bsdnet_semaphore_obtain (); bootpc_init (); rtems_bsdnet_semaphore_release (); }
Go to most recent revision | Compare with Previous | Blame | View Log