From: Imre Kaloz Date: Fri, 8 Jun 2007 10:29:05 +0000 (+0000) Subject: only support 2.6 modules on 2.6, and only 2.4 modules on 2.4 X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=0f34319e6e7cb46c116e835916eae67c73b78793;p=openwrt%2Fstaging%2Fmkresin.git only support 2.6 modules on 2.6, and only 2.4 modules on 2.4 SVN-Revision: 7529 --- 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