2012-11-12 18:08:28 +08:00
|
|
|
#
|
|
|
|
# Config.in.legacy - support for backward compatibility
|
|
|
|
#
|
2013-09-03 04:07:50 +08:00
|
|
|
# When an existing Config.in symbol is removed, it should be added again in
|
|
|
|
# this file, and take appropriate action to approximate backward compatibility.
|
|
|
|
# This will make the transition for the user more convenient.
|
2012-11-12 18:08:28 +08:00
|
|
|
#
|
|
|
|
# When adding legacy symbols to this file, add them to the front. The oldest
|
|
|
|
# symbols will be removed again after about two years.
|
|
|
|
#
|
|
|
|
# The symbol should be copied as-is from the place where it was previously
|
|
|
|
# defined, but the help text should be removed or replaced with something that
|
|
|
|
# explains how to fix it.
|
2013-09-03 04:07:50 +08:00
|
|
|
#
|
|
|
|
# For bool options, the old symbol should select BR2_LEGACY, so that the user
|
|
|
|
# is informed at build-time about selected legacy options.
|
|
|
|
# If there is an equivalent (set of) new symbols, these should be select'ed by
|
|
|
|
# the old symbol for backwards compatibility.
|
2015-12-19 07:52:03 +08:00
|
|
|
# It is not possible to select an option that is part of a choice. In that
|
|
|
|
# case, the new option should use the old symbol as default. This requires a
|
|
|
|
# change outside of Config.in.legacy, and this should be clearly marked as such
|
|
|
|
# in a comment, so that removal of legacy options also include the removal of
|
|
|
|
# these external references.
|
|
|
|
#
|
|
|
|
# [Example: renaming a bool option that is part of a choice from FOO to BAR]
|
|
|
|
# original choice:
|
|
|
|
# choice
|
|
|
|
# prompt "Choose foobar"
|
|
|
|
# config BR2_FOO_1
|
|
|
|
# bool "foobar 1"
|
|
|
|
# config BR2_FOO_2
|
|
|
|
# bool "foobar 2"
|
|
|
|
# endchoice
|
|
|
|
#
|
|
|
|
# becomes:
|
|
|
|
# choice
|
|
|
|
# prompt "Choose foobar"
|
|
|
|
# default BR2_BAR_1 if BR2_FOO_1 # legacy
|
|
|
|
# default BR2_BAR_2 if BR2_FOO_2 # legacy
|
|
|
|
# config BR2_BAR_1
|
|
|
|
# bool "foobar 1"
|
|
|
|
# config BR2_BAR_2
|
|
|
|
# bool "foobar 2"
|
|
|
|
# endchoice
|
|
|
|
#
|
|
|
|
# and in Config.in.legacy:
|
|
|
|
# config BR2_FOO_1
|
|
|
|
# bool "foobar 1 has been renamed"
|
|
|
|
# help
|
|
|
|
# <suitable help text>
|
|
|
|
# # Note: BR2_FOO_1 is still referenced from package/foo/Config.in
|
|
|
|
# config BR2_FOO_2
|
|
|
|
# bool "foobar 2 has been renamed"
|
|
|
|
# help
|
|
|
|
# <suitable help text>
|
|
|
|
# # Note: BR2_FOO_2 is still referenced from package/foo/Config.in
|
|
|
|
#
|
|
|
|
# [End of example]
|
2013-09-03 04:07:50 +08:00
|
|
|
#
|
|
|
|
# For string options, it is not possible to directly select another symbol. In
|
|
|
|
# this case, a hidden wrap bool option has to be added, that defaults to y if
|
|
|
|
# the old string is not set at its default value. The wrap symbol should select
|
|
|
|
# BR2_LEGACY.
|
|
|
|
# If the original symbol has been renamed, the new symbol should use the value
|
2015-12-19 07:52:03 +08:00
|
|
|
# of the old symbol as default. Like for choice options, a comment should be
|
|
|
|
# added to flag that the symbol is still used in another file.
|
2013-09-03 04:07:50 +08:00
|
|
|
#
|
|
|
|
# [Example: renaming a string option from FOO to BAR]
|
|
|
|
# original symbol:
|
2015-12-19 07:52:03 +08:00
|
|
|
# config BR2_FOO_STRING
|
|
|
|
# string "Some foo string"
|
2013-09-03 04:07:50 +08:00
|
|
|
#
|
|
|
|
# becomes:
|
2015-12-19 07:52:03 +08:00
|
|
|
# config BR2_BAR_STRING
|
|
|
|
# string "Some bar string"
|
|
|
|
# default BR2_FOO_STRING if BR2_FOO_STRING != "" # legacy
|
2013-09-03 04:07:50 +08:00
|
|
|
#
|
|
|
|
# and in Config.in.legacy:
|
2015-12-19 07:52:03 +08:00
|
|
|
# config BR2_FOO_STRING
|
|
|
|
# string "The foo string has been renamed"
|
|
|
|
# help
|
|
|
|
# <suitable help text>
|
2013-09-03 04:07:50 +08:00
|
|
|
#
|
2015-12-19 07:52:03 +08:00
|
|
|
# config BR2_FOO_STRING_WRAP
|
|
|
|
# bool
|
|
|
|
# default y if BR2_FOO_STRING != ""
|
|
|
|
# select BR2_LEGACY
|
2013-09-03 04:07:50 +08:00
|
|
|
#
|
2015-12-19 07:52:03 +08:00
|
|
|
# # Note: BR2_FOO_STRING is still referenced from package/foo/Config.in
|
2013-09-03 04:07:50 +08:00
|
|
|
#
|
|
|
|
# [End of example]
|
2012-11-12 18:08:28 +08:00
|
|
|
|
2015-04-11 07:49:02 +08:00
|
|
|
config BR2_SKIP_LEGACY
|
|
|
|
bool
|
|
|
|
option env="SKIP_LEGACY"
|
|
|
|
|
|
|
|
if !BR2_SKIP_LEGACY
|
|
|
|
|
2012-11-12 18:08:28 +08:00
|
|
|
config BR2_LEGACY
|
|
|
|
bool
|
|
|
|
help
|
|
|
|
This option is selected automatically when your old .config uses an
|
|
|
|
option that no longer exists in current buildroot. In that case, the
|
|
|
|
build will fail. Look for config options which are selected in the
|
|
|
|
menu below: they no longer exist and should be replaced by something
|
|
|
|
else.
|
|
|
|
|
|
|
|
# This comment fits exactly in a 80-column display
|
|
|
|
comment "Legacy detected: check the content of the menu below"
|
|
|
|
depends on BR2_LEGACY
|
|
|
|
|
2013-02-05 13:34:32 +08:00
|
|
|
menu "Legacy config options"
|
|
|
|
|
|
|
|
if BR2_LEGACY
|
2013-09-03 04:07:52 +08:00
|
|
|
comment "----------------------------------------------------"
|
2013-02-05 13:34:32 +08:00
|
|
|
comment "Your old configuration uses legacy options that no "
|
2013-09-03 04:07:51 +08:00
|
|
|
comment "longer exist in buildroot, as indicated in the menu "
|
|
|
|
comment "below. As long as these options stay selected, or in"
|
|
|
|
comment "case of string options are non-empty, the build "
|
2013-02-05 13:34:32 +08:00
|
|
|
comment "will fail. "
|
2013-09-03 04:07:51 +08:00
|
|
|
comment "* "
|
|
|
|
comment "Where possible, an automatic conversion from old to "
|
|
|
|
comment "new symbols has been performed. Before making any "
|
|
|
|
comment "change in this legacy menu, make sure to exit the "
|
|
|
|
comment "configuration editor a first time and save the "
|
|
|
|
comment "configuration. Otherwise, the automatic conversion "
|
|
|
|
comment "of symbols will be lost. "
|
|
|
|
comment "* "
|
|
|
|
comment "After this initial save, reopen the configuration "
|
|
|
|
comment "editor, inspect the options selected below, read "
|
|
|
|
comment "their help texts, and verify/update the new "
|
|
|
|
comment "configuration in the corresponding configuration "
|
|
|
|
comment "menus. When everything is ok, you can disable the "
|
|
|
|
comment "legacy options in the menu below. Once you have "
|
|
|
|
comment "disabled all legacy options, this text will "
|
|
|
|
comment "disappear and you will be able to start the build. "
|
|
|
|
comment "* "
|
2013-06-30 06:38:13 +08:00
|
|
|
comment "Note: at some point in the future, the oldest legacy"
|
|
|
|
comment "options will be removed, and configuration files "
|
|
|
|
comment "that still have those options set, will fail to "
|
|
|
|
comment "build, or run, in unpredictable ways. "
|
2013-09-03 04:07:52 +08:00
|
|
|
comment "----------------------------------------------------"
|
2013-02-05 13:34:32 +08:00
|
|
|
endif
|
2012-11-12 18:08:28 +08:00
|
|
|
|
2015-11-28 01:38:00 +08:00
|
|
|
###############################################################################
|
2016-03-01 06:11:38 +08:00
|
|
|
comment "Legacy options removed in 2016.05"
|
2015-11-28 01:38:00 +08:00
|
|
|
|
2016-02-21 06:09:07 +08:00
|
|
|
config BR2_PACKAGE_KODI_RSXS
|
|
|
|
bool "rsxs support in Kodi was moved to an addon"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_PACKAGE_KODI_SCREENSAVER_RSXS
|
|
|
|
help
|
|
|
|
rsxs support in Kodi was moved to an addon
|
|
|
|
|
2016-02-21 06:09:06 +08:00
|
|
|
config BR2_PACKAGE_KODI_GOOM
|
|
|
|
bool "Goom support in Kodi was moved to an addon"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_PACKAGE_KODI_VISUALISATION_GOOM
|
|
|
|
help
|
|
|
|
Goom support in Kodi was moved to an addon
|
|
|
|
|
2016-02-26 05:55:11 +08:00
|
|
|
config BR2_PACKAGE_SYSTEMD_ALL_EXTRAS
|
|
|
|
bool "systemd all extras option has been removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_PACKAGE_XZ
|
|
|
|
select BR2_PACKAGE_LIBGCRYPT
|
|
|
|
help
|
|
|
|
The systemd option to enable "all extras" has been
|
|
|
|
removed. To get the same features, the libgcrypt and xz
|
|
|
|
package should now be enabled.
|
|
|
|
|
2016-02-25 04:25:50 +08:00
|
|
|
config BR2_GCC_VERSION_4_5_X
|
|
|
|
bool "gcc 4.5.x has been removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
The 4.5.x version of gcc has been removed. Use a newer
|
|
|
|
version instead.
|
|
|
|
|
2016-02-09 03:56:41 +08:00
|
|
|
config BR2_PACKAGE_SQLITE_READLINE
|
|
|
|
bool "command-line editing support was updated"
|
|
|
|
select BR2_PACKAGE_NCURSES
|
|
|
|
select BR2_PACKAGE_READLINE
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
This option was removed in favour of the sqlite package
|
|
|
|
deciding itself depending on the enabled packages whether
|
|
|
|
command-line editing should be enabled, it also also takes
|
|
|
|
libedit into account.
|
|
|
|
|
2016-03-01 06:11:38 +08:00
|
|
|
###############################################################################
|
|
|
|
comment "Legacy options removed in 2016.02"
|
|
|
|
|
2016-02-08 00:56:56 +08:00
|
|
|
config BR2_PACKAGE_OPENPOWERLINK_DEBUG_LEVEL
|
|
|
|
bool "openpowerlink debug option has been removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
This option depends on BR2_ENABLE_DEBUG which should not be used
|
|
|
|
by packages anymore.
|
|
|
|
|
|
|
|
config BR2_PACKAGE_OPENPOWERLINK_KERNEL_MODULE
|
|
|
|
bool "openpowerlink package has been updated"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_PACKAGE_OPENPOWERLINK_STACK_KERNEL_STACK_LIB
|
|
|
|
help
|
|
|
|
openpowerlink kernel modules are built if the
|
|
|
|
kernel stack library is selected.
|
|
|
|
|
|
|
|
config BR2_PACKAGE_OPENPOWERLINK_LIBPCAP
|
|
|
|
bool "openpowerlink package has been updated"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_PACKAGE_OPENPOWERLINK_STACK_USERSPACE_DAEMON_LIB
|
|
|
|
help
|
|
|
|
The user space support has been split in two part:
|
|
|
|
- a monolitic user space library
|
|
|
|
- a user spae deamon driver
|
|
|
|
|
2016-02-06 07:06:17 +08:00
|
|
|
config BR2_LINUX_KERNEL_SAME_AS_HEADERS
|
|
|
|
bool "using the linux headers version for the kernel has been removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
The option to use the version of the kernel headers for the
|
|
|
|
kernel to build has been removed.
|
|
|
|
|
|
|
|
There is now the converse, better-suited and more versatile
|
|
|
|
option to use the kernel version for the linux headers.
|
|
|
|
|
2016-01-21 06:17:43 +08:00
|
|
|
config BR2_PACKAGE_CUPS_PDFTOPS
|
|
|
|
bool "Pdftops support has been removed from Cups"
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
Pdftops support has been removed from the cups package
|
|
|
|
It is now part of the cups-filters package.
|
|
|
|
|
2016-01-21 00:53:39 +08:00
|
|
|
config BR2_KERNEL_HEADERS_3_16
|
|
|
|
bool "kernel headers version 3.16.x are no longer supported"
|
|
|
|
select BR2_KERNEL_HEADERS_3_18
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
Version 3.16.x of the Linux kernel headers have been deprecated
|
|
|
|
for more than four buildroot releases and are now removed.
|
|
|
|
As an alternative, version 3.18.x of the headers have been
|
|
|
|
automatically selected in your configuration.
|
|
|
|
|
2015-12-20 04:42:53 +08:00
|
|
|
config BR2_PACKAGE_PYTHON_PYXML
|
|
|
|
bool "python-pyxml package has been removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
PyXML is obsolete and its functionality is covered either via
|
|
|
|
native Python XML support or python-lxml package.
|
|
|
|
|
2015-12-27 19:07:31 +08:00
|
|
|
# BR2_ENABLE_SSP is still referenced in Config.in (default in choice)
|
|
|
|
config BR2_ENABLE_SSP
|
|
|
|
bool "Stack Smashing protection now has different levels"
|
|
|
|
help
|
|
|
|
The protection offered by SSP can now be selected from different
|
|
|
|
protection levels. Be sure to review the SSP level in the build
|
|
|
|
options menu.
|
|
|
|
|
2015-12-20 20:44:37 +08:00
|
|
|
config BR2_PACKAGE_DIRECTFB_CLE266
|
2015-12-22 06:11:08 +08:00
|
|
|
bool "cle266 driver for directfb removed"
|
2015-12-20 20:44:37 +08:00
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
The cle266 directfb driver support has been removed.
|
|
|
|
It doesn't build in the latest version and it's unlikely
|
|
|
|
anyone has any use for it.
|
|
|
|
|
|
|
|
config BR2_PACKAGE_DIRECTFB_UNICHROME
|
2015-12-22 06:11:08 +08:00
|
|
|
bool "unichrome driver for directfb removed"
|
2015-12-20 20:44:37 +08:00
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
The unichrome directfb driver support has been removed.
|
|
|
|
It doesn't build in the latest version and it's unlikely
|
|
|
|
anyone has any use for it.
|
|
|
|
|
2015-12-20 00:39:14 +08:00
|
|
|
config BR2_PACKAGE_LIBELEMENTARY
|
|
|
|
bool "libelementary has been renamed to elementary"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_PACKAGE_ELEMENTARY
|
|
|
|
help
|
|
|
|
The libelementary package has been renamed to match the upstream
|
|
|
|
name.
|
|
|
|
|
2015-12-16 06:40:38 +08:00
|
|
|
config BR2_PACKAGE_LIBEINA
|
|
|
|
bool "libeina package has been removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_PACKAGE_EFL
|
|
|
|
help
|
2015-12-20 00:39:16 +08:00
|
|
|
With EFL 1.15, libeina is now provided by the efl package.
|
2015-12-16 06:40:38 +08:00
|
|
|
|
2015-12-16 06:40:37 +08:00
|
|
|
config BR2_PACKAGE_LIBEET
|
|
|
|
bool "libeet package has been removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_PACKAGE_EFL
|
|
|
|
help
|
2015-12-20 00:39:16 +08:00
|
|
|
With EFL 1.15, libeet is now provided by the efl package.
|
2015-12-16 06:40:37 +08:00
|
|
|
|
2015-12-16 06:40:36 +08:00
|
|
|
config BR2_PACKAGE_LIBEVAS
|
|
|
|
bool "libevas package has been removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_PACKAGE_EFL
|
|
|
|
help
|
2015-12-20 00:39:16 +08:00
|
|
|
With EFL 1.15, libevas is now provided by the efl package.
|
2015-12-16 06:40:36 +08:00
|
|
|
|
2015-12-16 06:40:35 +08:00
|
|
|
config BR2_PACKAGE_LIBECORE
|
|
|
|
bool "libecore package has been removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_PACKAGE_EFL
|
|
|
|
help
|
2015-12-20 00:39:16 +08:00
|
|
|
With EFL 1.15, libecore is now provided by the efl package.
|
2015-12-16 06:40:35 +08:00
|
|
|
|
2015-12-16 06:40:34 +08:00
|
|
|
config BR2_PACKAGE_LIBEDBUS
|
|
|
|
bool "libedbus package has been removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_PACKAGE_EFL
|
|
|
|
help
|
2015-12-20 00:39:16 +08:00
|
|
|
With EFL 1.15, libedbus is now provided by the efl package.
|
2015-12-16 06:40:34 +08:00
|
|
|
|
2015-12-16 06:40:33 +08:00
|
|
|
config BR2_PACKAGE_LIBEFREET
|
|
|
|
bool "libefreet package has been removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_PACKAGE_EFL
|
|
|
|
help
|
2015-12-20 00:39:16 +08:00
|
|
|
With EFL 1.15, libefreet is now provided by the efl package.
|
2015-12-16 06:40:33 +08:00
|
|
|
|
2015-12-16 06:40:32 +08:00
|
|
|
config BR2_PACKAGE_LIBEIO
|
|
|
|
bool "libeio package has been removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_PACKAGE_EFL
|
|
|
|
help
|
2015-12-20 00:39:16 +08:00
|
|
|
With EFL 1.15, libeio is now provided by the efl package.
|
2015-12-16 06:40:32 +08:00
|
|
|
|
2015-12-16 06:40:31 +08:00
|
|
|
config BR2_PACKAGE_LIBEMBRYO
|
|
|
|
bool "libembryo package has been removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_PACKAGE_EFL
|
|
|
|
help
|
2015-12-20 00:39:16 +08:00
|
|
|
With EFL 1.15, libembryo is now provided by the efl package.
|
2015-12-16 06:40:31 +08:00
|
|
|
|
2015-12-16 06:40:30 +08:00
|
|
|
config BR2_PACKAGE_LIBEDJE
|
|
|
|
bool "libedje package has been removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_PACKAGE_EFL
|
|
|
|
help
|
2015-12-20 00:39:16 +08:00
|
|
|
With EFL 1.15, libedje is now provided by the efl package.
|
2015-12-16 06:40:30 +08:00
|
|
|
|
2015-12-16 06:40:29 +08:00
|
|
|
config BR2_PACKAGE_LIBETHUMB
|
|
|
|
bool "libethumb package has been removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_PACKAGE_EFL
|
|
|
|
help
|
2015-12-20 00:39:16 +08:00
|
|
|
With EFL 1.15, libethumb is now provided by the efl package.
|
2015-12-16 06:40:29 +08:00
|
|
|
|
2015-11-28 01:38:00 +08:00
|
|
|
config BR2_PACKAGE_INFOZIP
|
|
|
|
bool "infozip option has been renamed to zip"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_PACKAGE_ZIP
|
|
|
|
help
|
|
|
|
Info-Zip's Zip package has been renamed from infozip to zip,
|
|
|
|
to avoid ambiguities with Info-Zip's UnZip which has been added
|
|
|
|
in the unzip package.
|
|
|
|
|
2015-12-23 20:16:04 +08:00
|
|
|
config BR2_BR2_PACKAGE_NODEJS_0_10_X
|
2016-01-30 22:51:00 +08:00
|
|
|
bool "nodejs 0.10.x option removed"
|
2015-12-23 20:16:04 +08:00
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_PACKAGE_NODEJS
|
|
|
|
help
|
2016-01-30 22:51:00 +08:00
|
|
|
nodejs 0.10.x option has been removed. 0.10.x is now
|
|
|
|
automatically chosen for ARMv5 architectures only and the latest
|
|
|
|
nodejs for all other supported architectures. The correct nodejs
|
|
|
|
version has been automatically selected in your configuration.
|
2015-12-23 20:16:04 +08:00
|
|
|
|
2015-12-23 20:16:03 +08:00
|
|
|
config BR2_BR2_PACKAGE_NODEJS_0_12_X
|
|
|
|
bool "nodejs version 0.12.x has been removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_PACKAGE_NODEJS
|
|
|
|
help
|
|
|
|
nodejs version 0.12.x has been removed. As an alternative,
|
|
|
|
the latest nodejs version has been automatically selected in
|
|
|
|
your configuration.
|
|
|
|
|
2015-12-23 20:16:02 +08:00
|
|
|
config BR2_BR2_PACKAGE_NODEJS_4_X
|
|
|
|
bool "nodejs version 4.x has been removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_PACKAGE_NODEJS
|
|
|
|
help
|
|
|
|
nodejs version 4.x has been removed. As an alternative,
|
|
|
|
the latest nodejs version has been automatically selected in
|
|
|
|
your configuration.
|
|
|
|
|
2015-06-03 01:52:12 +08:00
|
|
|
###############################################################################
|
2015-09-02 06:01:10 +08:00
|
|
|
comment "Legacy options removed in 2015.11"
|
|
|
|
|
2015-10-16 03:42:43 +08:00
|
|
|
config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_REAL
|
|
|
|
bool "gst1-plugins-bad real plugin has been removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
The real plugin from GStreamer 1 bad plugins has been
|
|
|
|
removed.
|
|
|
|
|
2015-10-08 05:56:48 +08:00
|
|
|
config BR2_PACKAGE_MEDIA_CTL
|
|
|
|
bool "media-ctl package has been removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_PACKAGE_LIBV4L
|
|
|
|
select BR2_PACKAGE_LIBV4L_UTILS
|
|
|
|
help
|
|
|
|
media-ctl source and developement have been moved to
|
|
|
|
v4l-utils since June 2014. For an up-to-date media-ctl
|
|
|
|
version select BR2_PACKAGE_LIBV4L and BR2_PACKAGE_LIBV4L_UTILS.
|
|
|
|
|
2015-10-04 00:35:05 +08:00
|
|
|
config BR2_PACKAGE_SCHIFRA
|
|
|
|
bool "schifra package has been removed"
|
2015-10-08 05:56:49 +08:00
|
|
|
select BR2_LEGACY
|
2015-10-04 00:35:05 +08:00
|
|
|
help
|
|
|
|
Schifra package has been maked broken since 2014.11 release and
|
|
|
|
haven't been fixed since then.
|
|
|
|
|
2015-07-27 04:38:27 +08:00
|
|
|
config BR2_PACKAGE_ZXING
|
|
|
|
bool "zxing option has been renamed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_PACKAGE_ZXING_CPP
|
|
|
|
help
|
|
|
|
ZXing no longer provides the cpp bindings, it has been renamed to
|
|
|
|
BR2_PACKAGE_ZXING_CPP which uses a new upstream.
|
|
|
|
|
package/freerdp: prepare for adding another client
Currently, the only client we can build is the X11 client.
FreeRDP now has support for building a wayland client.
However, that means we need to rethink the way we build FreeRDP, because
of some "inconsistencies" in its build system. This is because FreeRDP's
buildsystem does not have orthogonal options; some of the options can be
used for different components.
For example, the set of X11 libraries needed to build the server is a
superset of the X11 libraries needed to build the X11 client. So,
whenever the server is enabled, it means the X11 libraries required to
build the X11 client are available.
Now, if the user also wants to build the waland client (but not the X11
client), there is no way to tell FreeRDP not to build the X11 client,
because there is a single option, WITH_CLIENT, to drive whether any of
the clients is built. The decision is made on the availability of the
required libraries. And since the server is enabled, the X11 libs
required to build the X11 client are available. So, we end up with the
X11 client, even though it is not wanted.
And conversely with wayland...
So, we redesign the way we build FreeRDP. WE do not care what is
actually built; we just build whatever is buildable with the current
set of enabled libraries. But at install time (both in staging/ and
target/) we remove whatever the user does not want.
We also take the opportunity to rename the X11 client option, so it is
coherent with the soon-to-be-introduced wayland client.
Note: since FreeRDP has gained new dependencies, we can not just
introduce the legacy option as-is, otherwise we run the risk that it
selects the new option even though the new FreeRDP dependencies are not
enabled, spitting out the infamous 'unmet direct dependencies" kconfig
error.
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2015-09-07 03:54:21 +08:00
|
|
|
# Since FreeRDP has new dependencies, protect this legacy to avoid the
|
|
|
|
# infamous "unmet direct dependencies" kconfig error.
|
|
|
|
config BR2_PACKAGE_FREERDP_CLIENT
|
|
|
|
bool "freerdp client option renamed"
|
|
|
|
depends on BR2_PACKAGE_FREERDP
|
2015-10-08 05:56:49 +08:00
|
|
|
select BR2_LEGACY
|
package/freerdp: prepare for adding another client
Currently, the only client we can build is the X11 client.
FreeRDP now has support for building a wayland client.
However, that means we need to rethink the way we build FreeRDP, because
of some "inconsistencies" in its build system. This is because FreeRDP's
buildsystem does not have orthogonal options; some of the options can be
used for different components.
For example, the set of X11 libraries needed to build the server is a
superset of the X11 libraries needed to build the X11 client. So,
whenever the server is enabled, it means the X11 libraries required to
build the X11 client are available.
Now, if the user also wants to build the waland client (but not the X11
client), there is no way to tell FreeRDP not to build the X11 client,
because there is a single option, WITH_CLIENT, to drive whether any of
the clients is built. The decision is made on the availability of the
required libraries. And since the server is enabled, the X11 libs
required to build the X11 client are available. So, we end up with the
X11 client, even though it is not wanted.
And conversely with wayland...
So, we redesign the way we build FreeRDP. WE do not care what is
actually built; we just build whatever is buildable with the current
set of enabled libraries. But at install time (both in staging/ and
target/) we remove whatever the user does not want.
We also take the opportunity to rename the X11 client option, so it is
coherent with the soon-to-be-introduced wayland client.
Note: since FreeRDP has gained new dependencies, we can not just
introduce the legacy option as-is, otherwise we run the risk that it
selects the new option even though the new FreeRDP dependencies are not
enabled, spitting out the infamous 'unmet direct dependencies" kconfig
error.
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2015-09-07 03:54:21 +08:00
|
|
|
select BR2_PACKAGE_FREERDP_CLIENT_X11
|
|
|
|
|
2015-09-02 02:45:32 +08:00
|
|
|
config BR2_PACKAGE_BLACKBOX
|
|
|
|
bool "blackbox package has been removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
Upstream is dead and the package has been deprecated for
|
|
|
|
some time. There are other alternative maintained WMs.
|
|
|
|
|
2015-09-02 02:45:31 +08:00
|
|
|
config BR2_KERNEL_HEADERS_3_0
|
|
|
|
bool "kernel headers version 3.0.x are no longer supported"
|
|
|
|
select BR2_KERNEL_HEADERS_3_2
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
Version 3.0.x of the Linux kernel headers have been deprecated
|
|
|
|
for more than four buildroot releases and are now removed.
|
|
|
|
As an alternative, version 3.2.x of the headers have been
|
|
|
|
automatically selected in your configuration.
|
|
|
|
|
|
|
|
config BR2_KERNEL_HEADERS_3_11
|
|
|
|
bool "kernel headers version 3.11.x are no longer supported"
|
|
|
|
select BR2_KERNEL_HEADERS_3_12
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
Version 3.11.x of the Linux kernel headers have been deprecated
|
|
|
|
for more than four buildroot releases and are now removed.
|
|
|
|
As an alternative, version 3.12.x of the headers have been
|
|
|
|
automatically selected in your configuration.
|
|
|
|
|
|
|
|
config BR2_KERNEL_HEADERS_3_13
|
|
|
|
bool "kernel headers version 3.13.x are no longer supported"
|
|
|
|
select BR2_KERNEL_HEADERS_3_14
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
Version 3.13.x of the Linux kernel headers have been deprecated
|
|
|
|
for more than four buildroot releases and are now removed.
|
|
|
|
As an alternative, version 3.14.x of the headers have been
|
|
|
|
automatically selected in your configuration.
|
|
|
|
|
|
|
|
config BR2_KERNEL_HEADERS_3_15
|
|
|
|
bool "kernel headers version 3.15.x are no longer supported"
|
|
|
|
select BR2_KERNEL_HEADERS_3_18
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
Version 3.15.x of the Linux kernel headers have been deprecated
|
|
|
|
for more than four buildroot releases and are now removed.
|
|
|
|
As an alternative, version 3.18.x of the headers have been
|
|
|
|
automatically selected in your configuration.
|
|
|
|
|
2015-09-02 06:01:14 +08:00
|
|
|
config BR2_PACKAGE_DIRECTFB_EXAMPLES_ANDI
|
|
|
|
bool "DirectFB example df_andi has been removed"
|
2015-10-08 05:56:49 +08:00
|
|
|
select BR2_LEGACY
|
2015-09-02 06:01:14 +08:00
|
|
|
select BR2_PACKAGE_DIRECTFB_EXAMPLES
|
|
|
|
help
|
|
|
|
The per-DirectFB example options have been removed. The
|
|
|
|
BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
|
|
|
|
examples.
|
|
|
|
|
|
|
|
config BR2_PACKAGE_DIRECTFB_EXAMPLES_BLTLOAD
|
|
|
|
bool "DirectFB example df_bltload has been removed"
|
2015-10-08 05:56:49 +08:00
|
|
|
select BR2_LEGACY
|
2015-09-02 06:01:14 +08:00
|
|
|
select BR2_PACKAGE_DIRECTFB_EXAMPLES
|
|
|
|
help
|
|
|
|
The per-DirectFB example options have been removed. The
|
|
|
|
BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
|
|
|
|
examples.
|
|
|
|
|
|
|
|
config BR2_PACKAGE_DIRECTFB_EXAMPLES_CPULOAD
|
|
|
|
bool "DirectFB example df_cpuload has been removed"
|
2015-10-08 05:56:49 +08:00
|
|
|
select BR2_LEGACY
|
2015-09-02 06:01:14 +08:00
|
|
|
select BR2_PACKAGE_DIRECTFB_EXAMPLES
|
|
|
|
help
|
|
|
|
The per-DirectFB example options have been removed. The
|
|
|
|
BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
|
|
|
|
examples.
|
|
|
|
|
|
|
|
config BR2_PACKAGE_DIRECTFB_EXAMPLES_DATABUFFER
|
|
|
|
bool "DirectFB example df_databuffer has been removed"
|
2015-10-08 05:56:49 +08:00
|
|
|
select BR2_LEGACY
|
2015-09-02 06:01:14 +08:00
|
|
|
select BR2_PACKAGE_DIRECTFB_EXAMPLES
|
|
|
|
help
|
|
|
|
The per-DirectFB example options have been removed. The
|
|
|
|
BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
|
|
|
|
examples.
|
|
|
|
|
|
|
|
config BR2_PACKAGE_DIRECTFB_EXAMPLES_DIOLOAD
|
|
|
|
bool "DirectFB example df_dioload has been removed"
|
2015-10-08 05:56:49 +08:00
|
|
|
select BR2_LEGACY
|
2015-09-02 06:01:14 +08:00
|
|
|
select BR2_PACKAGE_DIRECTFB_EXAMPLES
|
|
|
|
help
|
|
|
|
The per-DirectFB example options have been removed. The
|
|
|
|
BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
|
|
|
|
examples.
|
|
|
|
|
|
|
|
config BR2_PACKAGE_DIRECTFB_EXAMPLES_DOK
|
|
|
|
bool "DirectFB example df_dok has been removed"
|
2015-10-08 05:56:49 +08:00
|
|
|
select BR2_LEGACY
|
2015-09-02 06:01:14 +08:00
|
|
|
select BR2_PACKAGE_DIRECTFB_EXAMPLES
|
|
|
|
help
|
|
|
|
The per-DirectFB example options have been removed. The
|
|
|
|
BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
|
|
|
|
examples.
|
|
|
|
|
|
|
|
config BR2_PACKAGE_DIRECTFB_EXAMPLES_DRIVERTEST
|
|
|
|
bool "DirectFB example df_drivertest has been removed"
|
2015-10-08 05:56:49 +08:00
|
|
|
select BR2_LEGACY
|
2015-09-02 06:01:14 +08:00
|
|
|
select BR2_PACKAGE_DIRECTFB_EXAMPLES
|
|
|
|
help
|
|
|
|
The per-DirectFB example options have been removed. The
|
|
|
|
BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
|
|
|
|
examples.
|
|
|
|
|
|
|
|
config BR2_PACKAGE_DIRECTFB_EXAMPLES_FIRE
|
|
|
|
bool "DirectFB example df_fire has been removed"
|
2015-10-08 05:56:49 +08:00
|
|
|
select BR2_LEGACY
|
2015-09-02 06:01:14 +08:00
|
|
|
select BR2_PACKAGE_DIRECTFB_EXAMPLES
|
|
|
|
help
|
|
|
|
The per-DirectFB example options have been removed. The
|
|
|
|
BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
|
|
|
|
examples.
|
|
|
|
|
|
|
|
config BR2_PACKAGE_DIRECTFB_EXAMPLES_FLIP
|
|
|
|
bool "DirectFB example df_flip has been removed"
|
2015-10-08 05:56:49 +08:00
|
|
|
select BR2_LEGACY
|
2015-09-02 06:01:14 +08:00
|
|
|
select BR2_PACKAGE_DIRECTFB_EXAMPLES
|
|
|
|
help
|
|
|
|
The per-DirectFB example options have been removed. The
|
|
|
|
BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
|
|
|
|
examples.
|
|
|
|
|
|
|
|
config BR2_PACKAGE_DIRECTFB_EXAMPLES_FONTS
|
|
|
|
bool "DirectFB example df_fonts has been removed"
|
2015-10-08 05:56:49 +08:00
|
|
|
select BR2_LEGACY
|
2015-09-02 06:01:14 +08:00
|
|
|
select BR2_PACKAGE_DIRECTFB_EXAMPLES
|
|
|
|
help
|
|
|
|
The per-DirectFB example options have been removed. The
|
|
|
|
BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
|
|
|
|
examples.
|
|
|
|
|
|
|
|
config BR2_PACKAGE_DIRECTFB_EXAMPLES_INPUT
|
|
|
|
bool "DirectFB example df_input has been removed"
|
2015-10-08 05:56:49 +08:00
|
|
|
select BR2_LEGACY
|
2015-09-02 06:01:14 +08:00
|
|
|
select BR2_PACKAGE_DIRECTFB_EXAMPLES
|
|
|
|
help
|
|
|
|
The per-DirectFB example options have been removed. The
|
|
|
|
BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
|
|
|
|
examples.
|
|
|
|
|
|
|
|
config BR2_PACKAGE_DIRECTFB_EXAMPLES_JOYSTICK
|
|
|
|
bool "DirectFB example df_joystick has been removed"
|
2015-10-08 05:56:49 +08:00
|
|
|
select BR2_LEGACY
|
2015-09-02 06:01:14 +08:00
|
|
|
select BR2_PACKAGE_DIRECTFB_EXAMPLES
|
|
|
|
help
|
|
|
|
The per-DirectFB example options have been removed. The
|
|
|
|
BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
|
|
|
|
examples.
|
|
|
|
|
|
|
|
config BR2_PACKAGE_DIRECTFB_EXAMPLES_KNUCKLES
|
|
|
|
bool "DirectFB example df_knuckles has been removed"
|
2015-10-08 05:56:49 +08:00
|
|
|
select BR2_LEGACY
|
2015-09-02 06:01:14 +08:00
|
|
|
select BR2_PACKAGE_DIRECTFB_EXAMPLES
|
|
|
|
help
|
|
|
|
The per-DirectFB example options have been removed. The
|
|
|
|
BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
|
|
|
|
examples.
|
|
|
|
|
|
|
|
config BR2_PACKAGE_DIRECTFB_EXAMPLES_LAYER
|
|
|
|
bool "DirectFB example df_layer has been removed"
|
2015-10-08 05:56:49 +08:00
|
|
|
select BR2_LEGACY
|
2015-09-02 06:01:14 +08:00
|
|
|
select BR2_PACKAGE_DIRECTFB_EXAMPLES
|
|
|
|
help
|
|
|
|
The per-DirectFB example options have been removed. The
|
|
|
|
BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
|
|
|
|
examples.
|
|
|
|
|
|
|
|
config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX
|
|
|
|
bool "DirectFB example df_matrix has been removed"
|
2015-10-08 05:56:49 +08:00
|
|
|
select BR2_LEGACY
|
2015-09-02 06:01:14 +08:00
|
|
|
select BR2_PACKAGE_DIRECTFB_EXAMPLES
|
|
|
|
help
|
|
|
|
The per-DirectFB example options have been removed. The
|
|
|
|
BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
|
|
|
|
examples.
|
|
|
|
|
|
|
|
config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX_WATER
|
|
|
|
bool "DirectFB example df_matrix_water has been removed"
|
2015-10-08 05:56:49 +08:00
|
|
|
select BR2_LEGACY
|
2015-09-02 06:01:14 +08:00
|
|
|
select BR2_PACKAGE_DIRECTFB_EXAMPLES
|
|
|
|
help
|
|
|
|
The per-DirectFB example options have been removed. The
|
|
|
|
BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
|
|
|
|
examples.
|
|
|
|
|
|
|
|
config BR2_PACKAGE_DIRECTFB_EXAMPLES_NEO
|
|
|
|
bool "DirectFB example df_neo has been removed"
|
2015-10-08 05:56:49 +08:00
|
|
|
select BR2_LEGACY
|
2015-09-02 06:01:14 +08:00
|
|
|
select BR2_PACKAGE_DIRECTFB_EXAMPLES
|
|
|
|
help
|
|
|
|
The per-DirectFB example options have been removed. The
|
|
|
|
BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
|
|
|
|
examples.
|
|
|
|
|
|
|
|
config BR2_PACKAGE_DIRECTFB_EXAMPLES_NETLOAD
|
|
|
|
bool "DirectFB example df_netload has been removed"
|
2015-10-08 05:56:49 +08:00
|
|
|
select BR2_LEGACY
|
2015-09-02 06:01:14 +08:00
|
|
|
select BR2_PACKAGE_DIRECTFB_EXAMPLES
|
|
|
|
help
|
|
|
|
The per-DirectFB example options have been removed. The
|
|
|
|
BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
|
|
|
|
examples.
|
|
|
|
|
|
|
|
config BR2_PACKAGE_DIRECTFB_EXAMPLES_PALETTE
|
|
|
|
bool "DirectFB example df_palette has been removed"
|
|
|
|
select BR2_PACKAGE_DIRECTFB_EXAMPLES
|
|
|
|
help
|
|
|
|
The per-DirectFB example options have been removed. The
|
|
|
|
BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
|
|
|
|
examples.
|
|
|
|
|
|
|
|
config BR2_PACKAGE_DIRECTFB_EXAMPLES_PARTICLE
|
|
|
|
bool "DirectFB example df_particle has been removed"
|
2015-10-08 05:56:49 +08:00
|
|
|
select BR2_LEGACY
|
2015-09-02 06:01:14 +08:00
|
|
|
select BR2_PACKAGE_DIRECTFB_EXAMPLES
|
|
|
|
help
|
|
|
|
The per-DirectFB example options have been removed. The
|
|
|
|
BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
|
|
|
|
examples.
|
|
|
|
|
|
|
|
config BR2_PACKAGE_DIRECTFB_EXAMPLES_PORTER
|
|
|
|
bool "DirectFB example df_porter has been removed"
|
2015-10-08 05:56:49 +08:00
|
|
|
select BR2_LEGACY
|
2015-09-02 06:01:14 +08:00
|
|
|
select BR2_PACKAGE_DIRECTFB_EXAMPLES
|
|
|
|
help
|
|
|
|
The per-DirectFB example options have been removed. The
|
|
|
|
BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
|
|
|
|
examples.
|
|
|
|
|
|
|
|
config BR2_PACKAGE_DIRECTFB_EXAMPLES_STRESS
|
|
|
|
bool "DirectFB example df_stress has been removed"
|
|
|
|
select BR2_PACKAGE_DIRECTFB_EXAMPLES
|
|
|
|
help
|
|
|
|
The per-DirectFB example options have been removed. The
|
|
|
|
BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
|
|
|
|
examples.
|
|
|
|
|
|
|
|
config BR2_PACKAGE_DIRECTFB_EXAMPLES_TEXTURE
|
|
|
|
bool "DirectFB example df_texture has been removed"
|
2015-10-08 05:56:49 +08:00
|
|
|
select BR2_LEGACY
|
2015-09-02 06:01:14 +08:00
|
|
|
select BR2_PACKAGE_DIRECTFB_EXAMPLES
|
|
|
|
help
|
|
|
|
The per-DirectFB example options have been removed. The
|
|
|
|
BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
|
|
|
|
examples.
|
|
|
|
|
|
|
|
config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO
|
|
|
|
bool "DirectFB example df_video has been removed"
|
2015-10-08 05:56:49 +08:00
|
|
|
select BR2_LEGACY
|
2015-09-02 06:01:14 +08:00
|
|
|
select BR2_PACKAGE_DIRECTFB_EXAMPLES
|
|
|
|
help
|
|
|
|
The per-DirectFB example options have been removed. The
|
|
|
|
BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
|
|
|
|
examples.
|
|
|
|
|
|
|
|
config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO_PARTICLE
|
|
|
|
bool "DirectFB example df_video_particle has been removed"
|
2015-10-08 05:56:49 +08:00
|
|
|
select BR2_LEGACY
|
2015-09-02 06:01:14 +08:00
|
|
|
select BR2_PACKAGE_DIRECTFB_EXAMPLES
|
|
|
|
help
|
|
|
|
The per-DirectFB example options have been removed. The
|
|
|
|
BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
|
|
|
|
examples.
|
|
|
|
|
|
|
|
config BR2_PACKAGE_DIRECTFB_EXAMPLES_WINDOW
|
|
|
|
bool "DirectFB example df_window has been removed"
|
2015-10-08 05:56:49 +08:00
|
|
|
select BR2_LEGACY
|
2015-09-02 06:01:14 +08:00
|
|
|
select BR2_PACKAGE_DIRECTFB_EXAMPLES
|
|
|
|
help
|
|
|
|
The per-DirectFB example options have been removed. The
|
|
|
|
BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
|
|
|
|
examples.
|
|
|
|
|
2015-09-23 21:39:27 +08:00
|
|
|
config BR2_PACKAGE_KOBS_NG
|
|
|
|
bool "kobs-ng was replaced by imx-kobs"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_PACKAGE_IMX_KOBS
|
|
|
|
help
|
|
|
|
The outdated kobs-ng has been replaced by the Freescale-
|
|
|
|
maintained imx-kobs package.
|
|
|
|
|
2015-09-02 06:01:11 +08:00
|
|
|
config BR2_PACKAGE_SAWMAN
|
|
|
|
bool "sawman package removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_PACKAGE_DIRECTFB_SAWMAN
|
|
|
|
help
|
|
|
|
This option has been removed because the sawman package no
|
|
|
|
longer exists: it was merged inside DirectFB itself. This
|
|
|
|
feature can now be enabled using the
|
|
|
|
BR2_PACKAGE_DIRECTFB_SAWMAN option.
|
|
|
|
|
2015-09-02 06:01:10 +08:00
|
|
|
config BR2_PACKAGE_DIVINE
|
|
|
|
bool "divine package removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_PACKAGE_DIRECTFB_DIVINE
|
|
|
|
help
|
|
|
|
This option has been removed because the divine package no
|
|
|
|
longer exists: it was merged inside DirectFB itself. This
|
|
|
|
feature can now be enabled using the
|
|
|
|
BR2_PACKAGE_DIRECTFB_DIVINE option.
|
|
|
|
|
|
|
|
###############################################################################
|
2015-06-03 01:52:12 +08:00
|
|
|
comment "Legacy options removed in 2015.08"
|
|
|
|
|
2015-07-23 04:30:34 +08:00
|
|
|
config BR2_PACKAGE_KODI_PVR_ADDONS
|
|
|
|
bool "Kodi PVR addon was split"
|
|
|
|
select BR2_LEGACY
|
2015-07-23 04:30:36 +08:00
|
|
|
select BR2_PACKAGE_KODI_PVR_ARGUSTV
|
2015-07-23 04:30:37 +08:00
|
|
|
select BR2_PACKAGE_KODI_PVR_DVBLINK
|
2015-07-23 04:30:38 +08:00
|
|
|
select BR2_PACKAGE_KODI_PVR_DVBVIEWER
|
2015-07-23 04:30:39 +08:00
|
|
|
select BR2_PACKAGE_KODI_PVR_FILMON
|
2015-07-23 04:30:40 +08:00
|
|
|
select BR2_PACKAGE_KODI_PVR_HTS
|
2015-07-23 04:30:41 +08:00
|
|
|
select BR2_PACKAGE_KODI_PVR_IPTVSIMPLE
|
2015-07-23 04:30:42 +08:00
|
|
|
select BR2_PACKAGE_KODI_PVR_MEDIAPORTAL_TVSERVER
|
2015-07-23 04:30:43 +08:00
|
|
|
select BR2_PACKAGE_KODI_PVR_MYTHTV
|
2015-07-23 04:30:44 +08:00
|
|
|
select BR2_PACKAGE_KODI_PVR_NEXTPVR
|
2015-07-23 04:30:45 +08:00
|
|
|
select BR2_PACKAGE_KODI_PVR_NJOY
|
2015-07-23 04:30:46 +08:00
|
|
|
select BR2_PACKAGE_KODI_PVR_PCTV
|
2015-07-23 04:30:47 +08:00
|
|
|
select BR2_PACKAGE_KODI_PVR_STALKER
|
2015-07-23 04:30:48 +08:00
|
|
|
select BR2_PACKAGE_KODI_PVR_VBOX
|
2015-07-23 04:30:49 +08:00
|
|
|
select BR2_PACKAGE_KODI_PVR_VDR_VNSI
|
2015-07-23 04:30:50 +08:00
|
|
|
select BR2_PACKAGE_KODI_PVR_VUPLUS
|
2015-07-23 04:30:51 +08:00
|
|
|
select BR2_PACKAGE_KODI_PVR_WMC
|
2015-07-23 04:30:34 +08:00
|
|
|
help
|
|
|
|
Kodi PVR addon was split into seperate modules
|
|
|
|
|
2015-07-28 21:48:21 +08:00
|
|
|
config BR2_BINUTILS_VERSION_2_23_2
|
|
|
|
bool "binutils 2.23 option renamed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_BINUTILS_VERSION_2_23_X
|
|
|
|
help
|
|
|
|
The binutils version option has been renamed to match the
|
|
|
|
same patchlevel logic used by gcc. The new option is now
|
|
|
|
BR2_BINUTILS_VERSION_2_23_X.
|
|
|
|
|
|
|
|
config BR2_BINUTILS_VERSION_2_24
|
|
|
|
bool "binutils 2.24 option renamed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_BINUTILS_VERSION_2_24_X
|
|
|
|
help
|
|
|
|
The binutils version option has been renamed to match the
|
|
|
|
same patchlevel logic used by gcc. The new option is now
|
|
|
|
BR2_BINUTILS_VERSION_2_24_X.
|
|
|
|
|
|
|
|
config BR2_BINUTILS_VERSION_2_25
|
|
|
|
bool "binutils 2.25 option renamed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_BINUTILS_VERSION_2_25_X
|
|
|
|
help
|
|
|
|
The binutils version option has been renamed to match the
|
|
|
|
same patchlevel logic used by gcc. The new option is now
|
|
|
|
BR2_BINUTILS_VERSION_2_25_X.
|
|
|
|
|
2015-07-15 01:35:14 +08:00
|
|
|
config BR2_PACKAGE_PERF
|
|
|
|
bool "perf option has been renamed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_LINUX_KERNEL_TOOL_PERF
|
|
|
|
help
|
|
|
|
The perf package has been moved as a Linux tools package,
|
|
|
|
and the option to enable it is now
|
|
|
|
BR2_LINUX_KERNEL_TOOL_PERF.
|
|
|
|
|
2015-07-11 20:52:53 +08:00
|
|
|
config BR2_BINUTILS_VERSION_2_22
|
|
|
|
bool "binutils 2.22 removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
Binutils 2.22 has been removed, using a newer version is
|
|
|
|
recommended.
|
|
|
|
|
2015-05-26 16:19:37 +08:00
|
|
|
config BR2_PACKAGE_GPU_VIV_BIN_MX6Q
|
|
|
|
bool "gpu-viv-bin-mx6q"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_PACKAGE_IMX_GPU_VIV
|
|
|
|
help
|
|
|
|
Vivante graphics libraries have been renamed to
|
|
|
|
BR2_PACKAGE_IMX_GPU_VIV to be aligned with upstream package
|
|
|
|
name.
|
|
|
|
|
2015-06-02 21:28:35 +08:00
|
|
|
config BR2_PACKAGE_LIBSEMANAGE_PYTHON_BINDINGS
|
|
|
|
depends on BR2_PACKAGE_PYTHON
|
|
|
|
bool "libsemanage python bindings removed"
|
2015-10-08 05:56:49 +08:00
|
|
|
select BR2_LEGACY
|
2015-06-02 21:28:35 +08:00
|
|
|
help
|
|
|
|
This option has been removed, since the libsemanage Python
|
|
|
|
bindings on the target were not useful.
|
|
|
|
|
2015-06-03 01:52:12 +08:00
|
|
|
config BR2_TARGET_UBOOT_NETWORK
|
|
|
|
bool "U-Boot custom network settings removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
U-Boot's custom network settings options have been removed.
|
|
|
|
|
2014-09-22 02:38:09 +08:00
|
|
|
###############################################################################
|
2015-03-07 01:17:45 +08:00
|
|
|
comment "Legacy options removed in 2015.05"
|
2014-12-04 05:41:29 +08:00
|
|
|
|
2015-05-20 02:26:30 +08:00
|
|
|
config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_512_16K
|
|
|
|
bool "jffs2 16kB erasesize NAND flash option renamed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_16K
|
|
|
|
help
|
|
|
|
The JFFS2 NAND flash options now longer include the page
|
|
|
|
size.
|
|
|
|
|
|
|
|
config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_2K_128K
|
|
|
|
bool "jffs2 128kB erasesize NAND flash option renamed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_128K
|
|
|
|
help
|
|
|
|
The JFFS2 NAND flash options now longer include the page
|
|
|
|
size.
|
|
|
|
|
2015-04-30 22:03:15 +08:00
|
|
|
config BR2_PACKAGE_MONO_20
|
|
|
|
bool "2.0/3.5 .Net Runtime"
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
This option no longer exists, all versions of the .Net
|
|
|
|
runtime are now installed.
|
|
|
|
|
|
|
|
config BR2_PACKAGE_MONO_40
|
|
|
|
bool "4.0 .Net Runtime"
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
This option no longer exists, all versions of the .Net
|
|
|
|
runtime are now installed.
|
|
|
|
|
|
|
|
config BR2_PACKAGE_MONO_45
|
|
|
|
bool "4.5 .Net Runtime"
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
This option no longer exists, all versions of the .Net
|
|
|
|
runtime are now installed.
|
|
|
|
|
2015-04-28 04:29:05 +08:00
|
|
|
config BR2_CIVETWEB_WITH_LUA
|
|
|
|
bool "civetweb lua option renamed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_PACKAGE_CIVETWEB_WITH_LUA
|
|
|
|
help
|
|
|
|
civetweb's lua option has been renamed to
|
|
|
|
BR2_PACKAGE_CIVETWEB_WITH_LUA to be aligned with how other
|
|
|
|
packages name options.
|
|
|
|
|
2015-04-24 05:18:16 +08:00
|
|
|
config BR2_PACKAGE_TIFF_TIFF2PDF
|
|
|
|
bool "tiff utility-specific option removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_PACKAGE_TIFF_UTILITIES
|
|
|
|
help
|
|
|
|
utility-specific options have been removed in favour of
|
|
|
|
the new option BR2_PACKAGE_TIFF_UTILITIES.
|
|
|
|
|
|
|
|
config BR2_PACKAGE_TIFF_TIFFCP
|
|
|
|
bool "tiff utility-specific option removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_PACKAGE_TIFF_UTILITIES
|
|
|
|
help
|
|
|
|
utility-specific options have been removed in favour of
|
|
|
|
the new option BR2_PACKAGE_TIFF_UTILITIES.
|
|
|
|
|
rtai: remove option BR2_LINUX_KERNEL_EXT_RTAI_PATCH
This commit removes BR2_LINUX_KERNEL_EXT_RTAI_PATCH because this
option never worked. It was added in commit
8797a9cd1fe6723db34b0c125d0d9d04e3483e8d, which added package/rtai/
and RTAI as a Linux extension.
The option prompt says "Path for RTAI patch file", so let's say you
specify /home/foo/bar/myrtai.patch as the value for
BR2_LINUX_KERNEL_EXT_RTAI_PATCH.
Then the code does:
RTAI_PATCH = $(call qstrip,$(BR2_LINUX_KERNEL_EXT_RTAI_PATCH))
and we have a package called 'rtai', so the normal logic of
<pkg>_PATCH applies. Since the <pkg>_PATCH value does not contain
ftp://, http:// or https://, the package infrastructure will try to
download $(RTAI_SITE)/$(RTAI_PATCH), i.e:
https://www.rtai.org/userfiles/downloads/RTAI/home/foo/bar/myrtai.patch
Pretty clear that it has no chance of working.
Now, let's assume an URL is used as the value of
BR2_LINUX_KERNEL_EXT_RTAI_PATCH, such as
http://foo.com/bar/myrtai.patch. In this case, it will be properly
downloaded by the package infrastructure. But then, the following code
kicks in:
define RTAI_PREPARE_KERNEL
$(APPLY_PATCHES) \
$(LINUX_DIR) \
$(dir $(RTAI_PATCH)) \
$(notdir $(RTAI_PATCH))
endef
The value of $(dir $(RTAI_PATCH)) will be http://foo.com/bar/. How
can $(APPLY_PATCHES) make use of such a stupid patch location?
[Thomas: add Config.in.legacy handling, as suggested by Arnout, even
if we believe that no-one could have ever used this option.]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
2015-04-22 05:36:28 +08:00
|
|
|
config BR2_LINUX_KERNEL_EXT_RTAI_PATCH
|
|
|
|
bool "RTAI patch file path has been removed"
|
2015-10-08 05:56:49 +08:00
|
|
|
select BR2_LEGACY
|
rtai: remove option BR2_LINUX_KERNEL_EXT_RTAI_PATCH
This commit removes BR2_LINUX_KERNEL_EXT_RTAI_PATCH because this
option never worked. It was added in commit
8797a9cd1fe6723db34b0c125d0d9d04e3483e8d, which added package/rtai/
and RTAI as a Linux extension.
The option prompt says "Path for RTAI patch file", so let's say you
specify /home/foo/bar/myrtai.patch as the value for
BR2_LINUX_KERNEL_EXT_RTAI_PATCH.
Then the code does:
RTAI_PATCH = $(call qstrip,$(BR2_LINUX_KERNEL_EXT_RTAI_PATCH))
and we have a package called 'rtai', so the normal logic of
<pkg>_PATCH applies. Since the <pkg>_PATCH value does not contain
ftp://, http:// or https://, the package infrastructure will try to
download $(RTAI_SITE)/$(RTAI_PATCH), i.e:
https://www.rtai.org/userfiles/downloads/RTAI/home/foo/bar/myrtai.patch
Pretty clear that it has no chance of working.
Now, let's assume an URL is used as the value of
BR2_LINUX_KERNEL_EXT_RTAI_PATCH, such as
http://foo.com/bar/myrtai.patch. In this case, it will be properly
downloaded by the package infrastructure. But then, the following code
kicks in:
define RTAI_PREPARE_KERNEL
$(APPLY_PATCHES) \
$(LINUX_DIR) \
$(dir $(RTAI_PATCH)) \
$(notdir $(RTAI_PATCH))
endef
The value of $(dir $(RTAI_PATCH)) will be http://foo.com/bar/. How
can $(APPLY_PATCHES) make use of such a stupid patch location?
[Thomas: add Config.in.legacy handling, as suggested by Arnout, even
if we believe that no-one could have ever used this option.]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
2015-04-22 05:36:28 +08:00
|
|
|
help
|
|
|
|
This option has never worked, so it has been removed.
|
|
|
|
|
2015-03-25 02:54:15 +08:00
|
|
|
config BR2_TARGET_GENERIC_PASSWD_DES
|
|
|
|
bool "Encoding passwords with DES has been removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
Paswords can now only be encoded with either of md5, sha256 or sha512.
|
|
|
|
The default is md5, which is stronger that DES (but still pretty weak).
|
|
|
|
|
2015-04-01 16:56:24 +08:00
|
|
|
config BR2_PACKAGE_GTK2_THEME_HICOLOR
|
|
|
|
bool "hicolor (default theme) is a duplicate"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_PACKAGE_HICOLOR_ICON_THEME
|
|
|
|
help
|
|
|
|
The option was just a duplicate of hicolor icon theme.
|
|
|
|
|
2015-03-07 01:17:45 +08:00
|
|
|
config BR2_PACKAGE_VALGRIND_PTRCHECK
|
|
|
|
bool "valgrind's PTRCheck was renamed to SGCheck"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_PACKAGE_VALGRIND_SGCHECK
|
|
|
|
help
|
|
|
|
PTRCheck was renamed to SGCheck in valgrind
|
|
|
|
|
|
|
|
###############################################################################
|
2014-12-04 05:41:29 +08:00
|
|
|
comment "Legacy options removed in 2015.02"
|
|
|
|
|
2015-02-27 12:38:07 +08:00
|
|
|
config BR2_PACKAGE_LIBGC
|
|
|
|
bool "libgc package removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_PACKAGE_BDWGC
|
|
|
|
help
|
|
|
|
libgc has been removed because we have the same package under a
|
|
|
|
different name, bdwgc.
|
|
|
|
|
2015-02-08 06:10:14 +08:00
|
|
|
config BR2_PACKAGE_WDCTL
|
|
|
|
bool "util-linux' wdctl option has been renamed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_PACKAGE_UTIL_LINUX_WDCTL
|
|
|
|
help
|
|
|
|
util-linux' wdctl option has been renamed to BR2_PACKAGE_UTIL_LINUX_WDCTL
|
|
|
|
to be aligned with how the other options are named.
|
|
|
|
|
2015-07-14 10:57:06 +08:00
|
|
|
config BR2_PACKAGE_UTIL_LINUX_ARCH
|
|
|
|
bool "util-linux' arch option has been removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
util-linux' arch was dropped in util-linux 2.23, in favor of
|
|
|
|
the coreutils version.
|
|
|
|
|
|
|
|
config BR2_PACKAGE_UTIL_LINUX_DDATE
|
|
|
|
bool "util-linux' ddate option has been removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
util-linux' ddate was dropped in util-linux 2.23.
|
|
|
|
|
2015-01-19 03:53:08 +08:00
|
|
|
config BR2_PACKAGE_RPM_BZIP2_PAYLOADS
|
|
|
|
bool "rpm's bzip2 payloads option has been removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_PACKAGE_BZIP2
|
|
|
|
help
|
|
|
|
The bzip2 payloads option rely entirely on the dependant package bzip2.
|
|
|
|
So, you need to select it to enable this feature.
|
|
|
|
|
|
|
|
config BR2_PACKAGE_RPM_XZ_PAYLOADS
|
|
|
|
bool "rpm's xz payloads option has been removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_PACKAGE_XZ
|
|
|
|
help
|
|
|
|
The xz payloads option rely entirely on the dependant package xz.
|
|
|
|
So, you need to select it to enable this feature.
|
|
|
|
|
2015-01-15 22:30:22 +08:00
|
|
|
config BR2_PACKAGE_M4
|
|
|
|
bool "m4 target package removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
The m4 target package has been removed, it's been
|
|
|
|
deprecated for some time now.
|
|
|
|
|
2015-01-15 22:30:21 +08:00
|
|
|
config BR2_PACKAGE_FLEX_BINARY
|
|
|
|
bool "flex binary in target option removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
The flex binary in the target option has been removed.
|
|
|
|
It's been deprecated for some time now and is essentially a
|
|
|
|
development tool which isn't very useful in the target.
|
|
|
|
|
2015-01-15 22:30:19 +08:00
|
|
|
config BR2_PACKAGE_BISON
|
|
|
|
bool "bison target package removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
The bison target package has been removed, it's been
|
|
|
|
deprecated for some time now and is essentially a development
|
|
|
|
tool which isn't very useful in the target.
|
|
|
|
|
2015-01-15 22:30:18 +08:00
|
|
|
config BR2_PACKAGE_GOB2
|
|
|
|
bool "gob2 target package removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
The gob2 target package has been removed, it's been
|
|
|
|
deprecated for some time now and was essentially useless
|
|
|
|
without a target toolchain.
|
|
|
|
|
2015-01-15 22:30:17 +08:00
|
|
|
config BR2_PACKAGE_DISTCC
|
|
|
|
bool "distcc target package removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
The distcc target package has been removed, it's been
|
|
|
|
deprecated for some time now and was essentially useless
|
|
|
|
without a target toolchain.
|
|
|
|
|
2015-01-15 22:30:16 +08:00
|
|
|
config BR2_PACKAGE_HASERL_VERSION_0_8_X
|
|
|
|
bool "haserl 0.8.x version removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
The 0.8.x version option for haserl has been removed since it
|
|
|
|
has been deprecated for some time now.
|
|
|
|
You should be able to use the 0.9.x version without issues.
|
|
|
|
|
2015-01-06 18:35:41 +08:00
|
|
|
config BR2_PACKAGE_STRONGSWAN_TOOLS
|
|
|
|
bool "strongswan option has been removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_PACKAGE_STRONGSWAN_PKI
|
|
|
|
select BR2_PACKAGE_STRONGSWAN_SCEP
|
|
|
|
help
|
|
|
|
The tools option has been removed upstream and the different tools
|
|
|
|
have been split between the pki and scep options, with others
|
|
|
|
deprecated.
|
|
|
|
|
2014-12-24 01:46:33 +08:00
|
|
|
config BR2_PACKAGE_XBMC_ADDON_XVDR
|
|
|
|
bool "xbmc options have been renamed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_PACKAGE_KODI_ADDON_XVDR
|
|
|
|
help
|
|
|
|
The XBMC media center project was renamed to Kodi entertainment center
|
|
|
|
|
2014-12-24 01:46:30 +08:00
|
|
|
config BR2_PACKAGE_XBMC_PVR_ADDONS
|
|
|
|
bool "xbmc options have been renamed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_PACKAGE_KODI_PVR_ADDONS
|
|
|
|
help
|
|
|
|
The XBMC media center project was renamed to Kodi entertainment center
|
|
|
|
|
2014-12-24 01:46:27 +08:00
|
|
|
config BR2_PACKAGE_XBMC
|
|
|
|
bool "xbmc options have been renamed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_PACKAGE_KODI
|
|
|
|
help
|
|
|
|
The XBMC media center project was renamed to Kodi entertainment center
|
|
|
|
|
|
|
|
config BR2_PACKAGE_XBMC_ALSA_LIB
|
|
|
|
bool "xbmc options have been renamed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_PACKAGE_KODI_ALSA_LIB
|
|
|
|
help
|
|
|
|
The XBMC media center project was renamed to Kodi entertainment center
|
|
|
|
|
|
|
|
config BR2_PACKAGE_XBMC_AVAHI
|
|
|
|
bool "xbmc options have been renamed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_PACKAGE_KODI_AVAHI
|
|
|
|
help
|
|
|
|
The XBMC media center project was renamed to Kodi entertainment center
|
|
|
|
|
|
|
|
config BR2_PACKAGE_XBMC_DBUS
|
|
|
|
bool "xbmc options have been renamed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_PACKAGE_KODI_DBUS
|
|
|
|
help
|
|
|
|
The XBMC media center project was renamed to Kodi entertainment center
|
|
|
|
|
|
|
|
config BR2_PACKAGE_XBMC_LIBBLURAY
|
|
|
|
bool "xbmc options have been renamed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_PACKAGE_KODI_LIBBLURAY
|
|
|
|
help
|
|
|
|
The XBMC media center project was renamed to Kodi entertainment center
|
|
|
|
|
|
|
|
config BR2_PACKAGE_XBMC_GOOM
|
|
|
|
bool "xbmc options have been renamed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_PACKAGE_KODI_GOOM
|
|
|
|
help
|
|
|
|
The XBMC media center project was renamed to Kodi entertainment center
|
|
|
|
|
|
|
|
config BR2_PACKAGE_XBMC_RSXS
|
|
|
|
bool "xbmc options have been renamed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_PACKAGE_KODI_RSXS
|
|
|
|
help
|
|
|
|
The XBMC media center project was renamed to Kodi entertainment center
|
|
|
|
|
|
|
|
config BR2_PACKAGE_XBMC_LIBCEC
|
|
|
|
bool "xbmc options have been renamed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_PACKAGE_KODI_LIBCEC
|
|
|
|
help
|
|
|
|
The XBMC media center project was renamed to Kodi entertainment center
|
|
|
|
|
|
|
|
config BR2_PACKAGE_XBMC_LIBMICROHTTPD
|
|
|
|
bool "xbmc options have been renamed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_PACKAGE_KODI_LIBMICROHTTPD
|
|
|
|
help
|
|
|
|
The XBMC media center project was renamed to Kodi entertainment center
|
|
|
|
|
|
|
|
config BR2_PACKAGE_XBMC_LIBNFS
|
|
|
|
bool "xbmc options have been renamed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_PACKAGE_KODI_LIBNFS
|
|
|
|
help
|
|
|
|
The XBMC media center project was renamed to Kodi entertainment center
|
|
|
|
|
|
|
|
config BR2_PACKAGE_XBMC_RTMPDUMP
|
|
|
|
bool "xbmc options have been renamed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_PACKAGE_KODI_RTMPDUMP
|
|
|
|
help
|
|
|
|
The XBMC media center project was renamed to Kodi entertainment center
|
|
|
|
|
|
|
|
config BR2_PACKAGE_XBMC_LIBSHAIRPLAY
|
|
|
|
bool "xbmc options have been renamed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_PACKAGE_KODI_LIBSHAIRPLAY
|
|
|
|
help
|
|
|
|
The XBMC media center project was renamed to Kodi entertainment center
|
|
|
|
|
|
|
|
config BR2_PACKAGE_XBMC_LIBSMBCLIENT
|
|
|
|
bool "xbmc options have been renamed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_PACKAGE_KODI_LIBSMBCLIENT
|
|
|
|
help
|
|
|
|
The XBMC media center project was renamed to Kodi entertainment center
|
|
|
|
|
|
|
|
config BR2_PACKAGE_XBMC_LIBTHEORA
|
|
|
|
bool "xbmc options have been renamed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_PACKAGE_KODI_LIBTHEORA
|
|
|
|
help
|
|
|
|
The XBMC media center project was renamed to Kodi entertainment center
|
|
|
|
|
|
|
|
config BR2_PACKAGE_XBMC_LIBUSB
|
|
|
|
bool "xbmc options have been renamed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_PACKAGE_KODI_LIBUSB
|
|
|
|
help
|
|
|
|
The XBMC media center project was renamed to Kodi entertainment center
|
|
|
|
|
|
|
|
config BR2_PACKAGE_XBMC_LIBVA
|
|
|
|
bool "xbmc options have been renamed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_PACKAGE_KODI_LIBVA
|
|
|
|
help
|
|
|
|
The XBMC media center project was renamed to Kodi entertainment center
|
|
|
|
|
|
|
|
config BR2_PACKAGE_XBMC_WAVPACK
|
|
|
|
bool "xbmc options have been renamed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_PACKAGE_KODI_WAVPACK
|
|
|
|
help
|
|
|
|
The XBMC media center project was renamed to Kodi entertainment center
|
|
|
|
|
2014-12-04 05:41:29 +08:00
|
|
|
config BR2_PREFER_STATIC_LIB
|
|
|
|
bool "static library option renamed"
|
legacy: update the BR2_PREFER_STATIC_LIB option
Since the refactoring of the type of libraries in the target filesystem,
these options belong to a choice, and the default is "shared only".
The former option BR2_PREFER_STATIC_LIB has been moved in the legacy
menu, and only selects the BR2_STATIC_LIBS ("static only") option.
However, because BR2_STATIC_LIBS belongs to a choice, when
BR2_PREFER_STATIC_LIB is selected, it does not affect the choice.
So, existing Buildroot configurations, which have BR2_PREFER_STATIC_LIB
set, will silently end with BR2_SHARED_LIBS ("shared only") enabled.
So, the backward compatibility is not kept.
Besides, the legacy BR2_PREFER_STATIC_LIB option does not select
BR2_LEGACY, so the user is not notified of this legacy option, and the
build silently continues with some undesired changes.
This patch removes the inefficient BR2_STATIC_LIBS selection, correctly
selects the BR2_LEGACY option and extend the help message so the user
can easily know how to update his/her Buildroot configuration.
Signed-off-by: Samuel Martin <s.martin49@gmail.com>
Cc: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2014-12-15 00:24:24 +08:00
|
|
|
select BR2_LEGACY
|
2014-12-04 05:41:29 +08:00
|
|
|
help
|
|
|
|
The BR2_PREFER_STATIC_LIB was renamed to BR2_STATIC_LIBS. It
|
|
|
|
highlights the fact that the option no longer "prefers"
|
|
|
|
static libraries, but "enforces" static libraries (i.e
|
|
|
|
shared libraries are completely unused).
|
|
|
|
|
legacy: update the BR2_PREFER_STATIC_LIB option
Since the refactoring of the type of libraries in the target filesystem,
these options belong to a choice, and the default is "shared only".
The former option BR2_PREFER_STATIC_LIB has been moved in the legacy
menu, and only selects the BR2_STATIC_LIBS ("static only") option.
However, because BR2_STATIC_LIBS belongs to a choice, when
BR2_PREFER_STATIC_LIB is selected, it does not affect the choice.
So, existing Buildroot configurations, which have BR2_PREFER_STATIC_LIB
set, will silently end with BR2_SHARED_LIBS ("shared only") enabled.
So, the backward compatibility is not kept.
Besides, the legacy BR2_PREFER_STATIC_LIB option does not select
BR2_LEGACY, so the user is not notified of this legacy option, and the
build silently continues with some undesired changes.
This patch removes the inefficient BR2_STATIC_LIBS selection, correctly
selects the BR2_LEGACY option and extend the help message so the user
can easily know how to update his/her Buildroot configuration.
Signed-off-by: Samuel Martin <s.martin49@gmail.com>
Cc: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2014-12-15 00:24:24 +08:00
|
|
|
Take care of updating the type of libraries you want under the
|
|
|
|
"Build options" menu.
|
|
|
|
|
2014-12-24 01:46:27 +08:00
|
|
|
###############################################################################
|
2014-09-22 02:38:09 +08:00
|
|
|
comment "Legacy options removed in 2014.11"
|
|
|
|
|
2014-11-09 07:15:24 +08:00
|
|
|
config BR2_x86_generic
|
|
|
|
bool "x86 generic variant has been removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
The generic x86 CPU variant has been removed. Use another
|
2014-11-09 13:50:01 +08:00
|
|
|
CPU variant instead.
|
2014-11-09 07:15:24 +08:00
|
|
|
|
2014-10-30 16:29:36 +08:00
|
|
|
config BR2_GCC_VERSION_4_4_X
|
|
|
|
bool "gcc 4.4.x has been removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
The 4.4.x version of gcc has been removed. Use a newer
|
|
|
|
version instead.
|
|
|
|
|
2014-10-30 16:29:35 +08:00
|
|
|
config BR2_sparc_sparchfleon
|
|
|
|
bool "sparchfleon CPU has been removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
The sparchfleon CPU was only supported in a patched gcc 4.4
|
|
|
|
version. Its support has been removed in favor of the leon3
|
|
|
|
CPU starting from gcc 4.8.x.
|
|
|
|
|
|
|
|
config BR2_sparc_sparchfleonv8
|
|
|
|
bool "sparchfleonv8 CPU has been removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
The sparchfleonv8 CPU was only supported in a patched gcc
|
|
|
|
4.4 version. Its support has been removed in favor of the
|
|
|
|
leon3 CPU starting from gcc 4.8.x.
|
|
|
|
|
|
|
|
config BR2_sparc_sparcsfleon
|
|
|
|
bool "sparcsfleon CPU has been removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
The sparcsfleon CPU was only supported in a patched gcc 4.4
|
|
|
|
version. Its support has been removed in favor of the leon3
|
|
|
|
CPU starting from gcc 4.8.x.
|
|
|
|
|
|
|
|
config BR2_sparc_sparcsfleonv8
|
|
|
|
bool "sparcsfleonv8 CPU has been removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
The sparcsfleonv8 CPU was only supported in a patched gcc
|
|
|
|
4.4 version. Its support has been removed in favor of the
|
|
|
|
leon3 CPU starting from gcc 4.8.x.
|
|
|
|
|
2014-10-19 01:41:30 +08:00
|
|
|
config BR2_PACKAGE_XLIB_LIBPCIACCESS
|
|
|
|
bool "xlib-libpciaccess option has been renamed"
|
|
|
|
depends on BR2_PACKAGE_XORG7
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_PACKAGE_LIBPCIACCESS
|
|
|
|
help
|
|
|
|
libpciaccess neither depends on X11 nor Xlib. Thus the
|
|
|
|
package has been renamed BR2_PACKAGE_LIBPCIACCESS
|
|
|
|
|
2014-09-22 02:38:13 +08:00
|
|
|
config BR2_PACKAGE_LINUX_FIRMWARE_XC5000
|
|
|
|
bool "Xceive xc5000 option has been renamed"
|
2015-10-08 05:56:49 +08:00
|
|
|
select BR2_LEGACY
|
2014-09-22 02:38:13 +08:00
|
|
|
select BR2_PACKAGE_LINUX_FIRMWARE_XCx000
|
|
|
|
help
|
|
|
|
The Xceive xc5000 option now also handles older firmwares from
|
|
|
|
Xceive (the xc4000 series), as well as new firmwares (the xc5000c)
|
|
|
|
from Cresta, who bought Xceive.
|
|
|
|
|
2014-09-22 02:38:12 +08:00
|
|
|
config BR2_PACKAGE_LINUX_FIRMWARE_CXGB4
|
|
|
|
bool "Chelsio T4 option has been renamed"
|
2015-10-08 05:56:49 +08:00
|
|
|
select BR2_LEGACY
|
2014-09-22 02:38:12 +08:00
|
|
|
select BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4
|
|
|
|
help
|
|
|
|
The Chelsio T4 option BR2_PACKAGE_LINUX_FIRMWARE_CXGB4
|
|
|
|
has been renamed to BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4
|
|
|
|
to better account for the fact that a T5 variant exists.
|
|
|
|
|
2014-09-22 02:38:09 +08:00
|
|
|
config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7
|
|
|
|
bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 has been renamed"
|
2015-10-08 05:56:49 +08:00
|
|
|
select BR2_LEGACY
|
2014-09-22 02:38:09 +08:00
|
|
|
help
|
|
|
|
The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 was
|
|
|
|
renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_7. You must
|
|
|
|
select it in:
|
|
|
|
Target packages -> Hardware handling ->
|
|
|
|
Firmware -> linux-firmware -> WiFi firmware ->
|
|
|
|
iwlwifi 3160/726x revision to use (revision 7)
|
|
|
|
|
|
|
|
config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8
|
|
|
|
bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 has been renamed"
|
2015-10-08 05:56:49 +08:00
|
|
|
select BR2_LEGACY
|
2014-09-22 02:38:09 +08:00
|
|
|
help
|
|
|
|
The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 was
|
|
|
|
renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_8. You must
|
|
|
|
select it in:
|
|
|
|
Target packages -> Hardware handling ->
|
|
|
|
Firmware -> linux-firmware -> WiFi firmware ->
|
|
|
|
iwlwifi 3160/726x revision to use (revision 8)
|
|
|
|
|
2014-06-03 04:27:22 +08:00
|
|
|
###############################################################################
|
|
|
|
comment "Legacy options removed in 2014.08"
|
|
|
|
|
2014-08-28 20:21:34 +08:00
|
|
|
config BR2_PACKAGE_LIBELF
|
|
|
|
bool "libelf has been removed"
|
|
|
|
select BR2_PACKAGE_ELFUTILS
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
The libelf package provided an old version of the libelf library
|
|
|
|
and is deprecated. The libelf library is now provided by the
|
|
|
|
elfutils package.
|
|
|
|
|
2014-06-14 03:21:45 +08:00
|
|
|
config BR2_KERNEL_HEADERS_3_8
|
|
|
|
bool "kernel headers version 3.8.x are no longer supported"
|
2015-09-02 02:45:31 +08:00
|
|
|
select BR2_KERNEL_HEADERS_3_10
|
2014-06-14 03:21:45 +08:00
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
Version 3.8.x of the Linux kernel headers have been deprecated
|
|
|
|
for more than four buildroot releases and are now removed.
|
2015-09-02 02:45:31 +08:00
|
|
|
As an alternative, version 3.10.x of the headers have been
|
2014-06-14 03:21:45 +08:00
|
|
|
automatically selected in your configuration.
|
|
|
|
|
2014-06-02 04:23:30 +08:00
|
|
|
config BR2_PACKAGE_GETTEXT_TOOLS
|
|
|
|
bool "support for gettext-tools on target has been removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
The option to install the gettext utilities on the target
|
|
|
|
has been removed. This is not necessary as Buildroot is not
|
|
|
|
designed to provide a full development environment on the
|
|
|
|
target. gettext tools should be used on the build machine
|
|
|
|
instead.
|
|
|
|
|
2014-06-03 04:27:22 +08:00
|
|
|
config BR2_PACKAGE_PROCPS
|
|
|
|
bool "procps has been replaced by procps-ng"
|
|
|
|
select BR2_PACKAGE_PROCPS_NG
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
The procps package has been replaced by the equivalent procps-ng.
|
|
|
|
|
2014-07-02 02:03:02 +08:00
|
|
|
config BR2_BINUTILS_VERSION_2_20_1
|
|
|
|
bool "binutils 2.20.1 has been removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
The 2.20.1 version of binutils has been removed. Use a newer
|
|
|
|
version instead.
|
|
|
|
|
|
|
|
config BR2_BINUTILS_VERSION_2_21
|
|
|
|
bool "binutils 2.21 has been removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
The 2.21 version of binutils has been removed. Use a newer
|
|
|
|
version instead.
|
|
|
|
|
|
|
|
config BR2_BINUTILS_VERSION_2_23_1
|
|
|
|
bool "binutils 2.23.1 has been removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
The 2.23.1 version of binutils has been removed. Use a newer
|
|
|
|
version instead.
|
|
|
|
|
2014-07-02 02:03:03 +08:00
|
|
|
config BR2_UCLIBC_VERSION_0_9_32
|
|
|
|
bool "uclibc 0.9.32 has been removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
The 0.9.32 version of uClibc has been removed. Use a newer
|
|
|
|
version instead.
|
|
|
|
|
2014-07-02 02:03:06 +08:00
|
|
|
config BR2_GCC_VERSION_4_3_X
|
|
|
|
bool "gcc 4.3.x has been removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
The 4.3.x version of gcc has been removed. Use a newer
|
|
|
|
version instead.
|
|
|
|
|
|
|
|
config BR2_GCC_VERSION_4_6_X
|
|
|
|
bool "gcc 4.6.x has been removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
The 4.6.x version of gcc has been removed. Use a newer
|
|
|
|
version instead.
|
|
|
|
|
2014-07-02 02:03:08 +08:00
|
|
|
config BR2_GDB_VERSION_7_4
|
|
|
|
bool "gdb 7.4 has been removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
The 7.4 version of gdb has been removed. Use a newer version
|
|
|
|
instead.
|
|
|
|
|
|
|
|
config BR2_GDB_VERSION_7_5
|
|
|
|
bool "gdb 7.5 has been removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
The 7.5 version of gdb has been removed. Use a newer version
|
|
|
|
instead.
|
|
|
|
|
busybox: support only one version
This commit removes the version selection for the busybox
package. Busybox is very well maintained, and bugs are typically fixed
in a timely fashion. Moreover, regressions are fairly unlikely in this
very stable and well-tested tool.
Therefore, there isn't a very compelling reason to have a version
selection for Busybox since we don't accept such a version selection
for the vast majority of other packages, unless there is a strong
reason to do so.
Consequently, this commit:
* Removes the 1.19.4, 1.20.2 and 1.21.1 Busybox versions, patches and
default configuration file.
* Moves the 1.22.1 patches from package/busybox/1.22.1 to just
package/busybox/ like all other packages.
* Renames the default 1.22.1 configuration file to just
busybox.config.
* Adapts the busybox.mk makefile to encode the current version to
use.
* Adds appropriate options to Config.in.legacy. However, even though
the BR2_BUSYBOX_VERSION_1_22_X is removed, we don't add a
Config.in.legacy option for it, since it would cause a legacy
warning for virtually *all* users as most people are currently
using 1.22.x.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2014-07-02 02:03:09 +08:00
|
|
|
config BR2_BUSYBOX_VERSION_1_19_X
|
|
|
|
bool "busybox version selection has been removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
The possibility of selecting the Busybox version has been
|
|
|
|
removed. Use the latest version provided by the Busybox
|
|
|
|
package instead.
|
|
|
|
|
|
|
|
config BR2_BUSYBOX_VERSION_1_20_X
|
|
|
|
bool "busybox version selection has been removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
The possibility of selecting the Busybox version has been
|
|
|
|
removed. Use the latest version provided by the Busybox
|
|
|
|
package instead.
|
|
|
|
|
|
|
|
config BR2_BUSYBOX_VERSION_1_21_X
|
|
|
|
bool "busybox version selection has been removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
The possibility of selecting the Busybox version has been
|
|
|
|
removed. Use the latest version provided by the Busybox
|
|
|
|
package instead.
|
|
|
|
|
2014-07-06 05:07:40 +08:00
|
|
|
config BR2_PACKAGE_LIBV4L_DECODE_TM6000
|
|
|
|
bool "decode_tm6000"
|
|
|
|
select BR2_PACKAGE_LIBV4L_UTILS
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
This libv4l option has been deprecated and replaced by a single
|
|
|
|
option to build all the libv4l utilities.
|
|
|
|
|
|
|
|
config BR2_PACKAGE_LIBV4L_IR_KEYTABLE
|
|
|
|
bool "ir-keytable"
|
|
|
|
select BR2_PACKAGE_LIBV4L_UTILS
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
This libv4l option has been deprecated and replaced by a single
|
|
|
|
option to build all the libv4l utilities.
|
|
|
|
|
|
|
|
config BR2_PACKAGE_LIBV4L_V4L2_COMPLIANCE
|
|
|
|
bool "v4l2-compliance"
|
|
|
|
select BR2_PACKAGE_LIBV4L_UTILS
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
This libv4l option has been deprecated and replaced by a single
|
|
|
|
option to build all the libv4l utilities.
|
|
|
|
|
|
|
|
config BR2_PACKAGE_LIBV4L_V4L2_CTL
|
|
|
|
bool "v4l2-ctl"
|
|
|
|
select BR2_PACKAGE_LIBV4L_UTILS
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
This libv4l option has been deprecated and replaced by a single
|
|
|
|
option to build all the libv4l utilities.
|
|
|
|
|
|
|
|
config BR2_PACKAGE_LIBV4L_V4L2_DBG
|
|
|
|
bool "v4l2-dbg"
|
|
|
|
select BR2_PACKAGE_LIBV4L_UTILS
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
This libv4l option has been deprecated and replaced by a single
|
|
|
|
option to build all the libv4l utilities.
|
|
|
|
|
2014-02-07 21:21:33 +08:00
|
|
|
###############################################################################
|
|
|
|
comment "Legacy options removed in 2014.05"
|
|
|
|
|
2014-04-23 06:12:23 +08:00
|
|
|
config BR2_PACKAGE_EVTEST_CAPTURE
|
|
|
|
bool "evtest-capture support removed (dropped since evtest 1.31)"
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
Support for evtest-capture has been removed (dropped from
|
|
|
|
evtest package since version 1.31), use evemu package
|
|
|
|
instead.
|
|
|
|
|
2014-05-01 02:18:24 +08:00
|
|
|
config BR2_KERNEL_HEADERS_3_6
|
|
|
|
bool "kernel headers version 3.6.x are no longer supported"
|
2015-09-02 02:45:31 +08:00
|
|
|
select BR2_KERNEL_HEADERS_3_10
|
2014-05-01 02:18:24 +08:00
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
Version 3.6.x of the Linux kernel headers have been deprecated
|
|
|
|
for more than four buildroot releases and are now removed.
|
2015-09-02 02:45:31 +08:00
|
|
|
As an alternative, version 3.10.x of the headers have been
|
2014-05-01 02:18:24 +08:00
|
|
|
automatically selected in your configuration.
|
|
|
|
|
|
|
|
config BR2_KERNEL_HEADERS_3_7
|
|
|
|
bool "kernel headers version 3.7.x are no longer supported"
|
2015-09-02 02:45:31 +08:00
|
|
|
select BR2_KERNEL_HEADERS_3_10
|
2014-05-01 02:18:24 +08:00
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
Version 3.7.x of the Linux kernel headers have been deprecated
|
|
|
|
for more than four buildroot releases and are now removed.
|
2015-09-02 02:45:31 +08:00
|
|
|
As an alternative, version 3.10.x of the headers have been
|
2014-05-01 02:18:24 +08:00
|
|
|
automatically selected in your configuration.
|
|
|
|
|
2014-05-01 02:18:23 +08:00
|
|
|
config BR2_PACKAGE_VALA
|
|
|
|
bool "vala target package has been removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
The 'vala' target package has been removed since it has been
|
|
|
|
deprecated for more than four buildroot releases.
|
|
|
|
Note: the host vala package still exists.
|
|
|
|
|
2014-04-08 03:58:03 +08:00
|
|
|
config BR2_TARGET_TZ_ZONELIST
|
|
|
|
default BR2_PACKAGE_TZDATA_ZONELIST if BR2_PACKAGE_TZDATA_ZONELIST != ""
|
|
|
|
|
|
|
|
config BR2_PACKAGE_TZDATA_ZONELIST
|
|
|
|
string "tzdata: the timezone list option has been renamed"
|
|
|
|
help
|
|
|
|
The option BR2_PACKAGE_TZDATA_ZONELIST has been renamed to
|
|
|
|
BR2_TARGET_TZ_ZONELIST, and moved to the "System configuration"
|
|
|
|
menu. You'll need to select BR2_TARGET_TZ_INFO.
|
|
|
|
|
|
|
|
config BR2_PACKAGE_TZDATA_ZONELIST_WRAP
|
|
|
|
bool
|
|
|
|
default y if BR2_PACKAGE_TZDATA_ZONELIST != ""
|
|
|
|
select BR2_LEGACY
|
|
|
|
|
2014-04-05 23:21:43 +08:00
|
|
|
config BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE
|
|
|
|
bool "Lua command-line editing none has been renamed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
The BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE option has been
|
|
|
|
renamed to BR2_PACKAGE_LUA_EDITING_NONE. You will have to select
|
|
|
|
it in the corresponding choice.
|
|
|
|
|
|
|
|
config BR2_PACKAGE_LUA_INTERPRETER_READLINE
|
|
|
|
bool "Lua command-line editing using readline has been renamed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
The BR2_PACKAGE_LUA_INTERPRETER_READLINE option has been
|
|
|
|
renamed to BR2_PACKAGE_LUA_READLINE. You will have to select
|
|
|
|
it in the corresponding choice.
|
|
|
|
|
|
|
|
config BR2_PACKAGE_LUA_INTERPRETER_LINENOISE
|
|
|
|
bool "Lua command-line editing using linenoise has been renamed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
The BR2_PACKAGE_LUA_INTERPRETER_LINENOISE option has been
|
|
|
|
renamed to BR2_PACKAGE_LUA_LINENOISE. You will have to select
|
|
|
|
it in the corresponding choice.
|
|
|
|
|
2014-03-28 08:00:24 +08:00
|
|
|
config BR2_PACKAGE_DVB_APPS_UTILS
|
|
|
|
bool "dvb-apps utilities now built by default"
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
The dvb-apps utilities are now always built when the dvb-apps
|
|
|
|
package is selected.
|
|
|
|
|
2014-03-01 22:52:56 +08:00
|
|
|
config BR2_KERNEL_HEADERS_SNAP
|
|
|
|
bool "Local Linux snapshot support removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
Support for using a custom snapshot to install the Linux
|
|
|
|
kernel headers has been removed.
|
|
|
|
|
2014-02-07 21:21:33 +08:00
|
|
|
config BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV
|
|
|
|
bool "/dev management by udev removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
The 'udev' package has been converted to a virtual package.
|
2014-02-07 21:21:34 +08:00
|
|
|
The providers for this feature are: 'eudev', 'systemd'.
|
2014-02-07 21:21:33 +08:00
|
|
|
|
2014-02-07 21:21:34 +08:00
|
|
|
Therefore, if you are not using 'systemd' as init system, you
|
|
|
|
must choose 'Dynamic using eudev' in the '/dev management'
|
|
|
|
menu to get the same behaviour as in your old configuration.
|
|
|
|
|
|
|
|
If you are using 'systemd', its internal implementation of
|
|
|
|
'udev' will be used automatically.
|
2014-02-07 21:21:33 +08:00
|
|
|
|
|
|
|
You must also check the packages depending on 'udev' are still
|
|
|
|
selected.
|
|
|
|
|
|
|
|
config BR2_PACKAGE_UDEV
|
|
|
|
bool "udev is now a virtual package"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_PACKAGE_HAS_UDEV
|
|
|
|
help
|
|
|
|
The 'udev' package has been converted to a virtual package.
|
2014-02-07 21:21:34 +08:00
|
|
|
The providers for this feature are: 'eudev', 'systemd'.
|
2014-02-07 21:21:33 +08:00
|
|
|
|
|
|
|
Your old configuration refers to packages depending on 'udev',
|
|
|
|
either for build or at runtime.
|
|
|
|
|
2014-02-07 21:21:34 +08:00
|
|
|
Check that a 'udev' provider is selected. If you are not using
|
|
|
|
'systemd' as init system, 'eudev' should be selected, which is
|
|
|
|
the case if '/dev management' is set to 'Dynamic using eudev'.
|
|
|
|
|
|
|
|
If you are using 'systemd', its internal implementation of 'udev'
|
|
|
|
is used.
|
2014-02-07 21:21:33 +08:00
|
|
|
|
|
|
|
config BR2_PACKAGE_UDEV_RULES_GEN
|
2014-02-07 21:21:34 +08:00
|
|
|
bool "udev rules generation handled by provider"
|
2014-02-07 21:21:33 +08:00
|
|
|
select BR2_LEGACY
|
2014-02-07 21:21:34 +08:00
|
|
|
select BR2_PACKAGE_EUDEV if !BR2_INIT_SYSTEMD
|
|
|
|
select BR2_PACKAGE_EUDEV_RULES_GEN if !BR2_INIT_SYSTEMD
|
2014-02-07 21:21:33 +08:00
|
|
|
help
|
|
|
|
The 'udev' package has been converted to a virtual package.
|
2014-02-07 21:21:34 +08:00
|
|
|
The providers for this feature are: 'eudev', 'systemd'.
|
2014-02-07 21:21:33 +08:00
|
|
|
|
2014-02-07 21:21:34 +08:00
|
|
|
If you are not using 'systemd' as init system, udev rules
|
|
|
|
generation will be handled by 'eudev'. Check that
|
|
|
|
'/dev management' is set to 'Dynamic using eudev' to get
|
|
|
|
the same behaviour as in your old configuration.
|
2014-02-07 21:21:33 +08:00
|
|
|
|
2014-02-07 21:21:34 +08:00
|
|
|
If you are using 'systemd', it internal implementation of 'udev'
|
|
|
|
will generate the rules.
|
2014-02-07 21:21:33 +08:00
|
|
|
|
|
|
|
config BR2_PACKAGE_UDEV_ALL_EXTRAS
|
|
|
|
bool "udev extras removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
The 'udev' package has been converted to a virtual package.
|
2014-02-07 21:21:34 +08:00
|
|
|
The providers for this feature are: 'eudev', 'systemd'.
|
2014-02-07 21:21:33 +08:00
|
|
|
|
|
|
|
The option to enable the extra features of 'udev' (gudev, ...)
|
|
|
|
has been removed. These features are automatically enabled in
|
|
|
|
the 'udev' providers if the dependencies are selected. For
|
|
|
|
example, selecting 'libglib2' will trigger the build of gudev.
|
|
|
|
|
2014-03-01 23:41:10 +08:00
|
|
|
config BR2_PACKAGE_XLIB_LIBPTHREAD_STUBS
|
|
|
|
bool "xlib-libpthread-stubs option has been renamed"
|
|
|
|
depends on BR2_PACKAGE_XORG7
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_PACKAGE_LIBPTHREAD_STUBS
|
|
|
|
help
|
|
|
|
The pthread stubs neither depend on X11 nor Xlib. Thus the
|
|
|
|
package has been renamed BR2_PACKAGE_LIBPTHREAD_STUBS
|
|
|
|
|
2014-01-10 18:06:19 +08:00
|
|
|
###############################################################################
|
2014-01-20 06:30:42 +08:00
|
|
|
comment "Legacy options removed in 2014.02"
|
|
|
|
|
2014-02-04 22:25:34 +08:00
|
|
|
config BR2_sh2
|
|
|
|
bool "sh2 support removed"
|
2015-10-08 05:56:49 +08:00
|
|
|
select BR2_LEGACY
|
2014-02-04 22:25:34 +08:00
|
|
|
help
|
|
|
|
Due to an inexistent user base and generally poor Linux
|
|
|
|
support, the support for the SH2 architecture was removed.
|
|
|
|
|
|
|
|
config BR2_sh3
|
|
|
|
bool "sh3 support removed"
|
2015-10-08 05:56:49 +08:00
|
|
|
select BR2_LEGACY
|
2014-02-04 22:25:34 +08:00
|
|
|
help
|
|
|
|
Due to an inexistent user base and generally poor Linux
|
|
|
|
support, the support for the SH3 architecture was removed.
|
|
|
|
|
|
|
|
config BR2_sh3eb
|
|
|
|
bool "sh3eb support removed"
|
2015-10-08 05:56:49 +08:00
|
|
|
select BR2_LEGACY
|
2014-02-04 22:25:34 +08:00
|
|
|
help
|
|
|
|
Due to an inexistent user base and generally poor Linux
|
|
|
|
support, the support for the SH3eb architecture was removed.
|
|
|
|
|
2014-02-05 21:50:59 +08:00
|
|
|
config BR2_KERNEL_HEADERS_3_1
|
|
|
|
bool "kernel headers version 3.1.x are no longer supported"
|
|
|
|
select BR2_KERNEL_HEADERS_3_2
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
Version 3.1.x of the Linux kernel headers have been deprecated
|
|
|
|
for more than four buildroot releases and are now removed.
|
|
|
|
As an alternative, version 3.2.x of the headers have been
|
|
|
|
automatically selected in your configuration.
|
|
|
|
|
|
|
|
config BR2_KERNEL_HEADERS_3_3
|
|
|
|
bool "kernel headers version 3.3.x are no longer supported"
|
|
|
|
select BR2_KERNEL_HEADERS_3_4
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
Version 3.3.x of the Linux kernel headers have been deprecated
|
|
|
|
for more than four buildroot releases and are now removed.
|
|
|
|
As an alternative, version 3.4.x of the headers have been
|
|
|
|
automatically selected in your configuration.
|
|
|
|
|
|
|
|
config BR2_KERNEL_HEADERS_3_5
|
|
|
|
bool "kernel headers version 3.5.x are no longer supported"
|
2015-09-02 02:45:31 +08:00
|
|
|
select BR2_KERNEL_HEADERS_3_10
|
2014-02-05 21:50:59 +08:00
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
Version 3.5.x of the Linux kernel headers have been deprecated
|
|
|
|
for more than four buildroot releases and are now removed.
|
2015-09-02 02:45:31 +08:00
|
|
|
As an alternative, version 3.10.x of the headers have been
|
2014-02-05 21:50:59 +08:00
|
|
|
automatically selected in your configuration.
|
|
|
|
|
2014-02-05 21:50:58 +08:00
|
|
|
config BR2_GDB_VERSION_7_2
|
|
|
|
bool "gdb 7.2.x is no longer supported"
|
2014-07-02 02:03:08 +08:00
|
|
|
select BR2_GDB_VERSION_7_6
|
2014-02-05 21:50:58 +08:00
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
Version 7.2.x of gdb has been deprecated for more than four
|
|
|
|
buildroot releases and is now removed. As an alternative, gdb
|
|
|
|
7.5.x has been automatically selected in your configuration.
|
|
|
|
|
|
|
|
config BR2_GDB_VERSION_7_3
|
|
|
|
bool "gdb 7.3.x is no longer supported"
|
2014-07-02 02:03:08 +08:00
|
|
|
select BR2_GDB_VERSION_7_6
|
2014-02-05 21:50:58 +08:00
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
Version 7.3.x of gdb has been deprecated for more than four
|
|
|
|
buildroot releases and is now removed. As an alternative, gdb
|
|
|
|
7.5.x has been automatically selected in your configuration.
|
|
|
|
|
2014-02-05 21:50:57 +08:00
|
|
|
config BR2_PACKAGE_CCACHE
|
|
|
|
bool "ccache target package has been removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
The 'ccache' target package has been removed since it has been
|
|
|
|
deprecated for more than four buildroot releases.
|
|
|
|
Note: using ccache for speeding up builds is still supported.
|
|
|
|
|
2014-02-05 21:50:56 +08:00
|
|
|
config BR2_HAVE_DOCUMENTATION
|
|
|
|
bool "support for documentation on target has been removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
Support for documentation on target has been removed since it has
|
|
|
|
been deprecated for more than four buildroot releases.
|
|
|
|
|
2014-02-05 21:50:55 +08:00
|
|
|
config BR2_PACKAGE_AUTOMAKE
|
|
|
|
bool "automake target package has been removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
The 'automake' target package has been removed since it has been
|
|
|
|
deprecated for more than four buildroot releases.
|
|
|
|
Note: the host automake still exists.
|
|
|
|
|
2014-02-05 21:50:54 +08:00
|
|
|
config BR2_PACKAGE_AUTOCONF
|
|
|
|
bool "autoconf target package has been removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
The 'autoconf' target package has been removed since it has been
|
|
|
|
deprecated for more than four buildroot releases.
|
|
|
|
Note: the host autoconf still exists.
|
|
|
|
|
2014-02-05 21:50:53 +08:00
|
|
|
config BR2_PACKAGE_XSTROKE
|
|
|
|
bool "xstroke has been removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
The 'xstroke' package has been removed since it has been
|
|
|
|
deprecated for more than four buildroot releases.
|
|
|
|
|
2014-01-21 15:54:12 +08:00
|
|
|
config BR2_PACKAGE_LZMA
|
|
|
|
bool "lzma target package has been removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
The 'lzma' target package has been removed since it has been
|
|
|
|
deprecated for more than four buildroot releases.
|
|
|
|
Note: generating lzma-compressed rootfs images is still supported.
|
|
|
|
|
2014-01-21 15:54:10 +08:00
|
|
|
config BR2_PACKAGE_TTCP
|
|
|
|
bool "ttcp has been removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
The 'ttcp' package has been removed since it has been
|
|
|
|
deprecated for more than four buildroot releases.
|
|
|
|
|
2014-01-10 18:06:19 +08:00
|
|
|
config BR2_PACKAGE_LIBNFC_LLCP
|
2014-01-21 15:54:13 +08:00
|
|
|
bool "libnfc-llcp has been replaced by libllcp"
|
2014-01-10 18:06:19 +08:00
|
|
|
select BR2_LEGACY
|
2014-01-21 15:54:13 +08:00
|
|
|
select BR2_PACKAGE_LIBLLCP
|
2014-01-10 18:06:19 +08:00
|
|
|
help
|
|
|
|
The 'libnfc-llcp' package has been removed since upstream renamed
|
2014-01-21 15:54:13 +08:00
|
|
|
to 'libllcp'. We have added a new package for 'libllcp' and bumped
|
|
|
|
the version at the same time.
|
2014-01-10 18:06:19 +08:00
|
|
|
|
2014-01-21 22:08:28 +08:00
|
|
|
config BR2_PACKAGE_MYSQL_CLIENT
|
|
|
|
bool "MySQL client renamed to MySQL"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_PACKAGE_MYSQL
|
|
|
|
help
|
|
|
|
The option has been renamed BR2_PACKAGE_MYSQL
|
|
|
|
|
2014-01-04 00:02:53 +08:00
|
|
|
config BR2_PACKAGE_SQUASHFS3
|
|
|
|
bool "squashfs3 has been removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_PACKAGE_SQUASHFS
|
|
|
|
help
|
|
|
|
The 'squashfs3' package has been removed since it has been
|
|
|
|
deprecated for more than four buildroot releases. Package
|
|
|
|
'squashfs' (4) has been selected automatically as replacement.
|
|
|
|
|
|
|
|
config BR2_TARGET_ROOTFS_SQUASHFS3
|
|
|
|
bool "squashfs3 rootfs support has been removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
Together with the removal of the squashfs3 package, support
|
|
|
|
for squashfs3 root filesystems has been removed too. Squashfs
|
|
|
|
root filesystems will automatically use squashfs4 now.
|
|
|
|
|
2013-12-16 03:23:12 +08:00
|
|
|
config BR2_PACKAGE_NETKITBASE
|
|
|
|
bool "netkitbase has been removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
The 'netkitbase' package has been removed since it has been
|
|
|
|
deprecated since 2012.11. This package provided 'inetd'
|
|
|
|
which is replaced by 'xinet' and 'ping' which is replaced by
|
|
|
|
'busybox' or 'fping'.
|
|
|
|
|
|
|
|
config BR2_PACKAGE_NETKITTELNET
|
|
|
|
bool "netkittelnet has been removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
The 'netkittelnet' package has been removed since it has
|
|
|
|
been deprecated since 2012.11. 'busybox' provides a telnet
|
|
|
|
client and should be used instead.
|
|
|
|
|
2014-01-11 23:42:09 +08:00
|
|
|
config BR2_PACKAGE_LUASQL
|
|
|
|
bool "luasql has been replaced by luasql-sqlite3"
|
|
|
|
select BR2_PACKAGE_LUASQL_SQLITE3
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
The option has been renamed BR2_PACKAGE_LUASQL_SQLITE3.
|
|
|
|
|
2014-01-11 23:42:08 +08:00
|
|
|
config BR2_PACKAGE_LUACJSON
|
|
|
|
bool "luacjson has been replaced by lua-cjson"
|
|
|
|
select BR2_PACKAGE_LUA_CJSON
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
The option has been renamed BR2_PACKAGE_LUA_CJSON.
|
|
|
|
|
2013-08-28 01:28:34 +08:00
|
|
|
###############################################################################
|
|
|
|
comment "Legacy options removed in 2013.11"
|
|
|
|
|
2013-11-28 16:29:28 +08:00
|
|
|
config BR2_PACKAGE_LVM2_DMSETUP_ONLY
|
|
|
|
bool "lvm2's 'dmsetup only' option removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
The BR2_PACKAGE_LVM2_DMSETUP_ONLY was a negative option, which
|
|
|
|
led to problems with other packages that need the full lvm2
|
|
|
|
suite. Therefore, the option has been replaced with the positive
|
|
|
|
BR2_PACKAGE_LVM2_STANDARD_INSTALL option.
|
|
|
|
|
|
|
|
# Note: BR2_PACKAGE_LVM2_DMSETUP_ONLY is still referenced in package/lvm2/Config.in
|
|
|
|
# in order to automatically propagate old configs
|
|
|
|
|
2013-11-08 03:07:21 +08:00
|
|
|
config BR2_PACKAGE_QT_JAVASCRIPTCORE
|
|
|
|
bool "qt javascriptcore option removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
The BR2_PACKAGE_QT_JAVASCRIPTCORE option was available to
|
|
|
|
force the activation or disabling of the JIT compiler in the
|
|
|
|
Qt Javascript interpreter. However, the JIT compiler is not
|
|
|
|
available for all architectures, so forcing its activation
|
|
|
|
does not always work. Moreover, Qt knows by itself for which
|
|
|
|
architectures JIT support is possible, and will
|
|
|
|
automatically enable it if possible.
|
|
|
|
|
|
|
|
Therefore, this option was in fact useless, and causing
|
|
|
|
build problems when enabled on architectures for which the
|
|
|
|
JIT support was not available. It has been removed, and
|
|
|
|
there is no replacement: Qt will enable JIT at compile time
|
|
|
|
when possible.
|
|
|
|
|
2013-08-28 01:28:34 +08:00
|
|
|
config BR2_PACKAGE_MODULE_INIT_TOOLS
|
|
|
|
bool "module-init-tools replaced by kmod"
|
|
|
|
select BR2_PACKAGE_KMOD
|
|
|
|
select BR2_PACKAGE_KMOD_TOOLS
|
2013-11-08 03:09:48 +08:00
|
|
|
select BR2_LEGACY
|
2013-08-28 01:28:34 +08:00
|
|
|
help
|
|
|
|
The 'module-init-tools' package has been removed, since it
|
|
|
|
has been depracated upstream and replaced by 'kmod'.
|
|
|
|
|
2013-09-03 04:07:55 +08:00
|
|
|
config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL
|
|
|
|
string "u-boot: the git repository URL option has been renamed"
|
|
|
|
help
|
|
|
|
The option BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL has
|
|
|
|
been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_URL.
|
|
|
|
|
|
|
|
config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL_WRAP
|
|
|
|
bool
|
|
|
|
default y if BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL != ""
|
|
|
|
select BR2_LEGACY
|
|
|
|
|
|
|
|
# Note: BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL is still referenced from
|
|
|
|
# boot/uboot/Config.in
|
|
|
|
|
|
|
|
config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION
|
|
|
|
string "u-boot: the git repository version option has been renamed"
|
|
|
|
help
|
|
|
|
The option BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION has
|
|
|
|
been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION.
|
|
|
|
|
|
|
|
config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION_WRAP
|
|
|
|
bool
|
|
|
|
default y if BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION != ""
|
|
|
|
select BR2_LEGACY
|
|
|
|
|
|
|
|
# Note: BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION is still referenced from
|
|
|
|
# boot/uboot/Config.in
|
|
|
|
|
2013-09-03 04:07:54 +08:00
|
|
|
config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL
|
|
|
|
string "linux: the git repository URL option has been renamed"
|
|
|
|
help
|
|
|
|
The option BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL has
|
|
|
|
been renamed to
|
|
|
|
BR2_LINUX_KERNEL_CUSTOM_REPO_URL.
|
|
|
|
|
|
|
|
config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL_WRAP
|
|
|
|
bool
|
|
|
|
default y if BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL != ""
|
|
|
|
select BR2_LEGACY
|
|
|
|
|
|
|
|
# Note: BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL is still referenced from
|
|
|
|
# linux/Config.in
|
|
|
|
|
|
|
|
config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION
|
|
|
|
string "linux: the git repository version option has been renamed"
|
|
|
|
help
|
|
|
|
The option BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION has
|
|
|
|
been renamed to
|
|
|
|
BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION.
|
|
|
|
|
|
|
|
config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION_WRAP
|
|
|
|
bool
|
|
|
|
default y if BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION != ""
|
|
|
|
select BR2_LEGACY
|
|
|
|
|
|
|
|
# Note: BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION is still referenced from
|
|
|
|
# linux/Config.in
|
|
|
|
|
2013-06-30 06:38:12 +08:00
|
|
|
###############################################################################
|
|
|
|
comment "Legacy options removed in 2013.08"
|
2013-06-10 22:14:31 +08:00
|
|
|
|
2013-08-11 01:20:01 +08:00
|
|
|
config BR2_ARM_OABI
|
|
|
|
bool "ARM OABI support has been removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
The support for the ARM OABI was deprecated since a while,
|
|
|
|
and has been removed completely from Buildroot. It is also
|
|
|
|
deprecated in upstream gcc, since gcc 4.7. People should
|
|
|
|
switch to EABI instead, which should not be a problem as
|
|
|
|
long as you don't have pre-built OABI binaries in your
|
|
|
|
system that you can't recompile.
|
|
|
|
|
2013-06-10 22:14:31 +08:00
|
|
|
config BR2_PACKAGE_DOSFSTOOLS_DOSFSCK
|
|
|
|
bool "dosfstools dosfsck renamed to fsck.fat"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_PACKAGE_DOSFSTOOLS_FSCK_FAT
|
|
|
|
help
|
|
|
|
dosfsck was renamed upstream to fsck.fat for consistency.
|
|
|
|
|
|
|
|
config BR2_PACKAGE_DOSFSTOOLS_DOSFSLABEL
|
|
|
|
bool "dosfstools dosfslabel renamed to fatlabel"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_PACKAGE_DOSFSTOOLS_FATLABEL
|
|
|
|
help
|
|
|
|
doslabel was renamed upstream to fatlabel for consistency.
|
|
|
|
|
|
|
|
config BR2_PACKAGE_DOSFSTOOLS_MKDOSFS
|
|
|
|
bool "dosfstools mkdosfs renamed to mkfs.fat"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_PACKAGE_DOSFSTOOLS_MKFS_FAT
|
|
|
|
help
|
|
|
|
mkdosfs was renamed upstream to mkfs.fat for consistency.
|
|
|
|
|
2013-07-01 03:28:57 +08:00
|
|
|
config BR2_ELF2FLT
|
|
|
|
bool "the elf2flt option has been renamed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
The BR2_ELF2FLT option has been renamed to
|
|
|
|
BR2_PACKAGE_HOST_ELF2FLT due to the conversion of elf2flt to
|
|
|
|
the package infrastructure.
|
|
|
|
|
2013-07-16 16:03:17 +08:00
|
|
|
config BR2_VFP_FLOAT
|
|
|
|
bool "the ARM VFP floating point option has been renamed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
Due to a major refactoring of the floating-point handling of
|
|
|
|
the ARM architecture support, the BR2_VFP_FLOAT option has
|
|
|
|
been replaced with a choice of options that allows to select
|
|
|
|
between various VFP versions/capabilities.
|
|
|
|
|
2013-08-30 12:08:59 +08:00
|
|
|
config BR2_PACKAGE_GCC_TARGET
|
|
|
|
bool "gcc on the target filesystem has been removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
The support for gcc in the target filesystem was deprecated
|
|
|
|
since a while, and has been removed completely from Buildroot.
|
|
|
|
See Buildroot's documentation for more explanations.
|
|
|
|
|
|
|
|
config BR2_HAVE_DEVFILES
|
|
|
|
bool "development files in target filesystem has been removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
The installation of the development files in the target
|
|
|
|
filesystem was deprecated since a while, and has been removed
|
|
|
|
completely from Buildroot.
|
|
|
|
See Buildroot's documentation for more explanations.
|
|
|
|
|
2013-06-30 06:38:12 +08:00
|
|
|
###############################################################################
|
|
|
|
comment "Legacy options removed in 2013.05"
|
2013-06-04 19:49:53 +08:00
|
|
|
|
|
|
|
config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8192
|
|
|
|
bool "Realtek 8192 replaced by Realtek 81xx"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_PACKAGE_LINUX_FIRMWARE_RTL_81XX
|
|
|
|
help
|
|
|
|
Now covers the whole Realtek 81xx familly: 8188/8192.
|
|
|
|
|
|
|
|
config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8712
|
|
|
|
bool "Realtek 8712 replaced by Realtek 87xx"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_PACKAGE_LINUX_FIRMWARE_RTL_87XX
|
|
|
|
help
|
|
|
|
Now covers the whole Realtek 87xx familly: 8712/8723.
|
|
|
|
|
2013-06-30 06:38:12 +08:00
|
|
|
###############################################################################
|
|
|
|
comment "Legacy options removed in 2013.02"
|
2013-03-07 18:45:24 +08:00
|
|
|
|
2013-04-04 15:29:45 +08:00
|
|
|
config BR2_sa110
|
|
|
|
bool "sa110 ARM target switched to strongarm"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_strongarm
|
|
|
|
help
|
|
|
|
The SA110 is the same as a generic StrongARM, it just differs
|
|
|
|
in speed, peripherals and cache.
|
|
|
|
|
|
|
|
config BR2_sa1100
|
|
|
|
bool "sa1100 ARM target switched to strongarm"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_strongarm
|
|
|
|
help
|
|
|
|
The SA1100 is the same as a generic StrongARM, it just differs
|
|
|
|
in speed, peripherals and cache.
|
|
|
|
|
2013-03-07 18:45:24 +08:00
|
|
|
config BR2_PACKAGE_GDISK
|
|
|
|
bool "gdisk has been replaced by gptfdisk"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_PACKAGE_GPTFDISK
|
|
|
|
help
|
|
|
|
The option has been renamed BR2_PACKAGE_GPTFDISK.
|
|
|
|
|
|
|
|
config BR2_PACKAGE_GDISK_GDISK
|
|
|
|
bool "gdisk tool from gdisk has been replaced by gdisk in gptfdisk"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_PACKAGE_GPTFDISK
|
|
|
|
select BR2_PACKAGE_GPTFDISK_GDISK
|
|
|
|
help
|
|
|
|
The option has been renamed BR2_PACKAGE_GPTFDISK_GDISK.
|
|
|
|
|
|
|
|
config BR2_PACKAGE_GDISK_SGDISK
|
|
|
|
bool "sgdisk tool from gdisk has been replaced by sgdisk in gptfdisk"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_PACKAGE_GPTFDISK
|
|
|
|
select BR2_PACKAGE_GPTFDISK_SGDISK
|
|
|
|
help
|
|
|
|
The option has been renamed BR2_PACKAGE_GPTFDISK_SGDISK.
|
2012-11-12 18:08:28 +08:00
|
|
|
|
gdb: convert to the package infrastructure
This commit converts gdb to the package infrastructure, and therefore
moves it from toolchain/gdb to package/gdb.
The target package is now visible in "Package selection for the
target" => "Debugging, profiling and benchmark". The main option,
"gdb", forcefully selects the "gdbserver" sub-option by
default. Another sub-option, "full debugger" allows to install the
complete gdb on the target. When this option is enabled, then
"gdbserver" is no longer forcefully selected. This ensures that at
least gdbserver or the full debugger gets built/installed, so that the
package is not a no-op.
The host debugger is still enabled through a configuration option in
"Toolchain". It is now visible regardless of the toolchain type (it
used to be hidden for External Toolchains). The configuration options
relative to the host debugger are now in package/gdb/Config.in.host,
similar to how we have package/binutils/Config.in.host.
Since gdb is now a proper package, it is no longer allowed to 'select
BR2_PTHREADS_DEBUG' to ensure thread debugging is available when
needed. Instead, it now 'depends on
BR2_TOOLCHAIN_HAS_THREADS_DEBUG'. This option, in turn, is selected by
the different toolchain backends when appropriate. The
'BR2_TOOLCHAIN_HAS_THREADS_DEBUG_IF_NEEDED' option is removed, since
we no longer need to know when it is allowed to 'select
BR2_PTHREADS_DEBUG'. Also, the 'BR2_PTHREADS_DEBUG' option is moved to
appear right below the thread implementation selection (in the case of
the Buildroot toolchain backend).
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2013-04-07 08:04:33 +08:00
|
|
|
config BR2_PACKAGE_GDB_HOST
|
|
|
|
bool "gdb for the host option has been renamed"
|
|
|
|
select BR2_PACKAGE_HOST_GDB
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
Due to the conversion of gdb to the package infrastructure,
|
|
|
|
the BR2_PACKAGE_GDB_HOST option has been renamed
|
|
|
|
BR2_PACKAGE_HOST_GDB.
|
|
|
|
|
2013-03-10 16:32:46 +08:00
|
|
|
config BR2_PACKAGE_DIRECTB_DITHER_RGB16
|
|
|
|
bool "DirectFB RGB16 dithering option has been renamed"
|
|
|
|
select BR2_PACKAGE_DIRECTFB_DITHER_RGB16
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
The option has been renamed
|
|
|
|
BR2_PACKAGE_DIRECTFB_DITHER_RGB16.
|
|
|
|
|
|
|
|
config BR2_PACKAGE_DIRECTB_TESTS
|
|
|
|
bool "DirectFB Tests option has been renamed"
|
|
|
|
select BR2_PACKAGE_DIRECTFB_TESTS
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
The option has been renamed
|
|
|
|
BR2_PACKAGE_DIRECTFB_TESTS.
|
|
|
|
|
2013-06-30 06:38:12 +08:00
|
|
|
###############################################################################
|
|
|
|
comment "Legacy options removed in 2012.11"
|
|
|
|
|
2013-02-07 19:58:45 +08:00
|
|
|
config BR2_PACKAGE_CUSTOMIZE
|
|
|
|
bool "customize package has been removed"
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
The 'customize' special package has been removed. Instead,
|
|
|
|
we recommend to create either your own packages, or use a
|
|
|
|
post-build script to customize your root filesystem. See
|
|
|
|
Buildroot's documentation for more details.
|
2013-02-05 13:34:33 +08:00
|
|
|
|
|
|
|
config BR2_PACKAGE_XSERVER_xorg
|
|
|
|
bool "X.org modular server"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR
|
|
|
|
help
|
|
|
|
The option has been renamed
|
|
|
|
BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR.
|
|
|
|
|
|
|
|
config BR2_PACKAGE_XSERVER_tinyx
|
|
|
|
bool "KDrive / TinyX server"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE
|
|
|
|
help
|
|
|
|
The option has been renamed
|
|
|
|
BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE.
|
|
|
|
|
|
|
|
config BR2_PACKAGE_PTHREAD_STUBS
|
|
|
|
bool "pthread-stubs option has been renamed"
|
|
|
|
select BR2_LEGACY
|
2014-03-01 23:41:10 +08:00
|
|
|
select BR2_PACKAGE_LIBPTHREAD_STUBS
|
2013-02-05 13:34:33 +08:00
|
|
|
help
|
|
|
|
For consistency reason, the pthread-stubs package has been
|
2014-03-01 23:41:10 +08:00
|
|
|
renamed to libpthread-stubs.
|
2013-02-05 13:34:33 +08:00
|
|
|
|
2013-06-30 06:38:12 +08:00
|
|
|
###############################################################################
|
|
|
|
comment "Legacy options removed in 2012.08"
|
2012-11-12 18:08:28 +08:00
|
|
|
|
2012-11-12 18:08:32 +08:00
|
|
|
config BR2_PACKAGE_GETTEXT_STATIC
|
|
|
|
bool "libgettext.a is now selected by BR2_PREFER_STATIC_LIB"
|
|
|
|
select BR2_LEGACY
|
|
|
|
help
|
|
|
|
To build a static gettext library, select BR2_PREFER_STATIC_LIB.
|
|
|
|
|
|
|
|
|
|
|
|
config BR2_PACKAGE_LIBINTL
|
|
|
|
bool "libintl"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_PACKAGE_GETTEXT
|
|
|
|
help
|
|
|
|
libintl is now installed by selecting BR2_PACKAGE_GETTEXT. This now
|
|
|
|
only installs the library, not the executables.
|
|
|
|
|
2012-11-12 18:08:31 +08:00
|
|
|
config BR2_PACKAGE_INPUT_TOOLS_EVTEST
|
|
|
|
bool "input-tools evtest is now a separate package evtest"
|
|
|
|
select BR2_LEGACY
|
|
|
|
select BR2_PACKAGE_EVTEST
|
|
|
|
help
|
|
|
|
The evtest program from input-tools is now a separate package.
|
|
|
|
|
2013-05-03 08:39:34 +08:00
|
|
|
config BR2_BFIN_FDPIC
|
|
|
|
bool "BR2_BFIN_FDPIC is now BR2_BINFMT_FDPIC"
|
|
|
|
select BR2_BINFMT_FDPIC
|
|
|
|
select BR2_LEGACY
|
|
|
|
|
|
|
|
config BR2_BFIN_FLAT
|
|
|
|
bool "BR2_BFIN_FLAT is now BR2_BINFMT_FLAT"
|
|
|
|
select BR2_BINFMT_FLAT
|
|
|
|
select BR2_LEGACY
|
|
|
|
|
2013-02-05 13:34:32 +08:00
|
|
|
endmenu
|
2015-04-11 07:49:02 +08:00
|
|
|
|
|
|
|
endif # !SKIP_LEGACY
|