diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2014-12-19 01:42:49 -0600 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2014-12-19 01:49:30 -0600 |
commit | 949d8663f2f12c986ef2983b7b307f5ecddf060e (patch) | |
tree | 258f4f1f62c469b54e0f342fcf36847333c68bda /target/config/Config.in.abi.default | |
parent | 7c89a2bc80d4d3c33a5345fd673cd2fe424c1fae (diff) |
use the new concept of appliances
- Sync with Kernel upstream Kconfig
- use new feature visible
- add a patch for select on choices
https://lkml.org/lkml/2011/2/17/379
- rename ADK_LINUX -> ADK_TARGET_ARCH
- remove package collection feature
- add appliance feature to define a appliance
more complete
Diffstat (limited to 'target/config/Config.in.abi.default')
-rw-r--r-- | target/config/Config.in.abi.default | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/target/config/Config.in.abi.default b/target/config/Config.in.abi.default index 7a66c54a8..80de3eaf8 100644 --- a/target/config/Config.in.abi.default +++ b/target/config/Config.in.abi.default @@ -35,7 +35,7 @@ config ADK_TARGET_ABI default "eabihf" if ADK_eabihf config ADK_TARGET_MIPS_ABI - depends on ADK_LINUX_MIPS64 + depends on ADK_TARGET_ARCH_MIPS64 string default "32" if ADK_o32 default "n32" if ADK_n32 @@ -48,10 +48,10 @@ config ADK_TARGET_LIBC_PATH default "libx32" if ADK_x32 default "lib64" if ADK_n64 \ || ADK_64 \ - || ADK_LINUX_AARCH64 \ - || ADK_LINUX_SPARC64 \ - || ADK_LINUX_PPC64 \ - || ADK_LINUX_X86_64 + || ADK_TARGET_ARCH_AARCH64 \ + || ADK_TARGET_ARCH_SPARC64 \ + || ADK_TARGET_ARCH_PPC64 \ + || ADK_TARGET_ARCH_X86_64 default "lib" config ADK_TARGET_ABI_CFLAGS |