fixed busybox

This commit is contained in:
bauen1 2017-07-04 23:27:04 +02:00
parent 80ab1432d0
commit 9747e61ec9

View File

@ -13,8 +13,8 @@ NUM_CORES=$(grep ^processor /proc/cpuinfo | wc -l)
# Calculate the number of 'make' jobs to be used later. # Calculate the number of 'make' jobs to be used later.
NUM_JOBS=$((NUM_CORES * JOB_FACTOR)) NUM_JOBS=$((NUM_CORES * JOB_FACTOR))
# Remember the glibc installation area. # Remember the sysroot
GLIBC_PREPARED=$(pwd)/work/glibc/glibc_prepared SYSROOT=$(pwd)/work/sysroot
cd work/busybox cd work/busybox
@ -53,10 +53,10 @@ fi
# This variable holds the full path to the glibc installation area as quoted string. # This variable holds the full path to the glibc installation area as quoted string.
# All back slashes are escaped (/ => \/) in order to keep the 'sed' command stable. # All back slashes are escaped (/ => \/) in order to keep the 'sed' command stable.
GLIBC_PREPARED_ESCAPED=$(echo \"$GLIBC_PREPARED\" | sed 's/\//\\\//g') SYSROOT_ESCAPED=$(echo \"$SYSROOT\" | sed 's/\//\\\//g')
# Now we tell BusyBox to use the glibc prepared area. # Now we tell BusyBox to use the glibc prepared area.
sed -i "s/.*CONFIG_SYSROOT.*/CONFIG_SYSROOT=$GLIBC_PREPARED_ESCAPED/" .config sed -i "s/.*CONFIG_SYSROOT.*/CONFIG_SYSROOT=$SYSROOT_ESCAPED/" .config
# Read the 'CFLAGS' property from '.config' # Read the 'CFLAGS' property from '.config'
CFLAGS="$(grep -i ^CFLAGS .config | cut -f2 -d'=')" CFLAGS="$(grep -i ^CFLAGS .config | cut -f2 -d'=')"