Re: coreboot on ASRock H110M-DVS rev 3.0 and rev 2.0 and me_cleaner
Posted: Sun Aug 24, 2025 10:01 am
Good news @james2 that you confirmed a working backup rom to start with.
You have 2 options to include the coreboot from my build which probably included a broken ifd/me region since it was based on the original rom.
ONE
If you have a working OEM bios booting right now, you may flash externally only the BIOS region.
My guess is although that a external programmer cannot use the --ifd option, therefor use the -l layout option but first extract a good layout?
or TWO
Extract the coreboot region from my latest rom and include it with ifdtool in your current OEM good whole rom and flash the whole new rom?
When using a broken ifd by not using the -p sklkbl quirks can lead to system powering on and doing nothing symptom...
You have 2 options to include the coreboot from my build which probably included a broken ifd/me region since it was based on the original rom.
ONE
If you have a working OEM bios booting right now, you may flash externally only the BIOS region.
Code: Select all
sudo flashrom -p someprogrammer -r wholegoodoem.rom #create a good backup
ifdtool -f layout.txt wholegoodoem.rom #don't use the corebootrom use your good oem backup to create a layout file
#sudo flashrom -p someprogrammer --ifd -i bios -w mylatestcoreboot.rom #probably won't work when external flashing?
sudo flashrom -p someprogrammer -l layout.txt -i bios mylatestcoreboot.rom #whole 8MB image, flashrom will pull the correct region!
or TWO
Code: Select all
sudo flashrom -p someprogrammer -r wholegoodoem.rom
ifdtool -x mylatestcoreboot.rom #flashregion_1_bios.bin contains bios(coreboot)
ifdtool -i BIOS:flashregion_1_bios.bin wholegoodoem.rom -p sklkbl
sudo flashrom -p someprogrammer -w wholegoodoem.rom.new
When using a broken ifd by not using the -p sklkbl quirks can lead to system powering on and doing nothing symptom...