config BR2_TARGET_CUSTOM_UBOOT bool help A target can "select" this to disable the build of vanilla u-boot. menuconfig BR2_TARGET_UBOOT bool "Das U-Boot Boot Monitor" depends on !BR2_TARGET_CUSTOM_UBOOT help Build "Das U-Boot" Boot Monitor if BR2_TARGET_UBOOT choice prompt "U-Boot Version" default BR2_TARGET_UBOOT_2009_01_RC1 help Select the specific Linux version you want to use config BR2_TARGET_UBOOT_2009_01_RC1 bool "u-boot-2009.01-rc1" depends on BR2_TARGET_UBOOT help Use u-boot from December 2008 (RC1) config BR2_TARGET_UBOOT_2008_10 bool "u-boot-2008.10" depends on BR2_TARGET_UBOOT help Use u-boot from October 2008 config BR2_TARGET_UBOOT_1_3_4 bool "u-boot-1.3.4" depends on BR2_TARGET_UBOOT help Use u-boot from mid 2008 config BR2_TARGET_UBOOT_2009_01 bool "u-boot-2009.01" depends on BR2_TARGET_UBOOT help Use u-boot from January 2009 Release date 2009-01-17 endchoice config BR2_UBOOT_VERSION string default "2009.01-rc1" if BR2_TARGET_UBOOT_2009_01_RC1 default "2008.10" if BR2_TARGET_UBOOT_2008_10 default "1.3.4" if BR2_TARGET_UBOOT_1_3_4 default "2009.01" if BR2_TARGET_UBOOT_2009_01 config BR2_TARGET_UBOOT_BOARDNAME string "board name" depends on BR2_TARGET_UBOOT default "$(BOARD_NAME)" help One of U-Boot supported boards to be built. This will be suffixed with _config to meet U-Boot standard naming. config BR2_TARGET_UBOOT_CUSTOM_PATCH string "custom patch" depends on BR2_TARGET_UBOOT help If your board requires a custom patch, add the path to the file here. Most users may leave this empty choice prompt "Bootsource" depends on BR2_BOOTSOURCE default BR2_TARGET_UBOOT_BOOTSOURCE_DATAFLASHCARD config BR2_TARGET_UBOOT_BOOTSOURCE_DATAFLASHCARD bool "Boot from dataflashcard" depends on BR2_BOOTSOURCE_DATAFLASHCARD help config BR2_TARGET_UBOOT_BOOTSOURCE_DATAFLASH bool "Boot from dataflash depends on BR2_BOOTSOURCE_DATAFLASH help config BR2_TARGET_UBOOT_BOOTSOURCE_NANDFLASH bool "Boot from a NAND flash" depends on BR2_BOOTSOURCE_NANDFLASH help Build u-boot with environment in the NAND flash config BR2_TARGET_UBOOT_BOOTSOURCE_FLASH bool "Boot from a parallell flash" depends on BR2_BOOTSOURCE_FLASH help Build u-boot with environment in a flash RAM config BR2_TARGET_UBOOT_BOOTSOURCE_SDCARD bool "Boot from a NAND flash" depends on BR2_BOOTSOURCE_SDCARD help Build u-boot with environment on an SD-Card Not yet supported config BR2_TARGET_UBOOT_BOOTSOURCE_EEPROM bool "Boot from a serial EEPROM" depends on BR2_BOOTSOURCE_EEPROM help Build u-boot with environment in a serial EEPROM Not yet supported endchoice config BR2_TARGET_UBOOT_BOOTSOURCE string depends on BR2_BOOTSOURCE default "dataflash" if BR2_TARGET_UBOOT_BOOTSOURCE_DATAFLASHCARD default "dataflash" if BR2_TARGET_UBOOT_BOOTSOURCE_DATAFLASH default "nandflash" if BR2_TARGET_UBOOT_BOOTSOURCE_NANDFLASH default "flash" if BR2_TARGET_UBOOT_BOOTSOURCE_FLASH default "sdcard" if BR2_TARGET_UBOOT_BOOTSOURCE_SDCARD default "eeprom" if BR2_TARGET_UBOOT_BOOTSOURCE_EEPROM config BR2_TARGET_UBOOT_SERVERIP string "server ip" depends on BR2_TARGET_UBOOT default "10.175.196.221" help TFTP server ip address config BR2_TARGET_UBOOT_IPADDR string "ip address" depends on BR2_TARGET_UBOOT default "10.175.196.18" help Target ip address config BR2_TARGET_UBOOT_GATEWAY string "gateway ip" depends on BR2_TARGET_UBOOT default "10.175.196.1" help Gateway ip address config BR2_TARGET_UBOOT_NETMASK string "netmask" depends on BR2_TARGET_UBOOT default "255.255.255.0" help Network Mask config BR2_TARGET_UBOOT_ETHADDR string "ethernet address" depends on BR2_TARGET_UBOOT default "04:25:fe:ed:00:18" help Target MAC address for the ethernet interface. This should be changed for production units config BR2_TARGET_UBOOT_ETH1ADDR string "ethernet 2 address" depends on BR2_TARGET_UBOOT depends on BR2_TARGET_AVR32 help Target MAC address for the second ethernet interface. config BR2_TARGET_UBOOT_SILENT bool "silent console" depends on BR2_TARGET_UBOOT help If the option has been enabled, the output can be silenced by setting the environment variable "silent". config BR2_TARGET_UBOOT_TOOL_MKIMAGE bool "mkimage tool in target" depends on BR2_TARGET_UBOOT help Install mkimage tool in target. config BR2_TARGET_UBOOT_TOOL_ENV bool "fw_printenv tool in target" depends on BR2_TARGET_UBOOT help Install fw_printenv / fw_setenv tools in target. endif config BR2_BOOTSOURCE_DATAFLASHCARD bool help Allow use of a dataflashcard as a boot source config BR2_BOOTSOURCE_DATAFLASH bool help Allow use of a dataflash as a boot source config BR2_BOOTSOURCE_NANDFLASH bool help Allow use of a NAND flash as a boot source config BR2_BOOTSOURCE_FLASH bool help Allow use of a flash RAM as a boot source config BR2_BOOTSOURCE_SDCARD bool help Allow use of an SD-card as a boot source config BR2_BOOTSOURCE_EEPROM bool help Allow use of a serial eeprom as a boot source config BR2_BOOTSOURCE bool default y if BR2_BOOTSOURCE_DATAFLASHCARD default y if BR2_BOOTSOURCE_DATAFLASH default y if BR2_BOOTSOURCE_NANDFLASH default y if BR2_BOOTSOURCE_FLASH default y if BR2_BOOTSOURCE_SDCARD default y if BR2_BOOTSOURCE_EEPROM default n