mirror of
https://github.com/linuxboot/heads.git
synced 2025-02-11 21:25:17 +00:00
To be able to boot a disk image, passed to QEMU with `-hda /path/qemu.img`, the appropriate modules are needed. Strange, `libata` is not enough, and the drive is only detected, when the module `ahci` is loaded. > ata1.00: ATA-7: QEMU HARDDISK, 2.5+, max UDMA/100 Tested with QEMU emulator version 2.11.1(Debian 1:2.11+dfsg-1ubuntu7) with the command below, qemu-system-x86_64 -enable-kvm -M q35 -m 1G -bios \ qemu-coreboot/coreboot.rom -serial stdio -L /dev/shm -hda \ /dev/shm/qemu-debian.img where `qemu-debian.img` is created with grml-debootstrap. grml-debootstrap --vmfile --vmsize 3G --target \ /dev/shm/qemu-debian.img -r sid
43 lines
891 B
Plaintext
43 lines
891 B
Plaintext
# Configuration for building a coreboot ROM that works in the.
|
|
# the qemu emulator. Note that the TPM does not work, so this
|
|
# will just drop into the recovery shell.
|
|
export CONFIG_COREBOOT=y
|
|
CONFIG_COREBOOT_CONFIG=config/coreboot-qemu.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_CRYPTSETUP=y
|
|
CONFIG_GPG=y
|
|
CONFIG_LVM2=y
|
|
CONFIG_MBEDTLS=y
|
|
CONFIG_DROPBEAR=y
|
|
CONFIG_NEWT=y
|
|
CONFIG_SLANG=y
|
|
endif
|
|
|
|
CONFIG_LINUX_ATA=y
|
|
CONFIG_LINUX_AHCI=y
|
|
CONFIG_LINUX_USB=y
|
|
CONFIG_LINUX_E1000=y
|
|
|
|
export CONFIG_BOOTSCRIPT=/bin/generic-init
|
|
export CONFIG_TPM=n
|
|
|
|
#run: coreboot.intermediate
|
|
run:
|
|
qemu-system-x86_64 \
|
|
--machine q35 \
|
|
--serial /dev/tty \
|
|
--bios $(build)/$(BOARD)/coreboot.rom \
|
|
; stty sane
|