URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [rtos/] [rtems/] [c/] [src/] [libnetworking/] [rtems/] [rtems_bootp.c] - Rev 773
Go to most recent revision | Compare with Previous | Blame | View Log
/* * $Id: rtems_bootp.c,v 1.2 2001-09-27 12:02:00 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