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>
This commit is contained in:
Steve Bennett 2020-02-03 10:26:18 +10:00
parent cf53d3736f
commit 065dabd767

View File

@ -9,7 +9,7 @@ CT_DoKernelTupleValues()
# while others must have a -linux tuple. Other targets # while others must have a -linux tuple. Other targets
# should be added here when someone starts to care about them. # should be added here when someone starts to care about them.
case "${CT_ARCH}" in case "${CT_ARCH}" in
arm*) CT_TARGET_KERNEL="linux" ;; arm*|microblaze*) CT_TARGET_KERNEL="linux" ;;
c6x|m68k|xtensa*) CT_TARGET_KERNEL="uclinux" ;; c6x|m68k|xtensa*) CT_TARGET_KERNEL="uclinux" ;;
*) CT_Abort "Unsupported no-mmu arch '${CT_ARCH}'" *) CT_Abort "Unsupported no-mmu arch '${CT_ARCH}'"
esac esac