Config.in 396 B

1234567891011121314151617181920212223242526
  1. menuconfig BR2_TARGET_X86
  2. bool "Generic x86 Device Support"
  3. depends on BR2_i386
  4. if BR2_TARGET_X86
  5. choice
  6. prompt "Pentium (or later) Controller board"
  7. help
  8. config BR2_TARGET_I686
  9. bool "i686"
  10. depends on BR2_i386
  11. endchoice
  12. config BR2_BOARD_NAME
  13. string
  14. default "i686" if BR2_TARGET_I686
  15. config BR2_BOARD_PATH
  16. string "Board Path"
  17. default "target/device/x86/$(BR2_BOARD_NAME)"
  18. endif