diff options
author | Imre Kaloz <kaloz@openwrt.org> | 2007-06-08 10:29:05 +0000 |
---|---|---|
committer | Imre Kaloz <kaloz@openwrt.org> | 2007-06-08 10:29:05 +0000 |
commit | f0a4e49137c1ba865a55aa8c8ca48dac949e0379 (patch) | |
tree | 03e5c3747f96affa4e5280736265a6b6a88f79d6 /package | |
parent | d92c92fd29791d6a62df7590989cc17183c80cb8 (diff) | |
download | upstream-f0a4e49137c1ba865a55aa8c8ca48dac949e0379.tar.gz upstream-f0a4e49137c1ba865a55aa8c8ca48dac949e0379.tar.bz2 upstream-f0a4e49137c1ba865a55aa8c8ca48dac949e0379.zip |
only support 2.6 modules on 2.6, and only 2.4 modules on 2.4
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7529 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package')
-rw-r--r-- | package/busybox/target-config.in | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/package/busybox/target-config.in b/package/busybox/target-config.in index 86f270b590..10a79ffdc8 100644 --- a/package/busybox/target-config.in +++ b/package/busybox/target-config.in @@ -2,3 +2,10 @@ config BUSYBOX_CONFIG_FEATURE_DEVFS default y if LINUX_2_4 default n if LINUX_2_6 +config BUSYBOX_CONFIG_FEATURE_2_4_MODULES + default y if LINUX_2_4 + default n if LINUX_2_6 + +config BUSYBOX_CONFIG_FEATURE_2_6_MODULES + default n if LINUX_2_4 + default y if LINUX_2_6 |