URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [rtems/] [c/] [src/] [libnetworking/] [rtems/] [rtems_bootp.c] - Rev 1765
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 (); }