diff options
| author | Christian Krinitsin <mail@krinitsin.com> | 2025-06-01 21:35:14 +0200 |
|---|---|---|
| committer | Christian Krinitsin <mail@krinitsin.com> | 2025-06-01 21:35:14 +0200 |
| commit | 3e4c5a6261770bced301b5e74233e7866166ea5b (patch) | |
| tree | 9379fddaba693ef8a045da06efee8529baa5f6f4 /gitlab/issues_text/target_missing/host_missing/accel_missing/2945 | |
| parent | e5634e2806195bee44407853c4bf8776f7abfa4f (diff) | |
| download | qemu-analysis-3e4c5a6261770bced301b5e74233e7866166ea5b.tar.gz qemu-analysis-3e4c5a6261770bced301b5e74233e7866166ea5b.zip | |
clean up repository
Diffstat (limited to 'gitlab/issues_text/target_missing/host_missing/accel_missing/2945')
| -rw-r--r-- | gitlab/issues_text/target_missing/host_missing/accel_missing/2945 | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/gitlab/issues_text/target_missing/host_missing/accel_missing/2945 b/gitlab/issues_text/target_missing/host_missing/accel_missing/2945 deleted file mode 100644 index a29740c31..000000000 --- a/gitlab/issues_text/target_missing/host_missing/accel_missing/2945 +++ /dev/null @@ -1,29 +0,0 @@ -Commit da954d0e introduces a regression on sifive_unleashed when booting from SD card -Description of problem: -In U-Boot CI, we started to update from v8.2.0 to v9.2.3 and found that the sifive_unleashed target was failing to boot from SD card in our tests (we also test via SPI and this is fine). I have bisected the problem down to commit [da954d0e ("hw/sd/sdcard: Add spi_cmd_SEND_CSD/CID handlers (CMD9 & CMD10)")](https://gitlab.com/qemu-project/qemu/-/commit/da954d0e32444f122a41c24948d4d1c718bf66d4). - -When running QEMU we see the following output in the failure case as the only output: -``` -U-Boot SPL 2025.07-rc1-00033-gad60d9792896 (May 01 2025 - 17:08:34 +0000) -Trying to boot from MMC1 -spl: mmc init failed with error: -110 -Error: -110 -SPL: failed to boot from all boot devices -# -Steps to reproduce: -1. wget -O - https://github.com/pengutronix/genimage/releases/download/v14/genimage-14.tar.xz | tar -C /tmp -xJ ; cd /tmp/genimage-14 -2. ./configure && make -j$(nproc) -3. git clone https://source.denx.de/u-boot/u-boot.git; cd u-boot -4. wget -O - https://github.com/riscv-software-src/opensbi/releases/download/v1.3.1/opensbi-1.3.1-rv-bin.tar.xz | tar -C /tmp -xJ -5. export OPENSBI=/tmp/opensbi-1.3.1-rv-bin/share/opensbi/lp64/generic/firmware/fw_dynamic.bin -6. make O=/tmp/sifive_unleashed CROSS_COMPILE=riscv64-linux- sifive_unleashed_defconfig -7. make O=/tmp/sifive_unleashed CROSS_COMPILE=riscv64-linux- -sj$(nproc) -8. mkdir -p root -9. cp /tmp/sifive_unleashed/spl/u-boot-spl.bin . -10. cp /tmp/sifive_unleashed/u-boot.itb . -11. rm -rf tmp -12. genimage --inputpath . --config board/sifive/unleashed/genimage_sdcard.cfg -13. cp images/sdcard.img /tmp/sifive_unleashed/ -14. qemu-system-riscv64 -smp 5 -m 8G -nographic -M sifive_u,msel=11 -bios /tmp/sifive_unleashed/spl/u-boot-spl.bin -drive file=/tmp/sifive_unleashed/sdcard.img,format=raw,if=sd -Additional information: -The genimage tool is required for making the disk images used here. If building everything here is too much, I can provide the U-Boot binaries needed here out of band. |