Kconfig 221 B

1234567891011121314151617
  1. menu "x86 architecture"
  2. depends on X86
  3. config SYS_ARCH
  4. default "x86"
  5. choice
  6. prompt "Target select"
  7. config TARGET_COREBOOT
  8. bool "Support coreboot"
  9. endchoice
  10. source "board/chromebook-x86/coreboot/Kconfig"
  11. endmenu