diff options
-rwxr-xr-x | scripts/prereq.sh | 6 | ||||
-rw-r--r-- | target/config/Config.in.tools | 5 |
2 files changed, 3 insertions, 8 deletions
diff --git a/scripts/prereq.sh b/scripts/prereq.sh index e0d2aa002..0222172b9 100755 --- a/scripts/prereq.sh +++ b/scripts/prereq.sh @@ -688,6 +688,9 @@ fi if [ $host_build_tar -eq 1 ]; then printf "\t%s\n" "select ADK_HOST_BUILD_TAR" >> $topdir/target/config/Config.in.prereq fi +if [ $host_build_coreutils -eq 1 ]; then + printf "\t%s\n" "select ADK_HOST_BUILD_COREUTILS" >> $topdir/target/config/Config.in.prereq +fi if [ $host_build_cpio -eq 1 ]; then printf "\t%s\n" "select ADK_HOST_BUILD_CPIO" >> $topdir/target/config/Config.in.prereq fi @@ -713,9 +716,6 @@ fi if [ $host_build_qemu -eq 1 ]; then printf "\t%s\n" "select ADK_HOST_BUILD_QEMU if ADK_HOST_NEED_QEMU" >> $topdir/target/config/Config.in.prereq fi -if [ $host_build_coreutils -eq 1 ]; then - printf "\t%s\n" "select ADK_HOST_BUILD_COREUTILS if ADK_HOST_NEED_COREUTILS" >> $topdir/target/config/Config.in.prereq -fi # create Host OS symbols case $os in diff --git a/target/config/Config.in.tools b/target/config/Config.in.tools index c39916044..3ca583294 100644 --- a/target/config/Config.in.tools +++ b/target/config/Config.in.tools @@ -223,11 +223,6 @@ config ADK_HOST_BUILD_QEMU bool default n -config ADK_HOST_NEED_COREUTILS - bool - default y if ADK_TARGET_BOARD_BCM28XX - default n - config ADK_HOST_BUILD_COREUTILS bool default n |