mirror of
https://github.com/linuxboot/heads.git
synced 2024-12-19 04:57:55 +00:00
f23ced0a3b
* modules/linux: Add support for multiple kernel versions Follow same pattern as used for coreboot. Add existing kernel version as default for all existing boards. Signed-off-by: Matt DeVillier <matt.devillier@puri.sm> * modules/linux: Add option to use 4.19 LTS kernel Add option to use kernel 4.19.139 (current LTS version). Duplicate existing patches from 4.14.62 as they all apply cleanly. Signed-off-by: Matt DeVillier <matt.devillier@puri.sm>
27 lines
871 B
Plaintext
27 lines
871 B
Plaintext
# Minimal configuration for a t430 to support flashrom, USB and networking
|
|
BOARD=t430.flash
|
|
|
|
export CONFIG_COREBOOT=y
|
|
export CONFIG_COREBOOT_VERSION=4.8.1
|
|
export CONFIG_LINUX_VERSION=4.14.62
|
|
|
|
CONFIG_FLASHROM=y
|
|
CONFIG_FLASHTOOLS=y
|
|
CONFIG_PCIUTILS=y
|
|
|
|
CONFIG_LINUX_CONFIG=config/linux-x230-flash.config
|
|
CONFIG_LINUX_USB=y
|
|
CONFIG_LINUX_E1000E=y
|
|
|
|
export CONFIG_BOOTSCRIPT=/bin/t430-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 $@
|