mirror of
https://github.com/linuxboot/heads.git
synced 2024-12-19 04:57:55 +00:00
f8cb3db775
Non-impactful action, first step for #1421 based on participation in testing of #1398 and prior non-tested PRs. EDIT: last minute readd of x220-maximized boards (x220-maximized and x220-hotp-maximized boards). x220 is still UNTESTED (legacy, manually extracting ifs, me and gbe). EDIT: last minute readd of t440p-maximized boards (t440p-maximized and t440p-hotp-maximized boards). Thanks to @srgrint for lat minute report that t440p and x220 were tested ---- Traces of commands used: ls qemu-linuxboot* leopard* r630* s2600wf* tioga* winterfell* t420* t520* t440p* w530* kgpe* p8z77* x220* x230-maximized-fhd_edp* | grep ":" | awk -F ":" {'print $1'}| while read board; do mv $board/$board.config $board/UNTESTED_$board.config; done ls qemu-linuxboot* leopard* r630* s2600wf* tioga* winterfell* t420* t520* t440p* w530* kgpe* p8z77* x220* x230-maximized-fhd_edp* | grep ":" | awk -F ":" {'print $1'}| while read dir; do mv $dir UNTESTED_$dir; done ls UNTESTED* | grep ":" | awk -F ":" {'print $1'}| awk -F "UNTESTED_" {'print $2'} | while read line; do sed 's/'"$line"'/UNTESTED_'"$line"'/g' ../.circleci/config.yml -i ; done quick fix of circleci: sed -i 's/UNTESTED_UNTESTED/UNTESTED/g' ../.circleci/config.yml sed -i 's/UNTESTED_UNTESTED/UNTESTED/g' ../.circleci/config.yml sed -i 's/UNTESTED_UNTESTED/UNTESTED/g' ../.circleci/config.yml Modify p8z77-m_pro-tpm1 hotp board config to include to their maximized counterpart
62 lines
1.4 KiB
Makefile
62 lines
1.4 KiB
Makefile
# Configuration for a Winterfell OCP node
|
|
# and it uses LinuxBoot, not coreboot.
|
|
CONFIG_LINUXBOOT=y
|
|
CONFIG_LINUXBOOT_ROM=blobs/winterfell.rom
|
|
CONFIG_LINUX_CONFIG=config/linux-linuxboot.config
|
|
|
|
export CONFIG_LINUX_VERSION=4.14.62
|
|
|
|
# If you want to build with the go-based u-root instead of Heads
|
|
CONFIG_UROOT ?= y
|
|
|
|
ifeq "$(CONFIG_UROOT)" "y"
|
|
# The busybox will likely be redundant and can be trimmed for space.
|
|
CONFIG_BUSYBOX=n
|
|
CONFIG_ZLIB=n
|
|
CONFIG_MUSL=n
|
|
else
|
|
# These don't fit if u-root is turned on
|
|
#CONFIG_CRYPTSETUP=y
|
|
#CONFIG_FLASHROM=y
|
|
CONFIG_FLASHTOOLS=y
|
|
CONFIG_GPG=y
|
|
CONFIG_KEXEC=y
|
|
CONFIG_UTIL_LINUX=y
|
|
#CONFIG_LVM2=y
|
|
#CONFIG_MBEDTLS=y
|
|
CONFIG_PCIUTILS=y
|
|
CONFIG_POPT=y
|
|
#CONFIG_QRENCODE=y
|
|
#CONFIG_TPMTOTP=y
|
|
CONFIG_DROPBEAR=y
|
|
endif
|
|
|
|
# Linux modules will still be linked into the u-root tree
|
|
CONFIG_LINUX_USB=y
|
|
CONFIG_LINUX_MLX4=y
|
|
CONFIG_LINUX_ATA=y
|
|
CONFIG_LINUX_AHCI=y
|
|
CONFIG_LINUX_E1000E=y
|
|
CONFIG_LINUX_NVME=y
|
|
|
|
export CONFIG_BOOTSCRIPT=/bin/generic-init
|
|
export CONFIG_TPM=n
|
|
export CONFIG_BOOT_REQ_HASH=n
|
|
export CONFIG_BOOT_REQ_ROLLBACK=n
|
|
export CONFIG_BOOT_DEV="/dev/sda1"
|
|
|
|
#$(board_build)/linuxboot.rom: $(build)/$(linuxboot_dir)/
|
|
|
|
# No 0x on these since the flasher doesn't handle that
|
|
dxe_offset := 860000
|
|
dxe_size := 6a0000
|
|
flash-dxe: $(board_build)/linuxboot.rom
|
|
( echo u$(dxe_offset) $(dxe_size) ; \
|
|
pv $(build)/linuxboot-git/build/$(BOARD)/dxe.vol \
|
|
) > /dev/ttyACM0
|
|
|
|
flash: $(board_build)/linuxboot.rom
|
|
( echo u0 1000000 ; \
|
|
pv $< \
|
|
) > /dev/ttyACM0
|