Ian Campbell wrote:
One problem I have with the first patch is that I'm lacking the vocabulary to describe the configuration which is currently represented by COREBOOT=n.
..
+++ b/src/Kconfig @@ -4,12 +4,27 @@ mainmenu "SeaBIOS Configuration"
menu "General Features"
- choice
prompt "Select target environment"
default GENERIC
- config COREBOOT bool "Build for coreboot"
default n help Configure as a coreboot payload.
- config XEN
bool "Build for Xen HVM"
help
Configure to be used by xen hvmloader, for a HVM guest.
- config GENERIC
bool "Build for generic target environment"
help
Configure to be used in a generic target environment.
- endchoice
Shouldn't GENERIC be QEMU? AFAIK that's the alternative to using SeaBIOS with coreboot?
//Peter