mirror of
https://github.com/linuxboot/linuxboot
synced 2024-11-22 17:01:28 +00:00
8589370708
Reduce the size of flashrom by commenting out most flash chips, boards and programmers. Wrapper script to make it easier to rewrite the ROM on the x230 using the flashrom layout. Keep the entire 12 MB ROM for flashing.
10 lines
130 B
Bash
Executable File
10 lines
130 B
Bash
Executable File
#!/bin/sh
|
|
|
|
flashrom \
|
|
--force \
|
|
--noverify \
|
|
--programmer internal \
|
|
--layout /etc/x230-layout.txt \
|
|
--image BIOS \
|
|
-w "$*"
|