summaryrefslogtreecommitdiff
path: root/busybox.def.h
diff options
context:
space:
mode:
authorErik Andersen2000-01-13 06:38:14 +0000
committerErik Andersen2000-01-13 06:38:14 +0000
commitb7cc49d992ed9a5a59261096012e0b4a811bb7f4 (patch)
treed151960bd89e78df235150a498cb63f39bfcab2e /busybox.def.h
parent05df239ed90584156b820dbf3ede638208eb440f (diff)
downloadbusybox-b7cc49d992ed9a5a59261096012e0b4a811bb7f4.zip
busybox-b7cc49d992ed9a5a59261096012e0b4a811bb7f4.tar.gz
* Added -o loop option for mount, and support in umount for loop
devices. Support is toggled by MOUNT_LOOP feature -- Ben Collins <bcollins@debian.org> -Erik
Diffstat (limited to 'busybox.def.h')
-rw-r--r--busybox.def.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/busybox.def.h b/busybox.def.h
index 65ed365..099eba9 100644
--- a/busybox.def.h
+++ b/busybox.def.h
@@ -103,20 +103,31 @@
// enable features that use the /proc filesystem (apps that
// break without this will tell you on compile)...
#define BB_FEATURE_USE_PROCFS
+//
// Use termios to manipulate the screen ('more' is prettier with this on)
#define BB_FEATURE_USE_TERMIOS
+//
// calculate terminal & column widths (for more and ls)
#define BB_FEATURE_AUTOWIDTH
+//
// show username/groupnames (bypasses libc6 NSS) for ls
#define BB_FEATURE_LS_USERNAME
+//
// show file timestamps in ls
#define BB_FEATURE_LS_TIMESTAMPS
+//
// enable ls -p and -F
#define BB_FEATURE_LS_FILETYPES
+//
// Change ping implementation -- simplified, featureless, but really small.
//#define BB_SIMPLE_PING
+////
// Make init use a simplified /etc/inittab file (recommended).
#define BB_FEATURE_USE_INITTAB
+//
//Enable init being called as /linuxrc
#define BB_FEATURE_LINUXRC
//
+// Enable support for loop devices in mount
+#define BB_FEATURE_MOUNT_LOOP
+//