diff options
author | Erik Andersen <andersen@codepoet.org> | 2000-01-13 06:38:14 +0000 |
---|---|---|
committer | Erik Andersen <andersen@codepoet.org> | 2000-01-13 06:38:14 +0000 |
commit | b7cc49d992ed9a5a59261096012e0b4a811bb7f4 (patch) | |
tree | d151960bd89e78df235150a498cb63f39bfcab2e /busybox.def.h | |
parent | 05df239ed90584156b820dbf3ede638208eb440f (diff) | |
download | busybox-w32-b7cc49d992ed9a5a59261096012e0b4a811bb7f4.tar.gz busybox-w32-b7cc49d992ed9a5a59261096012e0b4a811bb7f4.tar.bz2 busybox-w32-b7cc49d992ed9a5a59261096012e0b4a811bb7f4.zip |
* 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.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/busybox.def.h b/busybox.def.h index 65ed365a5..099eba96c 100644 --- a/busybox.def.h +++ b/busybox.def.h | |||
@@ -103,20 +103,31 @@ | |||
103 | // enable features that use the /proc filesystem (apps that | 103 | // enable features that use the /proc filesystem (apps that |
104 | // break without this will tell you on compile)... | 104 | // break without this will tell you on compile)... |
105 | #define BB_FEATURE_USE_PROCFS | 105 | #define BB_FEATURE_USE_PROCFS |
106 | // | ||
106 | // Use termios to manipulate the screen ('more' is prettier with this on) | 107 | // Use termios to manipulate the screen ('more' is prettier with this on) |
107 | #define BB_FEATURE_USE_TERMIOS | 108 | #define BB_FEATURE_USE_TERMIOS |
109 | // | ||
108 | // calculate terminal & column widths (for more and ls) | 110 | // calculate terminal & column widths (for more and ls) |
109 | #define BB_FEATURE_AUTOWIDTH | 111 | #define BB_FEATURE_AUTOWIDTH |
112 | // | ||
110 | // show username/groupnames (bypasses libc6 NSS) for ls | 113 | // show username/groupnames (bypasses libc6 NSS) for ls |
111 | #define BB_FEATURE_LS_USERNAME | 114 | #define BB_FEATURE_LS_USERNAME |
115 | // | ||
112 | // show file timestamps in ls | 116 | // show file timestamps in ls |
113 | #define BB_FEATURE_LS_TIMESTAMPS | 117 | #define BB_FEATURE_LS_TIMESTAMPS |
118 | // | ||
114 | // enable ls -p and -F | 119 | // enable ls -p and -F |
115 | #define BB_FEATURE_LS_FILETYPES | 120 | #define BB_FEATURE_LS_FILETYPES |
121 | // | ||
116 | // Change ping implementation -- simplified, featureless, but really small. | 122 | // Change ping implementation -- simplified, featureless, but really small. |
117 | //#define BB_SIMPLE_PING | 123 | //#define BB_SIMPLE_PING |
124 | //// | ||
118 | // Make init use a simplified /etc/inittab file (recommended). | 125 | // Make init use a simplified /etc/inittab file (recommended). |
119 | #define BB_FEATURE_USE_INITTAB | 126 | #define BB_FEATURE_USE_INITTAB |
127 | // | ||
120 | //Enable init being called as /linuxrc | 128 | //Enable init being called as /linuxrc |
121 | #define BB_FEATURE_LINUXRC | 129 | #define BB_FEATURE_LINUXRC |
122 | // | 130 | // |
131 | // Enable support for loop devices in mount | ||
132 | #define BB_FEATURE_MOUNT_LOOP | ||
133 | // | ||