Show pageBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ===== Flash DualBIOS ===== This simple script can be used on Gigabyte boards with two flash chips. It flashes coreboot to the main SPI chip and erases the backup SPI chip. <code bash> #!/bin/sh flashrom -p internal:dualbiosindex=1 -E flashrom -p internal:dualbiosindex=0 -w $1 </code> ----