diff options
author | Eric Andersen | 2001-02-14 08:11:27 +0000 |
---|---|---|
committer | Eric Andersen | 2001-02-14 08:11:27 +0000 |
commit | ec455953008d08f588fe0c0bd9df4278cd188315 (patch) | |
tree | ece4d8fefb69365210a9e623df07b41086cd5613 /applets.h | |
parent | 88a5ceb450b576558b7d34e0baadb204dd329fb8 (diff) | |
download | busybox-ec455953008d08f588fe0c0bd9df4278cd188315.zip busybox-ec455953008d08f588fe0c0bd9df4278cd188315.tar.gz |
Add in ifconfig and route
Diffstat (limited to 'applets.h')
-rw-r--r-- | applets.h | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -158,6 +158,9 @@ const struct BB_applet applets[] = { #ifdef BB_ID APPLET("id", id_main, _BB_DIR_USR_BIN, id_usage) #endif +#ifdef BB_IFCONFIG + APPLET("ifconfig", ifconfig_main, _BB_DIR_SBIN, ifconfig_usage) +#endif #ifdef BB_INIT APPLET_NOUSAGE("init", init_main, _BB_DIR_SBIN) #endif @@ -284,6 +287,9 @@ const struct BB_applet applets[] = { #ifdef BB_RMMOD APPLET("rmmod", rmmod_main, _BB_DIR_SBIN, rmmod_usage) #endif +#ifdef BB_ROUTE + APPLET("route", route_main, _BB_DIR_USR_BIN, route_usage) +#endif #ifdef BB_RPMUNPACK APPLET("rpmunpack", rpmunpack_main, _BB_DIR_USR_BIN, rpmunpack_usage) #endif |