summaryrefslogtreecommitdiff
path: root/scripts/build
diff options
context:
space:
mode:
authorSteve Bennett <steveb@workware.net.au>2020-02-03 00:26:18 (GMT)
committerSteve Bennett <steveb@workware.net.au>2021-08-25 07:36:47 (GMT)
commit065dabd767148964280a8283c4bf47fa5cdece13 (patch)
treee25813a942bb331df4ce058319ca7132cf67ac0f /scripts/build
parentcf53d3736f014436431a1ac6ecae08d94ec7c9c0 (diff)
Add support for no-mmu microblaze
no-mmu architectures need to be explicitly listed in CT_DoKernelTupleValues Signed-off-by: Steve Bennett <steveb@workware.net.au>
Diffstat (limited to 'scripts/build')
-rw-r--r--scripts/build/kernel/linux.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/build/kernel/linux.sh b/scripts/build/kernel/linux.sh
index 4c96257..ad3c2ca 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