Skip to content

Commit 7e066e6

Browse files
committed
Rename coreboot.rom to firmware.rom
1 parent 3eefdb9 commit 7e066e6

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

scripts/flash.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ then
3030
fi
3131

3232
cargo build --release --manifest-path libs/intel-spi/Cargo.toml
33-
sudo libs/intel-spi/target/release/intel-spi "build/${MODEL}/coreboot.rom"
33+
sudo libs/intel-spi/target/release/intel-spi "build/${MODEL}/firmware.rom"
3434

3535
if [ "$WITH_EC" = true ]
3636
then

scripts/qemu.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ fi
1818
MODEL_DIR="$(realpath "models/${MODEL}")"
1919

2020
kvm -M q35 -m 4096 -vga std \
21-
-bios "build/${MODEL}/coreboot.rom" \
21+
-bios "build/${MODEL}/firmware.rom" \
2222
-chardev stdio,mux=on,id=debug \
2323
-device isa-serial,index=2,chardev=debug \
2424
-device isa-debugcon,iobase=0x402,chardev=debug \
@@ -35,4 +35,3 @@ kvm -M q35 -m 4096 -vga std \
3535
# PCIe hotplugging (https://github.com/qemu/qemu/blob/master/docs/pcie_pci_bridge.txt):
3636
# Root port: -device pcie-root-port,bus=pcie.0,id=rp1
3737
# PCIe bridge: -device pcie-pci-bridge,id=br1,bus=rp1
38-

scripts/spipi-flash.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ source scripts/_spipi.sh
1313

1414
sftp "${SPIPI}" <<EOF
1515
cd firmware
16-
put "build/${MODEL}/coreboot.rom" "${MODEL}.rom"
16+
put "build/${MODEL}/firmware.rom" "${MODEL}.rom"
1717
EOF
1818

1919
ssh -T "${SPIPI}" <<EOF

0 commit comments

Comments
 (0)