diff options
| author | Heinrich Schuchardt <[email protected]> | 2024-11-27 08:06:28 +0100 |
|---|---|---|
| committer | Heinrich Schuchardt <[email protected]> | 2025-01-05 02:30:48 +0100 |
| commit | 37e0cf42cb619f61d47b504406842b0134bb02a9 (patch) | |
| tree | 6fff366cc2e1c29b60e0010ad5077e8c69df6ff9 | |
| parent | 9cb53b5ffd9afba3e46ab2b8387727897da267af (diff) | |
CI: xilinx_versal_virt: disable USB_DWC3
The CI uses the following command to launch xilinx_versal_virt_defconfig:
qemu-system-aarch64 -M xlnx-versal-virt \
-display none -m 4G -serial mon:stdio \
-device loader,file=u-boot,cpu-num=0
'usb start' or invoking eth_bootdev_hunt leads to a crash when function
dwc3_core_init() tries to access a register at offset 0xc704 (DWC3_DCTL)
relative to the register start address 0xfe20c100.
Disable CONFIG_USB_DWC3 in the CI until the driver problem is fixed.
Signed-off-by: Heinrich Schuchardt <[email protected]>
| -rw-r--r-- | .azure-pipelines.yml | 1 | ||||
| -rw-r--r-- | .gitlab-ci.yml | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml index df3f82074af..ba351b9802d 100644 --- a/.azure-pipelines.yml +++ b/.azure-pipelines.yml @@ -509,6 +509,7 @@ stages: TEST_PY_BD: "xilinx_versal_virt" TEST_PY_ID: "--id qemu" TEST_PY_TEST_SPEC: "not sleep" + OVERRIDE: "-a ~CONFIG_USB_DWC3" xtfpga: TEST_PY_BD: "xtfpga" TEST_PY_ID: "--id qemu" diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f5d38eaa7ac..d91e9e3ff43 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -491,6 +491,7 @@ xilinx_versal_virt test.py: TEST_PY_BD: "xilinx_versal_virt" TEST_PY_TEST_SPEC: "not sleep" TEST_PY_ID: "--id qemu" + OVERRIDE: "-a ~CONFIG_USB_DWC3" <<: *buildman_and_testpy_dfn xtfpga test.py: |
