mirror of
https://github.com/linuxboot/heads.git
synced 2024-12-20 05:28:08 +00:00
c8e114166c
The 8 qemu-* targets all contained nearly-identical copies of the targets to prepare the TPM/disk/etc. and then run Qemu. The only significant differences were for TPM1/TPM2 (extra swtpm_setup step, addition of --tpm2 to swtpm_setup and swtpm). ROOT_DISK_IMG used := or = differently in some boards, := was kept. targets/qemu.mk now defines all Qemu targets and is included only for qemu-* boards (by defining BOARD_TARGETS in each of those boards). The documentation was moved from qemu-coreboot-fbwhiptail-tpm1-hotp/ qemu-coreboot-fbwhiptail-tpm1-htop.md to targets/qemu.md. The other 7 qemu boards' symlinks to that file were removed. Signed-off-by: Jonathon Hall <jonathon.hall@puri.sm>
74 lines
1.9 KiB
Makefile
74 lines
1.9 KiB
Makefile
# 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). A Librem Key or
|
|
# Nitrokey Pro can also be used by forwarding the USB device from the host to
|
|
# the VM.
|
|
export CONFIG_COREBOOT=y
|
|
export CONFIG_COREBOOT_VERSION=4.19
|
|
export CONFIG_LINUX_VERSION=5.10.5
|
|
|
|
#Enable only one RESTRICTED/BASIC boot modes below to test them manually (we cannot inject config under QEMU (no internal flashing)
|
|
#export CONFIG_RESTRICTED_BOOT=y
|
|
#export CONFIG_BASIC=y
|
|
|
|
#Enable DEBUG output
|
|
export CONFIG_DEBUG_OUTPUT=y
|
|
export CONFIG_ENABLE_FUNCTION_TRACING_OUTPUT=y
|
|
|
|
CONFIG_COREBOOT_CONFIG=config/coreboot-qemu-tpm1.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
|
|
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
|
|
export CONFIG_BOOT_RECOVERY_SERIAL="/dev/ttyS0"
|
|
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"
|
|
export CONFIG_BOARD_NAME="qemu-coreboot-whiptail-tpm1-hotp"
|
|
|
|
BOARD_TARGETS := qemu
|