From 065dabd767148964280a8283c4bf47fa5cdece13 Mon Sep 17 00:00:00 2001 From: Steve Bennett Date: Mon, 3 Feb 2020 10:26:18 +1000 Subject: [PATCH] Add support for no-mmu microblaze no-mmu architectures need to be explicitly listed in CT_DoKernelTupleValues Signed-off-by: Steve Bennett --- scripts/build/kernel/linux.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build/kernel/linux.sh b/scripts/build/kernel/linux.sh index 4c962577..ad3c2ca3 100644 --- a/scripts/build/kernel/linux.sh +++ b/scripts/build/kernel/linux.sh @@ -9,7 +9,7 @@ CT_DoKernelTupleValues() # while others must have a -linux tuple. Other targets # should be added here when someone starts to care about them. case "${CT_ARCH}" in - arm*) CT_TARGET_KERNEL="linux" ;; + arm*|microblaze*) CT_TARGET_KERNEL="linux" ;; c6x|m68k|xtensa*) CT_TARGET_KERNEL="uclinux" ;; *) CT_Abort "Unsupported no-mmu arch '${CT_ARCH}'" esac