mirror of
https://github.com/linuxboot/heads.git
synced 2024-12-21 05:53:14 +00:00
41847f5cd2
- xx30 legacy boards (x230, x230-flash, t430, t430-flash) now rely also on coreboot 4.13 - DOWNSIDE: x230 and t430 legacy boards now rely on WHIPTAIL (NOT FBWhiptail) to have enough space to fit under 7mb) - xx20 boards moved to 4.13 (no need of xx20-flash boards here since single SPI boards with 7.5mb useable since blobs scripts are required) - DOWNSIDE: all xx20 boards now have dropbear deactivated, while still having ethernet driver in. - qemu-coreboot and qemu-coreboot-fbwhiptail switched to coreboot 4.13 WITHOUT TPM SUPPORT (with cryptsetup 2.x support) - DOWNSIDE: - coreboot-qemu board CBFS_SIZE=0x700000 -> 0x750000 - coreboot-qemu-fbwhiptail CBFS_SIZE=0x750000 -> 0x780000 - CircleCi build recipe removes 4.8.1 boards altogether - KGPE-D16 workstation is used as new base build to save workspace layer (we removed one workspace layer) - Removing one workspace layer will save approx 2 hours of build time on fresh builds - Removing one coreboot version will save us approx 2 hours of build time on fresh builds - KGPE-D16 will stay to coreboot 4.11 until forward notice. - All other board configs SHOULD be built on latest coreboot versions
68 lines
1.5 KiB
Plaintext
68 lines
1.5 KiB
Plaintext
# Configuration for building a coreboot ROM that works in
|
|
# the qemu emulator in GUI mode thanks to FBWhiptail
|
|
#
|
|
# Note that the TPM does not work.
|
|
export CONFIG_COREBOOT=y
|
|
export CONFIG_COREBOOT_VERSION=4.13
|
|
export CONFIG_LINUX_VERSION=4.14.62
|
|
|
|
CONFIG_COREBOOT_CONFIG=config/coreboot-qemu-fbwhiptail.config
|
|
CONFIG_LINUX_CONFIG=config/linux-qemu.config
|
|
|
|
ifeq "$(CONFIG_UROOT)" "y"
|
|
CONFIG_BUSYBOX=n
|
|
else
|
|
CONFIG_KEXEC=y
|
|
CONFIG_QRENCODE=y
|
|
CONFIG_TPMTOTP=y
|
|
CONFIG_POPT=y
|
|
CONFIG_FLASHTOOLS=y
|
|
CONFIG_FLASHROM=y
|
|
CONFIG_PCIUTILS=y
|
|
CONFIG_UTIL_LINUX=y
|
|
CONFIG_CRYPTSETUP2=y
|
|
CONFIG_GPG2=y
|
|
CONFIG_LVM2=y
|
|
CONFIG_MBEDTLS=y
|
|
CONFIG_DROPBEAR=y
|
|
CONFIG_MSRTOOLS=y
|
|
|
|
#Uncomment only one of the following block
|
|
#Required for graphical gui-init (FBWhiptail)
|
|
CONFIG_CAIRO=y
|
|
CONFIG_FBWHIPTAIL=y
|
|
#
|
|
#text-based init (generic-init and gui-init)
|
|
#CONFIG_NEWT=y
|
|
#CONFIG_SLANG=y
|
|
|
|
endif
|
|
|
|
CONFIG_LINUX_ATA=y
|
|
CONFIG_LINUX_AHCI=y
|
|
CONFIG_LINUX_USB=y
|
|
CONFIG_LINUX_E1000=y
|
|
|
|
#Uncomment only one BOOTSCRIPT:
|
|
#Whiptail-based init (text-based or FBWhiptail)
|
|
export CONFIG_BOOTSCRIPT=/bin/gui-init
|
|
#
|
|
#text-based original init:
|
|
#export CONFIG_BOOTSCRIPT=/bin/generic-init
|
|
|
|
export CONFIG_TPM=n
|
|
|
|
export CONFIG_BOOT_DEV="/dev/sda1"
|
|
export CONFIG_BOARD_NAME="qemu-coreboot-fbwhiptail"
|
|
|
|
#borrowed from https://github.com/orangecms/webboot/blob/boot-via-qemu/run-webboot.sh
|
|
run:
|
|
qemu-system-x86_64 \
|
|
--machine q35 \
|
|
--bios $(build)/$(BOARD)/$(CB_OUTPUT_FILE) \
|
|
-object rng-random,filename=/dev/urandom,id=rng0 \
|
|
-device virtio-rng-pci,rng=rng0 \
|
|
-netdev user,id=u1 -device e1000,netdev=u1 \
|
|
-serial stdio \
|
|
; stty sane
|