2012-11-12 11:08:28 +01:00
|
|
|
#
|
|
|
|
# Config.in.legacy - support for backward compatibility
|
|
|
|
#
|
2013-09-02 22:07:50 +02: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 11:08:28 +01: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-02 22:07:50 +02: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.
|
|
|
|
#
|
|
|
|
# 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]
|
2012-11-12 11:08:28 +01: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 06:34:32 +01:00
|
|
|
menu "Legacy config options"
|
|
|
|
|
|
|
|
if BR2_LEGACY
|
2013-09-02 22:07:52 +02:00
|
|
|
comment "----------------------------------------------------"
|
2013-02-05 06:34:32 +01:00
|
|
|
comment "Your old configuration uses legacy options that no "
|
2013-09-02 22:07:51 +02: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 06:34:32 +01:00
|
|
|
comment "will fail. "
|
2013-09-02 22:07:51 +02: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 00:38:13 +02: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-02 22:07:52 +02:00
|
|
|
comment "----------------------------------------------------"
|
2013-02-05 06:34:32 +01:00
|
|
|
endif
|
2012-11-12 11:08:28 +01:00
|
|
|
|
2013-08-27 19:28:34 +02:00
|
|
|
###############################################################################
|
|
|
|
comment "Legacy options removed in 2013.11"
|
|
|
|
|
|
|
|
config BR2_PACKAGE_MODULE_INIT_TOOLS
|
|
|
|
bool "module-init-tools replaced by kmod"
|
|
|
|
select BR2_PACKAGE_KMOD
|
|
|
|
select BR2_PACKAGE_KMOD_TOOLS
|
|
|
|
help
|
|
|
|
The 'module-init-tools' package has been removed, since it
|
|
|
|
has been depracated upstream and replaced by 'kmod'.
|
|
|
|
|
2013-09-02 22:07:55 +02: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-02 22:07:54 +02: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 00:38:12 +02:00
|
|
|
###############################################################################
|
|
|
|
comment "Legacy options removed in 2013.08"
|
2013-06-10 16:14:31 +02:00
|
|
|
|
2013-08-10 19:20:01 +02: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 16:14:31 +02: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-06-30 21:28:57 +02: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 10:03:17 +02: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 06:08:59 +02: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 00:38:12 +02:00
|
|
|
###############################################################################
|
|
|
|
comment "Legacy options removed in 2013.05"
|
2013-06-04 13:49:53 +02: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 00:38:12 +02:00
|
|
|
###############################################################################
|
|
|
|
comment "Legacy options removed in 2013.02"
|
2013-03-07 11:45:24 +01:00
|
|
|
|
2013-04-04 09:29:45 +02: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 11:45:24 +01: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 11:08:28 +01: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 02:04:33 +02: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 09:32:46 +01: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 00:38:12 +02:00
|
|
|
###############################################################################
|
|
|
|
comment "Legacy options removed in 2012.11"
|
|
|
|
|
2013-02-07 12:58:45 +01: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 06:34:33 +01: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
|
|
|
|
select BR2_PACKAGE_XLIB_LIBPTHREAD_STUBS
|
2013-04-29 12:29:34 +02:00
|
|
|
depends on BR2_PACKAGE_XORG7
|
2013-02-05 06:34:33 +01:00
|
|
|
help
|
|
|
|
For consistency reason, the pthread-stubs package has been
|
|
|
|
renamed to xlib_libpthread-stubs.
|
|
|
|
|
2013-06-30 00:38:12 +02:00
|
|
|
###############################################################################
|
|
|
|
comment "Legacy options removed in 2012.08"
|
2012-11-12 11:08:28 +01:00
|
|
|
|
2012-11-12 11:08:32 +01: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 11:08:31 +01: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 02:39:34 +02: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 06:34:32 +01:00
|
|
|
endmenu
|