summaryrefslogtreecommitdiffstats
path: root/rtemsbsd
diff options
context:
space:
mode:
authorKinsey Moore <kinsey.moore@oarcorp.com>2024-03-13 12:20:20 -0500
committerJoel Sherrill <joel@rtems.org>2024-03-27 12:12:24 -0500
commit89db1bb27c9d52164a78dc2fda0a2ba9da0920ef (patch)
tree83862f2c1f46f16469c228a63f6ba7e097764789 /rtemsbsd
parentfreebsd/mmcsd: Disable on-device cache usage (diff)
downloadrtems-libbsd-master.tar.bz2
rtemsbsd: Remove old DHCP init prototypeHEADmaster
This prototype should have been removed with commit ac4db4cec5b6b1e0a25e910851e50831afb0749d.
Diffstat (limited to 'rtemsbsd')
-rwxr-xr-xrtemsbsd/include/rtems/bsd/bsd.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/rtemsbsd/include/rtems/bsd/bsd.h b/rtemsbsd/include/rtems/bsd/bsd.h
index cec14ac4..9e524719 100755
--- a/rtemsbsd/include/rtems/bsd/bsd.h
+++ b/rtemsbsd/include/rtems/bsd/bsd.h
@@ -92,28 +92,6 @@ typedef struct {
rtems_status_code rtems_bsd_initialize(void);
/**
- * @brief Initializes the libbsd and starts a DHCPCD task.
- *
- * The libbsd is initialized via rtems_bsd_initialize(). If this is
- * successful, then the loop back interfaces are created. If this is
- * successful, then a DHCPCD task is started at the least important priority.
- *
- * The default devices of the BSP are initialized. Support for
- * - IF_BRIDGE(4),
- * - LAGG(4),
- * - multicast routing,
- * - UNIX(4), and
- * - VLAN(4),
- * is enabled.
- *
- * No RTEMS shell commands are registered.
- *
- * @retval RTEMS_SUCCESSFUL Successful operation.
- * @retval otherwise An error occurred.
- */
-rtems_status_code rtems_bsd_initialize_dhcp(void);
-
-/**
* @brief Configures the lo0 (loopback) interface.
*
* @return Returns an exit code, see also <sysexits.h>.