diff options
Diffstat (limited to 'boot/uboot/Config.in')
-rw-r--r-- | boot/uboot/Config.in | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/boot/uboot/Config.in b/boot/uboot/Config.in index dbd4f34df..070533efd 100644 --- a/boot/uboot/Config.in +++ b/boot/uboot/Config.in @@ -12,10 +12,13 @@ config BR2_TARGET_UBOOT_BOARDNAME choice prompt "U-Boot Version" - default BR2_TARGET_UBOOT_2011_03 + default BR2_TARGET_UBOOT_2011_06 help Select the specific U-Boot version you want to use +config BR2_TARGET_UBOOT_2011_06 + bool "2011.06" + config BR2_TARGET_UBOOT_2011_03 bool "2011.03" @@ -28,9 +31,6 @@ config BR2_TARGET_UBOOT_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" @@ -48,11 +48,11 @@ endif config BR2_TARGET_UBOOT_VERSION string + default "2011.06" if BR2_TARGET_UBOOT_2011_06 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 default $BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION if BR2_TARGET_UBOOT_CUSTOM_GIT |