diff options
author | Erik Andersen <andersen@codepoet.org> | 2000-01-06 01:16:13 +0000 |
---|---|---|
committer | Erik Andersen <andersen@codepoet.org> | 2000-01-06 01:16:13 +0000 |
commit | 9e7372584f5cbe50e15ba5d345b83a463322d21d (patch) | |
tree | 226cb6160b0812a13b455f425b7db10f9e53481e /busybox.def.h | |
parent | 0b874ed41f4bd7bec609541e2883d8ad4933c680 (diff) | |
download | busybox-w32-9e7372584f5cbe50e15ba5d345b83a463322d21d.tar.gz busybox-w32-9e7372584f5cbe50e15ba5d345b83a463322d21d.tar.bz2 busybox-w32-9e7372584f5cbe50e15ba5d345b83a463322d21d.zip |
inittab is now perfect. The universe will now submit to my
will. muhahahaha!!! Phear!
-Erik
Diffstat (limited to 'busybox.def.h')
-rw-r--r-- | busybox.def.h | 43 |
1 files changed, 28 insertions, 15 deletions
diff --git a/busybox.def.h b/busybox.def.h index 0e62ca781..032146519 100644 --- a/busybox.def.h +++ b/busybox.def.h | |||
@@ -1,8 +1,11 @@ | |||
1 | /* | 1 | // This file defines the feature set to be compiled into busybox. |
2 | * This file is parsed by sed. You MUST use single line comments. | 2 | // When you turn things off here, they won't be compiled in at all. |
3 | * IE //#define BB_BLAH | 3 | // |
4 | */ | 4 | //// This file is parsed by sed. You MUST use single line comments. |
5 | 5 | // i.e. //#define BB_BLAH | |
6 | // | ||
7 | // | ||
8 | // BusyBox Applications | ||
6 | #define BB_BUSYBOX | 9 | #define BB_BUSYBOX |
7 | #define BB_CAT | 10 | #define BB_CAT |
8 | #define BB_CHMOD_CHOWN_CHGRP | 11 | #define BB_CHMOD_CHOWN_CHGRP |
@@ -28,6 +31,7 @@ | |||
28 | #define BB_HEAD | 31 | #define BB_HEAD |
29 | #define BB_HOSTNAME | 32 | #define BB_HOSTNAME |
30 | #define BB_INIT | 33 | #define BB_INIT |
34 | // Don't turn BB_INSMOD on. It doesn't work. | ||
31 | //#define BB_INSMOD | 35 | //#define BB_INSMOD |
32 | #define BB_KILL | 36 | #define BB_KILL |
33 | #define BB_KLOGD | 37 | #define BB_KLOGD |
@@ -80,9 +84,7 @@ | |||
80 | #define BB_UNAME | 84 | #define BB_UNAME |
81 | #define BB_GZIP | 85 | #define BB_GZIP |
82 | #define BB_GUNZIP | 86 | #define BB_GUNZIP |
83 | // Don't turn BB_UTILITY off. It contains support code | 87 | // End of Applications List |
84 | // that compiles to 0 if everything else if turned off. | ||
85 | #define BB_UTILITY | ||
86 | // | 88 | // |
87 | // | 89 | // |
88 | // | 90 | // |
@@ -91,19 +93,30 @@ | |||
91 | // pretty/useful). | 93 | // pretty/useful). |
92 | // | 94 | // |
93 | // | 95 | // |
94 | // enable features that use the /proc filesystem | 96 | // enable features that use the /proc filesystem (apps that |
97 | // break without this will tell you on compile)... | ||
95 | #define BB_FEATURE_USE_PROCFS | 98 | #define BB_FEATURE_USE_PROCFS |
96 | //Enable init being called as /linuxrc | ||
97 | #define BB_FEATURE_LINUXRC | ||
98 | // Use termios to manipulate the screen ('more' is prettier with this on) | 99 | // Use termios to manipulate the screen ('more' is prettier with this on) |
99 | #define BB_FEATURE_USE_TERMIOS | 100 | #define BB_FEATURE_USE_TERMIOS |
100 | // calculate terminal & column widths | 101 | // calculate terminal & column widths (for more and ls) |
101 | #define BB_FEATURE_AUTOWIDTH | 102 | #define BB_FEATURE_AUTOWIDTH |
102 | // show username/groupnames (bypasses libc6 NSS) | 103 | // show username/groupnames (bypasses libc6 NSS) for ls |
103 | #define BB_FEATURE_LS_USERNAME | 104 | #define BB_FEATURE_LS_USERNAME |
104 | // show file timestamps | 105 | // show file timestamps in ls |
105 | #define BB_FEATURE_LS_TIMESTAMPS | 106 | #define BB_FEATURE_LS_TIMESTAMPS |
106 | // enable ls -p and -F | 107 | // enable ls -p and -F |
107 | #define BB_FEATURE_LS_FILETYPES | 108 | #define BB_FEATURE_LS_FILETYPES |
108 | // simplified ping | 109 | // Change ping implementation -- simplified, featureless, but really small. |
109 | //#define BB_SIMPLE_PING | 110 | //#define BB_SIMPLE_PING |
111 | // Make init use a simplified /etc/inittab file (recommended). | ||
112 | #define BB_FEATURE_USE_INITTAB | ||
113 | //Enable init being called as /linuxrc | ||
114 | #define BB_FEATURE_LINUXRC | ||
115 | // | ||
116 | // | ||
117 | // | ||
118 | // Don't turn BB_UTILITY off. It contains support code | ||
119 | // that compiles to 0 if everything else if turned off. | ||
120 | #define BB_UTILITY | ||
121 | // | ||
122 | // | ||