Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

kunit: qemu_configs: Add 32-bit big endian ARM configuration

Add a basic config to run kunit tests on 32-bit big endian ARM.

Link: https://lore.kernel.org/r/20260102-kunit-armeb-v1-1-e8e5475d735c@linutronix.de
Signed-off-by: Thomas Weißschuh <thomas.weissschuh@linutronix.de>
Reviewed-by: David Gow <davidgow@google.com>
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>

authored by

Thomas Weißschuh and committed by
Shuah Khan
ab150c2b 85aff81b

+16
+16
tools/testing/kunit/qemu_configs/armeb.py
··· 1 + # SPDX-License-Identifier: GPL-2.0 2 + 3 + from ..qemu_config import QemuArchParams 4 + 5 + QEMU_ARCH = QemuArchParams(linux_arch='arm', 6 + kconfig=''' 7 + CONFIG_CPU_BIG_ENDIAN=y 8 + CONFIG_ARCH_VIRT=y 9 + CONFIG_SERIAL_AMBA_PL010=y 10 + CONFIG_SERIAL_AMBA_PL010_CONSOLE=y 11 + CONFIG_SERIAL_AMBA_PL011=y 12 + CONFIG_SERIAL_AMBA_PL011_CONSOLE=y''', 13 + qemu_arch='arm', 14 + kernel_path='arch/arm/boot/zImage', 15 + kernel_command_line='console=ttyAMA0', 16 + extra_qemu_params=['-machine', 'virt'])