diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/applets.h | 3 | ||||
-rw-r--r-- | include/usage.h | 5 |
2 files changed, 8 insertions, 0 deletions
diff --git a/include/applets.h b/include/applets.h index 2de9c99..3173445 100644 --- a/include/applets.h +++ b/include/applets.h @@ -251,6 +251,9 @@ #ifdef CONFIG_INSMOD APPLET(insmod, insmod_main, _BB_DIR_SBIN, _BB_SUID_NEVER) #endif +#ifdef CONFIG_IP + APPLET(ip, ip_main, _BB_DIR_BIN, _BB_SUID_NEVER) +#endif #ifdef CONFIG_KILL APPLET(kill, kill_main, _BB_DIR_BIN, _BB_SUID_NEVER) #endif diff --git a/include/usage.h b/include/usage.h index 2d20722..d0aa324 100644 --- a/include/usage.h +++ b/include/usage.h @@ -977,6 +977,11 @@ "\t-L\tLock to prevent simultaneous loads of a module\n" \ "\t-x\tdo not export externs" +#define ip_trivial_usage \ + "not written yet" +#define ip_full_usage \ + "not written yet" + #define kill_trivial_usage \ "[-signal] process-id [process-id ...]" #define kill_full_usage \ |