busybox: add 1.12.x and make it default
authorPeter Korsgaard <jacmet@sunsite.dk>
Thu, 21 Aug 2008 05:08:53 +0000 (05:08 -0000)
committerPeter Korsgaard <jacmet@sunsite.dk>
Thu, 21 Aug 2008 05:08:53 +0000 (05:08 -0000)
package/busybox/Config.in

index 02ec7fc2589cb5ad6d0a2befbe43b697b3e89899..6c8a7e96b515b4f26d4c7cf942ef3085799670c7 100644 (file)
@@ -12,7 +12,7 @@ config BR2_PACKAGE_BUSYBOX
 choice
        prompt "BusyBox Version"
        depends on BR2_PACKAGE_BUSYBOX
-       default BR2_BUSYBOX_VERSION_1_11_X
+       default BR2_BUSYBOX_VERSION_1_12_X
        help
          Select the version of BusyBox you wish to use.
 
@@ -43,6 +43,9 @@ choice
        config BR2_BUSYBOX_VERSION_1_11_X
                bool "BusyBox 1.11.x"
 
+       config BR2_BUSYBOX_VERSION_1_12_X
+               bool "BusyBox 1.12.x"
+
        config BR2_PACKAGE_BUSYBOX_SNAPSHOT
                bool "daily snapshot"
 
@@ -57,6 +60,7 @@ config BR2_BUSYBOX_VERSION
        default "1.9.2"         if BR2_BUSYBOX_VERSION_1_9_X
        default "1.10.4"        if BR2_BUSYBOX_VERSION_1_10_X
        default "1.11.1"        if BR2_BUSYBOX_VERSION_1_11_X
+       default "1.12.0"        if BR2_BUSYBOX_VERSION_1_12_X
 
 config BR2_PACKAGE_BUSYBOX_FULLINSTALL
        bool "Run BusyBox's own full installation"
@@ -82,6 +86,7 @@ config BR2_PACKAGE_BUSYBOX_CONFIG
        default "package/busybox/busybox-1.6.0.config" if BR2_BUSYBOX_VERSION_1_9_X
        default "package/busybox/busybox-1.6.0.config" if BR2_BUSYBOX_VERSION_1_10_X
        default "package/busybox/busybox-1.11.x.config" if BR2_BUSYBOX_VERSION_1_11_X
+       default "package/busybox/busybox-1.11.x.config" if BR2_BUSYBOX_VERSION_1_12_X
        help
          Some people may wish to use their own modified BusyBox configuration
          file, and will specify their config file location with this option.