diff options
author | Alexey Neyman <stilor@att.net> | 2019-04-05 14:09:14 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-05 14:09:14 -0700 |
commit | d0f484f2566cfda1faaef193ef7316bca5dc8fb7 (patch) | |
tree | 34ba07e25a2b2dc718e800b94f7512b4fc4c088e /scripts/build/kernel/linux.sh | |
parent | e593d1e68d3c3645a725f3b3100cce849541a80c (diff) | |
parent | 4f360146eb582d7c994080a64e9e9e9e817bdbdb (diff) | |
download | crosstool-ng-d0f484f2566cfda1faaef193ef7316bca5dc8fb7.tar.gz crosstool-ng-d0f484f2566cfda1faaef193ef7316bca5dc8fb7.tar.bz2 crosstool-ng-d0f484f2566cfda1faaef193ef7316bca5dc8fb7.zip |
Merge pull request #1169 from jcmvbkbc/xtensa-fixes
noMMU xtensa fixes
Diffstat (limited to 'scripts/build/kernel/linux.sh')
-rw-r--r-- | scripts/build/kernel/linux.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/build/kernel/linux.sh b/scripts/build/kernel/linux.sh index f0987653..bfeadf07 100644 --- a/scripts/build/kernel/linux.sh +++ b/scripts/build/kernel/linux.sh @@ -9,9 +9,9 @@ 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" ;; - m68k) CT_TARGET_KERNEL="uclinux" ;; - *) CT_Abort "Unsupported no-mmu arch '${CT_ARCH}'" + arm*) CT_TARGET_KERNEL="linux" ;; + m68k|xtensa*) CT_TARGET_KERNEL="uclinux" ;; + *) CT_Abort "Unsupported no-mmu arch '${CT_ARCH}'" esac fi } |