diff options
author | Glenn L McGrath | 2001-11-02 11:39:46 +0000 |
---|---|---|
committer | Glenn L McGrath | 2001-11-02 11:39:46 +0000 |
commit | 60281118d022a702c62c9047ba6998ef873917d4 (patch) | |
tree | c84573dea7b7461c7d2174391911075b1470e86e /include/applets.h | |
parent | b89637a037c362a4bfef26375bb8cd1ddfdc98e0 (diff) | |
download | busybox-60281118d022a702c62c9047ba6998ef873917d4.zip busybox-60281118d022a702c62c9047ba6998ef873917d4.tar.gz |
Introduce od and hexdump applets
Diffstat (limited to 'include/applets.h')
-rw-r--r-- | include/applets.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/applets.h b/include/applets.h index 44d274b..ea196cb 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 |