diff -r bdb3a98e064b -r 207ad430c254 scripts/build/kernel/linux.sh --- a/scripts/build/kernel/linux.sh Sun Apr 11 23:18:10 2010 +0200 +++ b/scripts/build/kernel/linux.sh Wed Apr 07 09:18:20 2010 +0200 @@ -6,7 +6,12 @@ if [ "${CT_ARCH_USE_MMU}" = "y" ]; then CT_TARGET_KERNEL="linux" else - CT_TARGET_KERNEL="uclinux" + # Sometime, noMMU linux targets have a -uclinux tuple, while + # sometime it's -linux. We currently have only one noMMU linux + # target, and it uses -linux, so let's just use that. Time + # to fix that later... + # CT_TARGET_KERNEL="uclinux" + CT_TARGET_KERNEL="linux" fi }