diff options
author | Tom Rini <trini@konsulko.com> | 2024-07-04 16:11:08 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-07-04 16:11:08 -0600 |
commit | 7c9c5c0562347dccb8ac89148784a34de402ea9e (patch) | |
tree | 5fdbb111881c14649932cf9e58dbbec6cb9b8e1a /.gitlab-ci.yml | |
parent | 26c56f1c58f6cdbbfb3428526136749ff8372c53 (diff) | |
parent | 51aabf50e57f5139de31a4850347edbad8bb338b (diff) | |
download | u-boot-7c9c5c0562347dccb8ac89148784a34de402ea9e.tar.gz u-boot-7c9c5c0562347dccb8ac89148784a34de402ea9e.tar.bz2 u-boot-7c9c5c0562347dccb8ac89148784a34de402ea9e.zip |
Merge patch series "xtensa: Enable qemu-xtensa board"
Jiaxun Yang <jiaxun.yang@flygoat.com> says:
Hi all,
This series enabled qemu-xtensa board.
For dc232b CPU it needs to be built with toolchain[1].
This is a side product of me investigating architectures
physical address != virtual address in U-Boot. Now we can
get it covered under CI and regular tests.
VirtIO devices are not working as expected, due to U-Boot's
assumption on VA == PA everywhere, I'm going to get this fixed
later.
My Xtensa knowledge is pretty limited, Xtensa people please
feel free to point out if I got anything wrong.
Thanks
[1]: https://github.com/foss-xtensa/toolchain/releases/download/2020.07/x86_64-2020.07-xtensa-dc232b-elf.tar.gz
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a6c5040239..0a15b7352c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -422,6 +422,12 @@ qemu-x86_64 test.py: TEST_PY_TEST_SPEC: "not sleep" <<: *buildman_and_testpy_dfn +qemu-xtensa-dc233c test.py: + variables: + TEST_PY_BD: "qemu-xtensa-dc233c" + TEST_PY_TEST_SPEC: "not sleep and not efi" + <<: *buildman_and_testpy_dfn + r2dplus_i82557c test.py: variables: TEST_PY_BD: "r2dplus" |