diff options
author | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 1999-11-19 05:42:32 +0000 |
---|---|---|
committer | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 1999-11-19 05:42:32 +0000 |
commit | 3e301ed50813b81288e0df01ec652a62ff15af53 (patch) | |
tree | 11746a3d635b293c29287b1ae0c8e6bcbe88a07f /busybox.def.h | |
parent | 9854b38d81f9a8c0c5feb245d070b378415a82c2 (diff) | |
download | busybox-w32-3e301ed50813b81288e0df01ec652a62ff15af53.tar.gz busybox-w32-3e301ed50813b81288e0df01ec652a62ff15af53.tar.bz2 busybox-w32-3e301ed50813b81288e0df01ec652a62ff15af53.zip |
Stuf
git-svn-id: svn://busybox.net/trunk/busybox@110 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'busybox.def.h')
-rw-r--r-- | busybox.def.h | 23 |
1 files changed, 16 insertions, 7 deletions
diff --git a/busybox.def.h b/busybox.def.h index fcdd66e37..a48deeca9 100644 --- a/busybox.def.h +++ b/busybox.def.h | |||
@@ -65,13 +65,22 @@ | |||
65 | // that compiles to 0 if everything else if turned off. | 65 | // that compiles to 0 if everything else if turned off. |
66 | #define BB_UTILITY | 66 | #define BB_UTILITY |
67 | // | 67 | // |
68 | //This is where feature definitions go. | 68 | // |
69 | // | ||
70 | // This is where feature definitions go. Generally speaking, | ||
71 | // turning this stuff off makes things a bit smaller (and less | ||
72 | // pretty/useful). | ||
73 | // | ||
74 | // | ||
75 | //Enable init being called as /linuxrc | ||
69 | #define BB_FEATURE_LINUXRC | 76 | #define BB_FEATURE_LINUXRC |
70 | /* Turning this off makes things a bit smaller (and less pretty) */ | 77 | // Use termios to manipulate the screen (more is much pretties with this on) |
71 | #define BB_FEATURE_USE_TERMIOS | 78 | #define BB_FEATURE_USE_TERMIOS |
72 | /* Turning this off makes things a bit smaller (and less pretty) */ | 79 | // calculate terminal & column widths |
73 | #define BB_FEATURE_AUTOWIDTH | 80 | #define BB_FEATURE_AUTOWIDTH |
74 | 81 | // show username/groupnames (bypasses libc6 NSS) | |
75 | 82 | #define BB_FEATURE_LS_USERNAME | |
76 | 83 | // show file timestamps | |
77 | 84 | #define BB_FEATURE_LS_TIMESTAMPS | |
85 | // enable ls -p and -F | ||
86 | #define BB_FEATURE_LS_FILETYPES | ||