diff options
author | Marek Vasut <marek.vasut+renesas@mailbox.org> | 2023-03-23 01:22:41 +0100 |
---|---|---|
committer | Angelo Dureghello <angelo@kernel-space.org> | 2023-04-15 21:36:07 +0200 |
commit | a21e112357e3f8e5234ee0b613be2778c60ee03f (patch) | |
tree | f81573f3cd225d32862d297220bfb698f3ab8df7 /.azure-pipelines.yml | |
parent | 94f9401812d0885877d258b39b77ec880d821a84 (diff) | |
download | u-boot-a21e112357e3f8e5234ee0b613be2778c60ee03f.tar.gz u-boot-a21e112357e3f8e5234ee0b613be2778c60ee03f.tar.bz2 u-boot-a21e112357e3f8e5234ee0b613be2778c60ee03f.zip |
CI: Add m68k target
Add M5208EVBE board to CI. This does not use default config due to
limitations of QEMU emulation, instead the timer is switched from
DMA timer to PIT timer and RAMBAR accesses are inhibited.
Local QEMU launch command is as follows:
$ qemu-system-m68k -nographic -machine mcf5208evb -cpu m5208 -bios u-boot.bin
Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
Acked-by: Angelo Dureghello <angelo@kernel-space.org>
Diffstat (limited to '.azure-pipelines.yml')
-rw-r--r-- | .azure-pipelines.yml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml index 642a16f304..76ffdeebd6 100644 --- a/.azure-pipelines.yml +++ b/.azure-pipelines.yml @@ -297,6 +297,11 @@ stages: qemu_arm64: TEST_PY_BD: "qemu_arm64" TEST_PY_TEST_SPEC: "not sleep" + qemu_m68k: + TEST_PY_BD: "M5208EVBE" + TEST_PY_ID: "--id qemu" + TEST_PY_TEST_SPEC: "not sleep and not efi" + OVERRIDE: "-a CONFIG_M68K_QEMU=y -a ~CONFIG_MCFTMR" qemu_malta: TEST_PY_BD: "malta" TEST_PY_ID: "--id qemu" |