123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926 |
- #
- # Config.in.legacy - support for backward compatibility
- #
- # 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.
- #
- # 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.
- #
- # 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.
- #
- # 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
- # of the old symbol as default. This requires a change outside of
- # Config.in.legacy, and this should be clearly marked as such below, so that
- # removal of legacy options also include the removal of these external
- # references.
- #
- # [Example: renaming a string option from FOO to BAR]
- # original symbol:
- # config BR2_FOO_STRING
- # string "Some foo string"
- #
- # becomes:
- # config BR2_BAR_STRING
- # string "Some bar string"
- # default BR2_FOO_STRING if BR2_FOO_STRING != "" # legacy
- #
- # and in Config.in.legacy:
- # config BR2_FOO_STRING
- # string "The foo string has been renamed"
- # help
- # <suitable help text>
- #
- # config BR2_FOO_STRING_WRAP
- # bool
- # default y if BR2_FOO_STRING != ""
- # select BR2_LEGACY
- #
- # # Note: BR2_FOO_STRING is still referenced from package/foo/Config.in
- #
- # [End of example]
- 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
- menu "Legacy config options"
- if BR2_LEGACY
- comment "----------------------------------------------------"
- comment "Your old configuration uses legacy options that no "
- 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 "
- comment "will fail. "
- 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 "* "
- 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. "
- comment "----------------------------------------------------"
- endif
- ###############################################################################
- comment "Legacy options removed in 2014.08"
- config BR2_KERNEL_HEADERS_3_8
- bool "kernel headers version 3.8.x are no longer supported"
- select BR2_KERNEL_HEADERS_3_9
- 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.
- As an alternative, version 3.9.x of the headers have been
- automatically selected in your configuration.
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
- ###############################################################################
- comment "Legacy options removed in 2014.05"
- 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.
- config BR2_KERNEL_HEADERS_3_6
- bool "kernel headers version 3.6.x are no longer supported"
- select BR2_KERNEL_HEADERS_3_9
- 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.
- As an alternative, version 3.8.x of the headers have been
- automatically selected in your configuration.
- config BR2_KERNEL_HEADERS_3_7
- bool "kernel headers version 3.7.x are no longer supported"
- select BR2_KERNEL_HEADERS_3_9
- 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.
- As an alternative, version 3.8.x of the headers have been
- automatically selected in your configuration.
- 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.
- 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
- 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.
- 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.
- 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.
- 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.
- The providers for this feature are: 'eudev', 'systemd'.
- 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.
- 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.
- The providers for this feature are: 'eudev', 'systemd'.
- Your old configuration refers to packages depending on 'udev',
- either for build or at runtime.
- 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.
- config BR2_PACKAGE_UDEV_RULES_GEN
- bool "udev rules generation handled by provider"
- select BR2_LEGACY
- select BR2_PACKAGE_EUDEV if !BR2_INIT_SYSTEMD
- select BR2_PACKAGE_EUDEV_RULES_GEN if !BR2_INIT_SYSTEMD
- help
- The 'udev' package has been converted to a virtual package.
- The providers for this feature are: 'eudev', 'systemd'.
- 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.
- If you are using 'systemd', it internal implementation of 'udev'
- will generate the rules.
- config BR2_PACKAGE_UDEV_ALL_EXTRAS
- bool "udev extras removed"
- select BR2_LEGACY
- help
- The 'udev' package has been converted to a virtual package.
- The providers for this feature are: 'eudev', 'systemd'.
- 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.
- 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
- ###############################################################################
- comment "Legacy options removed in 2014.02"
- config BR2_sh2
- bool "sh2 support removed"
- 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"
- 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"
- help
- Due to an inexistent user base and generally poor Linux
- support, the support for the SH3eb architecture was removed.
- 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"
- select BR2_KERNEL_HEADERS_3_9
- 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.
- As an alternative, version 3.8.x of the headers have been
- automatically selected in your configuration.
- config BR2_GDB_VERSION_7_2
- bool "gdb 7.2.x is no longer supported"
- select BR2_GDB_VERSION_7_6
- 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"
- select BR2_GDB_VERSION_7_6
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
- config BR2_PACKAGE_LIBNFC_LLCP
- bool "libnfc-llcp has been replaced by libllcp"
- select BR2_LEGACY
- select BR2_PACKAGE_LIBLLCP
- help
- The 'libnfc-llcp' package has been removed since upstream renamed
- to 'libllcp'. We have added a new package for 'libllcp' and bumped
- the version at the same time.
- 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
- 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.
- 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.
- 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.
- 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.
- ###############################################################################
- comment "Legacy options removed in 2013.11"
- 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
- 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.
- config BR2_PACKAGE_MODULE_INIT_TOOLS
- bool "module-init-tools replaced by kmod"
- select BR2_PACKAGE_KMOD
- select BR2_PACKAGE_KMOD_TOOLS
- select BR2_LEGACY
- help
- The 'module-init-tools' package has been removed, since it
- has been depracated upstream and replaced by 'kmod'.
- 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
- 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
- ###############################################################################
- comment "Legacy options removed in 2013.08"
- 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.
- 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.
- 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.
- 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.
- 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.
- ###############################################################################
- comment "Legacy options removed in 2013.05"
- 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.
- ###############################################################################
- comment "Legacy options removed in 2013.02"
- 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.
- 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.
- 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.
- 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.
- ###############################################################################
- comment "Legacy options removed in 2012.11"
- 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.
- 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
- select BR2_PACKAGE_LIBPTHREAD_STUBS
- help
- For consistency reason, the pthread-stubs package has been
- renamed to libpthread-stubs.
- ###############################################################################
- comment "Legacy options removed in 2012.08"
- 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.
- 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.
- 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
- endmenu
|