Only ifdef CONFIG_COMPAT_KERNEL_ was converted to something checking the kernel version. Now also ifndef is converted to the correct check. Signed-off-by: Hauke Mehrtens <hauke@xxxxxxxxxx> --- scripts/gen-compat-autoconf.sh | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/scripts/gen-compat-autoconf.sh b/scripts/gen-compat-autoconf.sh index 65232ab..5d38ea1 100755 --- a/scripts/gen-compat-autoconf.sh +++ b/scripts/gen-compat-autoconf.sh @@ -147,10 +147,14 @@ kernel_version_req $OLDEST_KERNEL_SUPPORTED # For each CONFIG_FOO=x option for i in $(egrep '^CONFIG_|^ifdef CONFIG_|^ifndef CONFIG_|^endif #CONFIG_|^else #CONFIG_' $COMPAT_CONFIG | sed 's/ /+/'); do case $i in - 'ifdef+CONFIG_'* | 'ifndef+CONFIG_'* ) # + 'ifdef+CONFIG_'* ) echo "#$i" | sed 's/+/ /' | sed 's/\(ifdef CONFIG_COMPAT_KERNEL_\)\([0-9]*\)/if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,\2))/' continue ;; + 'ifndef+CONFIG_'* ) + echo "#$i" | sed 's/+/ /' | sed 's/\(ifndef CONFIG_COMPAT_KERNEL_\)\([0-9]*\)/if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,\2))/' + continue + ;; 'else+#CONFIG_'* | 'endif+#CONFIG_'* ) echo "#$i */" |sed -e 's/+#/ \/* /g' continue -- 1.7.0.4 -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html