diff options
author | Steve Bennett <steveb@workware.net.au> | 2020-02-03 10:26:18 +1000 |
---|---|---|
committer | Steve Bennett <steveb@workware.net.au> | 2021-08-25 17:36:47 +1000 |
commit | 065dabd767148964280a8283c4bf47fa5cdece13 (patch) | |
tree | e25813a942bb331df4ce058319ca7132cf67ac0f /scripts | |
parent | cf53d3736f014436431a1ac6ecae08d94ec7c9c0 (diff) | |
download | crosstool-ng-065dabd767148964280a8283c4bf47fa5cdece13.tar.gz crosstool-ng-065dabd767148964280a8283c4bf47fa5cdece13.tar.bz2 crosstool-ng-065dabd767148964280a8283c4bf47fa5cdece13.zip |
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')
-rw-r--r-- | scripts/build/kernel/linux.sh | 2 |
1 files changed, 1 insertions, 1 deletions
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 |