mirror of
https://github.com/linuxboot/heads.git
synced 2024-12-19 13:07:58 +00:00
b29447ef8f
- Update flashrom module to v1.2. - Drop Thinkpad x220 patch as it's now properly supported. - Drop 'laptop=force_I_want_a_brick' from board FLASHROM_OPTIONS since it's no longer needed. - Migrate kgpe-d16 patch. The kgpe-d16 patch needed a complete overhaul when rebased against flashrom v1.2, and needs close inspection/testing as a result. The following changes were made from the previous patch: - dropped addition of 4-byte addressing (4BA), since now supported - dropped addtiion of Macronix MX25L256 and MX66L512 chips, since now supported - added 4BA erase commands for Winbond W25Q256 chip - dropped code to show progress indicator, since another PR already adds that Signed-off-by: Matt DeVillier <matt.devillier@puri.sm>
29 lines
885 B
Plaintext
29 lines
885 B
Plaintext
# Minimal configuration for a x230 to support flashrom, USB and networking
|
|
BOARD=x230.flash
|
|
|
|
export CONFIG_COREBOOT=y
|
|
CONFIG_FLASHROM=y
|
|
#CONFIG_GPG=y
|
|
CONFIG_FLASHTOOLS=y
|
|
CONFIG_PCIUTILS=y
|
|
#CONFIG_MBEDTLS=y
|
|
#CONFIG_QRENCODE=y
|
|
#CONFIG_TPMTOTP=y
|
|
#CONFIG_DROPBEAR=y
|
|
|
|
CONFIG_LINUX_CONFIG=config/linux-x230-flash.config
|
|
CONFIG_LINUX_USB=y
|
|
CONFIG_LINUX_E1000E=y
|
|
|
|
export CONFIG_BOOTSCRIPT=/bin/x230-flash.init
|
|
export CONFIG_FLASHROM_OPTIONS="--force --noverify-all -p internal --ifd --image bios"
|
|
|
|
# This board is "special" in that we only want the top 4 MB of the ROM
|
|
# for flashing into SPI flash 1 on the mainboard. This is enough to
|
|
# allow the board to boot into a minimal Heads and read the full
|
|
# ROM from an external USB media.
|
|
all: $(build)/$(BOARD)/$(BOARD).rom
|
|
$(build)/$(BOARD)/$(BOARD).rom: $(build)/$(BOARD)/coreboot.rom
|
|
dd of=$@ if=$< bs=65536 count=64 skip=128
|
|
sha256sum $@
|