mirror of
https://github.com/linuxboot/heads.git
synced 2025-02-21 09:31:51 +00:00
Guarded linuxboot specific init entries Removed Makefile entries into separate file (conflicts with srcing /etc/config) Added CONFIG_BOOT_LOCAL/_REMOTE to control interface setup Fixed CONFIG_TPM usage
16 lines
494 B
Makefile
16 lines
494 B
Makefile
# 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: linuxboot.intermediate
|
|
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=$(build)/$(BOARD)/linuxboot.rom
|
|
stty sane
|
|
|