summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKent Overstreet <kent.overstreet@linux.dev>2022-08-25 20:18:35 -0400
committerKent Overstreet <kent.overstreet@linux.dev>2022-08-25 20:18:35 -0400
commit78394a5d767339fa3067d422432bb0759082d809 (patch)
tree443937afb2454d0fe09b53d226b704d8c9ccb5ae
parentf009a6b0eceff84125a3e274dc2c6c2394ea7c0d (diff)
fixup! Add arm support
-rw-r--r--lib/common.sh4
-rw-r--r--tests/kconfig.sh2
2 files changed, 2 insertions, 4 deletions
diff --git a/lib/common.sh b/lib/common.sh
index a43a816..05208da 100644
--- a/lib/common.sh
+++ b/lib/common.sh
@@ -105,10 +105,10 @@ parse_arch()
QEMU_PACKAGE=qemu-system-x86
QEMU_BIN=qemu-system-x86_64
;;
- aarch64)
+ aarch64|arm64)
ktest_arch=aarch64
DEBIAN_ARCH=arm64
- ARCH_TRIPLE=
+ ARCH_TRIPLE=aarch64-linux-gnu
KERNEL_ARCH=arm64
BITS=64
diff --git a/tests/kconfig.sh b/tests/kconfig.sh
index 890f691..0fffb61 100644
--- a/tests/kconfig.sh
+++ b/tests/kconfig.sh
@@ -39,8 +39,6 @@ case $ktest_arch in
require-kernel-append console=hvc0
;;
aarch64)
- require-kernel-config CONFIG_SERIAL_AMBA_PL011
- require-kernel-config CONFIG_SERIAL_AMBA_PL011_CONSOLE
require-kernel-config PCI_HOST_GENERIC
have_virtio=1