Sorry for the delayed response. I'm unable to share BIOS image in public due to the NDA (the BIOS is still under development). So, I tried to find an image that would give me the same error, and I found one! Again, that's how I encoun...Alexander Goncharov
Tried to test with this patch (https://review.coreboot.org/c/flashrom/+/77747). Unfortunately, it still gives an error. NOTE: There's only `0x1` failcount instead of `0x2` ``` flashrom 1.4.0-devel (git:v1.2-1352-g0e529eb) on Linux...Alexander Goncharov
I tried to flash the W25Q128.V chip with BIOS and encountered the next issue. I ran the following commands: ``` $ cp ~/bios/img/flash.img ~/bios/img/flash.tr.img $ truncate -s 16M "~/bios/img/flash.tr.img" $ echo "00000:2d637e b...Alexander Goncharov
As I understand it's related to `tests/meson.build` file. I used meson 0.53.0 and 1.0.0 to reproduce this warning message, but meson doesn't print anything. Did you use source code from `master` branch? Meson release notes 0.57.0: htt...Alexander Goncharov
I found this bug when I just went through the code. `strcat_realloc()` can return NULL, but we don't handle this case. So, the bug will appear only when the PC has no available memory (out of memory). Edward, your implementation is in...Alexander Goncharov