diff options
author | Kang-Che Sung | 2017-01-30 19:14:50 +0100 |
---|---|---|
committer | Denys Vlasenko | 2017-01-30 19:14:50 +0100 |
commit | 065e988e7ae66b3f36d280ed6ca580e29cb6358d (patch) | |
tree | 00cb6398cc06019edc65e78eb8c79ea14e714de0 /configs/android_ndk_defconfig | |
parent | 67f6db6b2768e9af44132b0a11fbadf15c330283 (diff) | |
download | busybox-065e988e7ae66b3f36d280ed6ca580e29cb6358d.zip busybox-065e988e7ae66b3f36d280ed6ca580e29cb6358d.tar.gz |
modutils: fix config options dependency
module.aliases and module.symbols files have no use in modprobe-small
implementation. So FEATURE_MODUTILS_ALIAS and FEATURE_MODUTILS_SYMBOLS
will depend on !MODPROBE_SMALL.
The try_to_mmap_module() function is not called in modprobe-small.c,
so I will let FEATURE_INSMOD_TRY_MMAP depend on !MODPROBE_SMALL for
now.
Signed-off-by: Kang-Che Sung <explorer09@gmail.com>
Likewise, FEATURE_2_4_MODULES is not used by modprobe-small.
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'configs/android_ndk_defconfig')
-rw-r--r-- | configs/android_ndk_defconfig | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/configs/android_ndk_defconfig b/configs/android_ndk_defconfig index caf22e5..35d03b4 100644 --- a/configs/android_ndk_defconfig +++ b/configs/android_ndk_defconfig @@ -522,15 +522,12 @@ CONFIG_FEATURE_MODPROBE_SMALL_CHECK_ALREADY_LOADED=y # Options common to multiple modutils # # CONFIG_FEATURE_2_4_MODULES is not set -# CONFIG_FEATURE_INSMOD_TRY_MMAP is not set # CONFIG_FEATURE_INSMOD_VERSION_CHECKING is not set # CONFIG_FEATURE_INSMOD_KSYMOOPS_SYMBOLS is not set # CONFIG_FEATURE_INSMOD_LOADINKMEM is not set # CONFIG_FEATURE_INSMOD_LOAD_MAP is not set # CONFIG_FEATURE_INSMOD_LOAD_MAP_FULL is not set # CONFIG_FEATURE_CHECK_TAINTED_MODULE is not set -# CONFIG_FEATURE_MODUTILS_ALIAS is not set -# CONFIG_FEATURE_MODUTILS_SYMBOLS is not set CONFIG_DEFAULT_MODULES_DIR="/system/lib/modules" CONFIG_DEFAULT_DEPMOD_FILE="modules.dep" |