mirror of
https://github.com/linuxboot/heads.git
synced 2024-12-21 05:53:14 +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
58 lines
1.3 KiB
Makefile
58 lines
1.3 KiB
Makefile
# Configuration for emulating LinuxBoot+Heads with qemu
|
|
#
|
|
export CONFIG_LINUXBOOT=y
|
|
export CONFIG_LINUX_VERSION=4.14.62
|
|
|
|
CONFIG_LINUXBOOT_BOARD=qemu
|
|
CONFIG_LINUX_CONFIG=config/linux-linuxboot.config
|
|
|
|
ifeq "$(CONFIG_UROOT)" "y"
|
|
CONFIG_BUSYBOX=n
|
|
else
|
|
CONFIG_CRYPTSETUP=y
|
|
CONFIG_LVM2=y
|
|
CONFIG_MBEDTLS=y
|
|
CONFIG_PCIUTILS=y
|
|
CONFIG_POPT=y
|
|
CONFIG_QRENCODE=y
|
|
CONFIG_TPMTOTP=y
|
|
endif
|
|
|
|
CONFIG_FLASHROM=y
|
|
CONFIG_FLASHTOOLS=y
|
|
CONFIG_GPG2=y
|
|
CONFIG_KEXEC=y
|
|
CONFIG_UTIL_LINUX=y
|
|
CONFIG_DROPBEAR=y
|
|
#CONFIG_FROTZ=y
|
|
|
|
CONFIG_LINUX_USB=y
|
|
CONFIG_LINUX_E1000=y
|
|
CONFIG_LINUX_SCSI_GDTH=y
|
|
CONFIG_LINUX_ATA=y
|
|
CONFIG_LINUX_AHCI=y
|
|
|
|
export CONFIG_BOOTSCRIPT=/bin/generic-init
|
|
export CONFIG_BOOTSCRIPT_NETWORK=/bin/network-init-recovery
|
|
|
|
export CONFIG_BOOT_REQ_HASH=n
|
|
export CONFIG_BOOT_REQ_ROLLBACK=n
|
|
export CONFIG_BOOT_DEV="/dev/sda1"
|
|
export CONFIG_BOOT_STATIC_IP=10.0.2.15
|
|
|
|
# You can ssh into the qemu instance by running
|
|
# ssh -p 5555 root@localhost
|
|
# The LinuxBoot firmware should set its ip address to 10.0.2.15
|
|
# or run udhcpc to get a qemu address
|
|
|
|
run:
|
|
qemu-system-x86_64 \
|
|
-machine q35,smm=on \
|
|
-global ICH9-LPC.disable_s3=1 \
|
|
-global driver=cfi.pflash01,property=secure,value=on \
|
|
-redir tcp:5555::22 \
|
|
--serial $(or $(SERIAL),/dev/tty) \
|
|
-drive if=pflash,format=raw,unit=0,file=$(board_build)/linuxboot.rom
|
|
stty sane
|
|
|