aboutsummaryrefslogtreecommitdiff
path: root/busybox.def.h
diff options
context:
space:
mode:
Diffstat (limited to 'busybox.def.h')
-rw-r--r--busybox.def.h18
1 files changed, 16 insertions, 2 deletions
diff --git a/busybox.def.h b/busybox.def.h
index 11a791ef4..62ea5096e 100644
--- a/busybox.def.h
+++ b/busybox.def.h
@@ -40,8 +40,7 @@
40#define BB_HOSTNAME 40#define BB_HOSTNAME
41#define BB_ID 41#define BB_ID
42#define BB_INIT 42#define BB_INIT
43// Don't bother turning BB_INSMOD on. It doesn't work yet. 43#define BB_INSMOD
44//#define BB_INSMOD
45#define BB_KILL 44#define BB_KILL
46#define BB_KILLALL 45#define BB_KILLALL
47#define BB_KLOGD 46#define BB_KLOGD
@@ -219,6 +218,15 @@
219//Turn on extra fbset options 218//Turn on extra fbset options
220//#define BB_FEATURE_FBSET_FANCY 219//#define BB_FEATURE_FBSET_FANCY
221// 220//
221// You must enable one or both of these features
222// Support installing modules from pre 2.1 kernels
223//#define BB_FEATURE_INSMOD_OLD_KERNEL
224// Support installing modules from kernel versions after 2.1.18
225#define BB_FEATURE_INSMOD_NEW_KERNEL
226//
227// Support module version checking
228//#define BB_FEATURE_INSMOD_VERSION_CHECKING
229//
222// 230//
223// End of Features List 231// End of Features List
224// 232//
@@ -271,3 +279,9 @@
271#define BB_FEATURE_USE_TERMIOS 279#define BB_FEATURE_USE_TERMIOS
272#endif 280#endif
273#endif 281#endif
282//
283#if defined BB_INSMOD
284#ifndef BB_FEATURE_INSMOD_OLD_KERNEL
285#define BB_FEATURE_INSMOD_NEW_KERNEL
286#endif
287#endif