1234567891011121314151617181920212223242526 |
- menuconfig BR2_TARGET_X86
- bool "Generic x86 Device Support"
- depends on BR2_i386
- if BR2_TARGET_X86
- choice
- prompt "Pentium (or later) Controller board"
- help
- config BR2_TARGET_I686
- bool "i686"
- depends on BR2_i386
- endchoice
- config BR2_BOARD_NAME
- string
- default "i686" if BR2_TARGET_I686
- config BR2_BOARD_PATH
- string "Board Path"
- default "target/device/x86/$(BR2_BOARD_NAME)"
- endif
|