diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-11-20 19:40:36 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-11-20 19:40:36 +0000 |
commit | 736230e2098e55720a1e235b1c13bdd1a3372c86 (patch) | |
tree | 8269cafd5207e1d2d3f3870c83b2e0b2bdc3bf42 /include | |
parent | c9cdeaa3fef3f93eb259957d36c760ec8902e0c1 (diff) | |
download | busybox-w32-736230e2098e55720a1e235b1c13bdd1a3372c86.tar.gz busybox-w32-736230e2098e55720a1e235b1c13bdd1a3372c86.tar.bz2 busybox-w32-736230e2098e55720a1e235b1c13bdd1a3372c86.zip |
dhcprelay: new applet
Diffstat (limited to 'include')
-rw-r--r-- | include/applets.h | 1 | ||||
-rw-r--r-- | include/usage.h | 10 |
2 files changed, 11 insertions, 0 deletions
diff --git a/include/applets.h b/include/applets.h index 78fa68861..1d6cc932e 100644 --- a/include/applets.h +++ b/include/applets.h | |||
@@ -94,6 +94,7 @@ USE_DELGROUP(APPLET_ODDNAME(delgroup, deluser, _BB_DIR_BIN, _BB_SUID_NEVER, delg | |||
94 | USE_DELUSER(APPLET(deluser, _BB_DIR_BIN, _BB_SUID_NEVER)) | 94 | USE_DELUSER(APPLET(deluser, _BB_DIR_BIN, _BB_SUID_NEVER)) |
95 | USE_DEVFSD(APPLET(devfsd, _BB_DIR_SBIN, _BB_SUID_NEVER)) | 95 | USE_DEVFSD(APPLET(devfsd, _BB_DIR_SBIN, _BB_SUID_NEVER)) |
96 | USE_DF(APPLET(df, _BB_DIR_BIN, _BB_SUID_NEVER)) | 96 | USE_DF(APPLET(df, _BB_DIR_BIN, _BB_SUID_NEVER)) |
97 | USE_APP_DHCPRELAY(APPLET(dhcprelay, _BB_DIR_USR_SBIN, _BB_SUID_NEVER)) | ||
97 | USE_DIFF(APPLET(diff, _BB_DIR_USR_BIN, _BB_SUID_NEVER)) | 98 | USE_DIFF(APPLET(diff, _BB_DIR_USR_BIN, _BB_SUID_NEVER)) |
98 | USE_DIRNAME(APPLET(dirname, _BB_DIR_USR_BIN, _BB_SUID_NEVER)) | 99 | USE_DIRNAME(APPLET(dirname, _BB_DIR_USR_BIN, _BB_SUID_NEVER)) |
99 | USE_DMESG(APPLET(dmesg, _BB_DIR_BIN, _BB_SUID_NEVER)) | 100 | USE_DMESG(APPLET(dmesg, _BB_DIR_BIN, _BB_SUID_NEVER)) |
diff --git a/include/usage.h b/include/usage.h index 9b2d11a4d..7898473a6 100644 --- a/include/usage.h +++ b/include/usage.h | |||
@@ -539,6 +539,16 @@ USE_FEATURE_DATE_ISOFMT( \ | |||
539 | "Filesystem 1k-blocks Used Available Use% Mounted on\n" \ | 539 | "Filesystem 1k-blocks Used Available Use% Mounted on\n" \ |
540 | "/dev/sda3 8690864 8553540 137324 98% /\n" | 540 | "/dev/sda3 8690864 8553540 137324 98% /\n" |
541 | 541 | ||
542 | #define dhcprelay_trivial_usage \ | ||
543 | "[client_device_list] [server_device]" | ||
544 | #define dhcprelay_full_usage \ | ||
545 | "Relays dhcp requests from client devices to server device" | ||
546 | |||
547 | #define dhcprelay_trivial_usage \ | ||
548 | "[client_device_list] [server_device]" | ||
549 | #define dhcprelay_full_usage \ | ||
550 | "Relays dhcp requests from client devices to server device" | ||
551 | |||
542 | #define diff_trivial_usage \ | 552 | #define diff_trivial_usage \ |
543 | "[-abdiNqrTstw] [-L LABEL] [-S FILE] [-U LINES] FILE1 FILE2" | 553 | "[-abdiNqrTstw] [-L LABEL] [-S FILE] [-U LINES] FILE1 FILE2" |
544 | #define diff_full_usage \ | 554 | #define diff_full_usage \ |