diff options
author | Mike Frysinger | 2005-04-22 02:33:37 +0000 |
---|---|---|
committer | Mike Frysinger | 2005-04-22 02:33:37 +0000 |
commit | de9f1f757af7e15881156b610431cd00c262f768 (patch) | |
tree | a7fd230099dc3388b179ca51e806495f052c01c5 /include/applets.h | |
parent | 2c12d435e5ccd402f6210827df0b2038093fbcee (diff) | |
download | busybox-de9f1f757af7e15881156b610431cd00c262f768.zip busybox-de9f1f757af7e15881156b610431cd00c262f768.tar.gz |
import lsattr and chattr from e2fsprogs
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 462d918..5ecdf79 100644 --- a/include/applets.h +++ b/include/applets.h @@ -89,6 +89,9 @@ #ifdef CONFIG_CAT APPLET(cat, cat_main, _BB_DIR_BIN, _BB_SUID_NEVER) #endif +#ifdef CONFIG_CHATTR + APPLET(chattr, chattr_main, _BB_DIR_BIN, _BB_SUID_NEVER) +#endif #ifdef CONFIG_CHGRP APPLET(chgrp, chgrp_main, _BB_DIR_BIN, _BB_SUID_NEVER) #endif @@ -359,6 +362,9 @@ #ifdef CONFIG_LS APPLET(ls, ls_main, _BB_DIR_BIN, _BB_SUID_NEVER) #endif +#ifdef CONFIG_LSATTR + APPLET(lsattr, lsattr_main, _BB_DIR_BIN, _BB_SUID_NEVER) +#endif #ifdef CONFIG_LSMOD APPLET(lsmod, lsmod_main, _BB_DIR_SBIN, _BB_SUID_NEVER) #endif |