diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-06-11 05:29:40 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-06-11 05:29:40 +0000 |
commit | 6447ac0ef47a99619e0a51ff6bcb4f8c9ea5bdb8 (patch) | |
tree | f7bb3bdfb16f8b0927ae91164c2bfa6373c8c0a9 /include/applets.h | |
parent | 174808cedbc069d59e8a2cb570d35d9001c1e51b (diff) | |
download | busybox-6447ac0ef47a99619e0a51ff6bcb4f8c9ea5bdb8.tar.gz |
import initial fat mke2fs
Diffstat (limited to 'include/applets.h')
-rw-r--r-- | include/applets.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/applets.h b/include/applets.h index d6e767dbf..e0b18085a 100644 --- a/include/applets.h +++ b/include/applets.h @@ -395,9 +395,16 @@ #ifdef CONFIG_MKDIR APPLET(mkdir, mkdir_main, _BB_DIR_BIN, _BB_SUID_NEVER) #endif +#ifdef CONFIG_MKE2FS + APPLET(mke2fs, mke2fs_main, _BB_DIR_SBIN, _BB_SUID_NEVER) +#endif #ifdef CONFIG_MKFIFO APPLET(mkfifo, mkfifo_main, _BB_DIR_USR_BIN, _BB_SUID_NEVER) #endif +#ifdef CONFIG_MKE2FS + APPLET_NOUSAGE("mkfs.ext2", mke2fs_main, _BB_DIR_SBIN, _BB_SUID_NEVER) + APPLET_NOUSAGE("mkfs.ext3", mke2fs_main, _BB_DIR_SBIN, _BB_SUID_NEVER) +#endif #ifdef CONFIG_MKFS_MINIX APPLET_ODDNAME("mkfs.minix", mkfs_minix_main, _BB_DIR_SBIN, _BB_SUID_NEVER, mkfs_minix) #endif |