2022-08-23 20:32:51 +00:00
|
|
|
# Configuration for building a coreboot ROM that works in
|
|
|
|
# the qemu emulator in console mode thanks to Whiptail
|
|
|
|
#
|
|
|
|
# TPM can be used with a qemu software TPM (TIS, 1.2).
|
|
|
|
export CONFIG_COREBOOT=y
|
2024-02-05 16:06:11 +00:00
|
|
|
export CONFIG_COREBOOT_VERSION=4.22.01
|
2022-08-23 20:32:51 +00:00
|
|
|
export CONFIG_LINUX_VERSION=5.10.5
|
|
|
|
|
2023-10-18 17:15:48 +00:00
|
|
|
#Enable only one RESTRICTED/BASIC boot modes below to test them manually (we cannot inject config under QEMU (no internal flashing))
|
2023-07-12 18:17:43 +00:00
|
|
|
#export CONFIG_RESTRICTED_BOOT=y
|
2023-07-17 16:31:25 +00:00
|
|
|
#export CONFIG_BASIC=y
|
2023-07-12 18:17:43 +00:00
|
|
|
|
2023-10-18 17:15:48 +00:00
|
|
|
#Enable HAVE_GPG_KEY_BACKUP to test GPG key backup drive (we cannot inject config under QEMU (no internal flashing))
|
2023-10-25 21:01:01 +00:00
|
|
|
#export CONFIG_HAVE_GPG_KEY_BACKUP=y
|
2023-10-18 17:15:48 +00:00
|
|
|
|
2023-02-18 17:58:43 +00:00
|
|
|
#Enable DEBUG output
|
2023-10-24 15:19:49 +00:00
|
|
|
export CONFIG_DEBUG_OUTPUT=y
|
|
|
|
export CONFIG_ENABLE_FUNCTION_TRACING_OUTPUT=y
|
2023-02-18 17:58:43 +00:00
|
|
|
|
2023-01-11 18:52:50 +00:00
|
|
|
CONFIG_COREBOOT_CONFIG=config/coreboot-qemu-tpm1.config
|
2022-08-23 20:32:51 +00:00
|
|
|
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
|
|
|
|
#CONFIG_HOTPKEY=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
|
|
|
|
|
|
|
|
export CONFIG_LINUX_USB_COMPANION_CONTROLLER=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_BOOT_REQ_HASH=n
|
|
|
|
export CONFIG_BOOT_REQ_ROLLBACK=n
|
2022-11-11 20:19:37 +00:00
|
|
|
export CONFIG_BOOT_RECOVERY_SERIAL="/dev/ttyS0"
|
2022-08-23 20:32:51 +00:00
|
|
|
export CONFIG_BOOT_KERNEL_ADD="console=ttyS0 console=tty systemd.zram=0"
|
|
|
|
export CONFIG_BOOT_KERNEL_REMOVE="quiet rhgb splash"
|
|
|
|
|
|
|
|
export CONFIG_TPM=y
|
|
|
|
|
|
|
|
export CONFIG_BOOT_DEV="/dev/vda1"
|
2023-01-05 00:01:42 +00:00
|
|
|
export CONFIG_BOARD_NAME="qemu-coreboot-whiptail-tpm1"
|
2022-08-23 20:32:51 +00:00
|
|
|
|
2023-12-18 20:24:21 +00:00
|
|
|
BOARD_TARGETS := qemu
|