summaryrefslogtreecommitdiff
path: root/boot/u-boot/Config.in
diff options
context:
space:
mode:
authorThomas Petazzoni <thomas.petazzoni@free-electrons.com>2011-07-11 22:46:09 +0200
committerPeter Korsgaard <jacmet@sunsite.dk>2011-07-11 23:39:52 +0200
commita4ca959321da218ebb2e5078831e5ec1f4d8da34 (patch)
treed7dc679d86ebf673af5e5f213b8050ba48d843ac /boot/u-boot/Config.in
parent9af0ee86b71cd8bb679687204cc380bd9ff2c73d (diff)
u-boot: rename to uboot
This will allow to match the currently Config.in option BR2_TARGET_UBOOT, in order to make it easy to integrate U-Boot into the package infrastructure. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'boot/u-boot/Config.in')
-rw-r--r--boot/u-boot/Config.in131
1 files changed, 0 insertions, 131 deletions
diff --git a/boot/u-boot/Config.in b/boot/u-boot/Config.in
deleted file mode 100644
index aada346e7..000000000
--- a/boot/u-boot/Config.in
+++ /dev/null
@@ -1,131 +0,0 @@
-menuconfig BR2_TARGET_UBOOT
- bool "U-Boot"
- help
- Build "Das U-Boot" Boot Monitor
-
-if BR2_TARGET_UBOOT
-config BR2_TARGET_UBOOT_BOARDNAME
- string "U-Boot board name"
- help
- One of U-Boot supported boards to be built.
- This will be suffixed with _config to meet U-Boot standard naming.
-
-choice
- prompt "U-Boot Version"
- default BR2_TARGET_UBOOT_2011_03
- help
- Select the specific U-Boot version you want to use
-
-config BR2_TARGET_UBOOT_2011_03
- bool "2011.03"
-
-config BR2_TARGET_UBOOT_2010_12
- bool "2010.12"
-
-config BR2_TARGET_UBOOT_2010_09
- bool "2010.09"
-
-config BR2_TARGET_UBOOT_2010_06
- bool "2010.06"
-
-config BR2_TARGET_UBOOT_2010_03
- bool "2010.03"
-
-config BR2_TARGET_UBOOT_CUSTOM_TARBALL
- bool "Custom tarball"
-
-endchoice
-
-if BR2_TARGET_UBOOT_CUSTOM_TARBALL
-
-config BR2_TARGET_UBOOT_CUSTOM_TARBALL_LOCATION
- string "URL of custom U-Boot tarball"
-
-endif
-
-config BR2_TARGET_UBOOT_VERSION
- string
- default "2011.03" if BR2_TARGET_UBOOT_2011_03
- default "2010.12" if BR2_TARGET_UBOOT_2010_12
- default "2010.09" if BR2_TARGET_UBOOT_2010_09
- default "2010.06" if BR2_TARGET_UBOOT_2010_06
- default "2010.03" if BR2_TARGET_UBOOT_2010_03
- default "custom" if BR2_TARGET_UBOOT_CUSTOM_TARBALL
-
-config BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR
- string "custom patch dir"
- help
- If your board requires custom patches, add the path to the
- directory containing the patches here. The patches must be
- named u-boot-<version>-<something>.patch.
-
- Most users may leave this empty
-
-choice
- prompt "U-Boot binary format"
-
-config BR2_TARGET_UBOOT_FORMAT_BIN
- bool "u-boot.bin"
-
-config BR2_TARGET_UBOOT_FORMAT_KWB
- depends on BR2_arm
- bool "u-boot.kwb (Marvell)"
-
-config BR2_TARGET_UBOOT_FORMAT_LDR
- depends on BR2_bfin
- bool "u-boot.ldr"
-
-endchoice
-
-config BR2_TARGET_UBOOT_TOOL_ENV
- bool "fw_printenv tool in target"
- help
- Install fw_printenv / fw_setenv tools in target.
-
-menuconfig BR2_TARGET_UBOOT_NETWORK
- bool "Network Settings"
- default y
- help
- Network settings for U-boot
-
-if BR2_TARGET_UBOOT_NETWORK
-
-config BR2_TARGET_UBOOT_SERVERIP
- string "server ip"
- default "10.175.196.221"
- help
- TFTP server ip address
-
-config BR2_TARGET_UBOOT_IPADDR
- string "ip address"
- default "10.175.196.18"
- help
- Target ip address
-
-config BR2_TARGET_UBOOT_GATEWAY
- string "gateway ip"
- default "10.175.196.1"
- help
- Gateway ip address
-
-config BR2_TARGET_UBOOT_NETMASK
- string "netmask"
- default "255.255.255.0"
- help
- Network Mask
-
-config BR2_TARGET_UBOOT_ETHADDR
- string "ethernet address"
- 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"
- help
- Target MAC address for the second ethernet interface.
-
-endif # BR2_TARGET_UBOOT_NETWORK
-
-endif # BR2_TARGET_UBOOT