diff options
author | Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> | 2013-02-05 05:34:32 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2013-02-05 20:36:37 +0100 |
commit | a91a5c160811cfa874ab39ffce4f49cea80ec7d3 (patch) | |
tree | 0e97ea059b8902a72cde2e4632f1f1e268f7c01e | |
parent | 8ccef3b3e6428aaa11a63ade4bffb4ae49c4ed2a (diff) | |
download | buildroot-novena-a91a5c160811cfa874ab39ffce4f49cea80ec7d3.tar.gz buildroot-novena-a91a5c160811cfa874ab39ffce4f49cea80ec7d3.zip |
Legacy: make the menu a normal menu.
The help text is moved to comments.
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
-rw-r--r-- | Config.in.legacy | 25 |
1 files changed, 11 insertions, 14 deletions
diff --git a/Config.in.legacy b/Config.in.legacy index 906c03829..70958c3fb 100644 --- a/Config.in.legacy +++ b/Config.in.legacy @@ -29,20 +29,17 @@ config BR2_LEGACY comment "Legacy detected: check the content of the menu below" depends on BR2_LEGACY -# This option should get a new name with every buildroot release, so it defaults -# to y again for people who upgrade. -menuconfig BR2_LEGACY_CHECK_2012_11 - bool "Check for legacy config options" - default y - help - Select this option to see the config options that are present in your - current .config but are no longer supported by buildroot. If any of - the options in this menu is selected, they should be replaced with - something else. As long as they stay selected, the build will fail. - Just de-select this option to automatically remove all the legacy - configuration. +menu "Legacy config options" + +if BR2_LEGACY +comment "Your old configuration uses legacy options that no " +comment "longer exist in buildroot. " +comment "Please look at the options which have been selected " +comment "and read their help text. " +comment "As long as these options stay selected, the build " +comment "will fail. " +endif -if BR2_LEGACY_CHECK_2012_11 # # Legacy options from 2012.08 @@ -94,4 +91,4 @@ config BR2_PACKAGE_XSERVER_tinyx The option has been renamed BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE. -endif +endmenu |