Skip to content
This repository was archived by the owner on Apr 13, 2024. It is now read-only.

Commit 931b90a

Browse files
nathanchancetpimh
authored andcommitted
driver: Add support for s390
We do not boot with QEMU because it only supports MARCH_Z900, which is disabled with clang: https://github.com/groeck/linux-build-test/blob/b8650ca8cdef921992b71db582b9bbdc4efb0ab3/rootfs/s390/run-qemu-s390.sh#L22 https://git.kernel.org/linus/c263a4e990b7296b074e33aa077239a0a28a818e We do not use llvm-objdump for the time being because of ClangBuiltLinux/linux#859. Signed-off-by: Nathan Chancellor <natechancellor@gmail.com>
1 parent 2282db3 commit 931b90a

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

driver.sh

+7
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,13 @@ setup_variables() {
139139
export ARCH=powerpc
140140
export CROSS_COMPILE=powerpc64le-linux-gnu- ;;
141141

142+
"s390")
143+
config=defconfig
144+
image_name=bzImage
145+
using_qemu=false
146+
OBJDUMP=s390x-linux-gnu-objdump
147+
export CROSS_COMPILE=s390x-linux-gnu- ;;
148+
142149
"x86_64")
143150
case ${REPO} in
144151
android-*)

0 commit comments

Comments
 (0)