diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2016-12-25 10:32:38 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2016-12-25 10:35:31 +0100 |
commit | 2c6139f32fd4eb2829568bc3c6eeb379c3c7d9be (patch) | |
tree | 9904e99f5e1d3293e993ca06070f75c2f29b90af /target/config | |
parent | acd7dc43632c921003b795f25876e98996fc7bf4 (diff) |
use GNU cpio instead of heirloom cpio
On newer hardware heirloom cpio triggers a segfault in memcpy
from glibc (ssse3 optimized version).
Just use default GNU cpio and provide it via host package.
Diffstat (limited to 'target/config')
-rw-r--r-- | target/config/Config.in.tools | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/target/config/Config.in.tools b/target/config/Config.in.tools index 4d4fb73e5..66b717cda 100644 --- a/target/config/Config.in.tools +++ b/target/config/Config.in.tools @@ -1,8 +1,4 @@ # always required from OpenADK -config ADK_HOST_BUILD_HEIRLOOM_CPIO - bool - default y - config ADK_HOST_BUILD_ADK_HELPER bool default y @@ -74,6 +70,10 @@ config ADK_HOST_BUILD_CMAKE default y if ADK_BUILD_COMPILER_LLVM default n +config ADK_HOST_BUILD_CPIO + bool + default n + config ADK_HOST_BUILD_FILE bool default n |