aboutsummaryrefslogtreecommitdiff
path: root/include/applets.h
diff options
context:
space:
mode:
authorGlenn L McGrath <bug1@ihug.co.nz>2001-11-02 11:39:46 +0000
committerGlenn L McGrath <bug1@ihug.co.nz>2001-11-02 11:39:46 +0000
commit60281118d022a702c62c9047ba6998ef873917d4 (patch)
treec84573dea7b7461c7d2174391911075b1470e86e /include/applets.h
parentb89637a037c362a4bfef26375bb8cd1ddfdc98e0 (diff)
downloadbusybox-60281118d022a702c62c9047ba6998ef873917d4.tar.gz
Introduce od and hexdump applets
Diffstat (limited to 'include/applets.h')
-rw-r--r--include/applets.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/applets.h b/include/applets.h
index 44d274b85..ea196cb66 100644
--- a/include/applets.h
+++ b/include/applets.h
@@ -200,6 +200,9 @@
#ifdef CONFIG_HEAD
APPLET(head, head_main, _BB_DIR_USR_BIN)
#endif
+#ifdef CONFIG_HEXDUMP
+ APPLET(hexdump, hexdump_main, _BB_DIR_USR_BIN)
+#endif
#ifdef CONFIG_HOSTID
APPLET(hostid, hostid_main, _BB_DIR_USR_BIN)
#endif
@@ -317,6 +320,9 @@
#ifdef CONFIG_NSLOOKUP
APPLET(nslookup, nslookup_main, _BB_DIR_USR_BIN)
#endif
+#ifdef CONFIG_OD
+ APPLET(od, od_main, _BB_DIR_USR_BIN)
+#endif
#ifdef CONFIG_PIDOF
APPLET(pidof, pidof_main, _BB_DIR_BIN)
#endif