Browse Source

Allow longer history for package versions

Ulf Samuelsson 18 years ago
parent
commit
cfeb86e2b3
3 changed files with 9 additions and 3 deletions
  1. 6 0
      Config.in
  2. 2 2
      package/busybox/Config.in
  3. 1 1
      toolchain/gcc/Config.in

+ 6 - 0
Config.in

@@ -170,6 +170,12 @@ config BR2_DEPRECATED
 	help
 	  This option hides outdated/obsolete versions of packages.
 
+config BR2_RECENT
+	bool "Show packages that are of the latest major version"
+	default y
+	help
+	  This option show recent versions of packages.
+
 choice
 	prompt "strip"
 	default BR2_STRIP_strip

+ 2 - 2
package/busybox/Config.in

@@ -26,11 +26,11 @@ choice
 
 	config BR2_BUSYBOX_VERSION_1_7_0
 		bool "BusyBox 1.7.0"
-		depends on BR2_DEPRECATED
+		depends on BR2_DEPRECATED || BR2_RECENT
 
 	config BR2_BUSYBOX_VERSION_1_7_1
 		bool "BusyBox 1.7.1"
-		depends on BR2_DEPRECATED
+		depends on BR2_DEPRECATED || BR2_RECENT
 
 	config BR2_BUSYBOX_VERSION_1_7_2
 		bool "BusyBox 1.7.2"

+ 1 - 1
toolchain/gcc/Config.in

@@ -23,7 +23,7 @@ choice
 
 	config BR2_GCC_VERSION_4_2_0
 		depends !BR2_avr32 && !BR2_nios2
-		depends BR2_DEPRECATED
+		depends BR2_DEPRECATED || BR2_RECENT
 		bool "gcc 4.2.0"
 
 	config BR2_GCC_VERSION_4_2_1