comparison mini-native.sh @ 709:64cc63ad26ce

Add BUILD_VERBOSE config option.
author Rob Landley <rob@landley.net>
date Wed, 08 Apr 2009 19:31:55 -0500
parents b4a9c0084f2f
children
comparison
equal deleted inserted replaced
708:a0db930af698 709:64cc63ad26ce
64 # Alas, if we feed install and install_utils to make at the same time with 64 # Alas, if we feed install and install_utils to make at the same time with
65 # -j > 1, it dies. Not SMP safe. 65 # -j > 1, it dies. Not SMP safe.
66 for i in install install_utils 66 for i in install install_utils
67 do 67 do
68 make CROSS="${ARCH}-" KERNEL_HEADERS="${TOOLS}/include" \ 68 make CROSS="${ARCH}-" KERNEL_HEADERS="${TOOLS}/include" \
69 PREFIX="${UCLIBC_TOPDIR}/" \ 69 PREFIX="${UCLIBC_TOPDIR}/" $VERBOSITY \
70 RUNTIME_PREFIX="$UCLIBC_DLPREFIX/" DEVEL_PREFIX="$UCLIBC_DLPREFIX/" \ 70 RUNTIME_PREFIX="$UCLIBC_DLPREFIX/" DEVEL_PREFIX="$UCLIBC_DLPREFIX/" \
71 UCLIBC_LDSO_NAME=ld-uClibc -j $CPUS $i || dienow 71 UCLIBC_LDSO_NAME=ld-uClibc -j $CPUS $i || dienow
72 done 72 done
73 cd .. 73 cd ..
74 74
96 96
97 # Build and install busybox 97 # Build and install busybox
98 98
99 setupfor busybox 99 setupfor busybox
100 make allyesconfig KCONFIG_ALLCONFIG="${SOURCES}/trimconfig-busybox" && 100 make allyesconfig KCONFIG_ALLCONFIG="${SOURCES}/trimconfig-busybox" &&
101 make -j $CPUS CROSS_COMPILE="${ARCH}-" && 101 make -j $CPUS CROSS_COMPILE="${ARCH}-" $VERBOSITY &&
102 make busybox.links && 102 make busybox.links &&
103 cp busybox "${TOOLS}/bin" 103 cp busybox "${TOOLS}/bin"
104 104
105 [ $? -ne 0 ] && dienow 105 [ $? -ne 0 ] && dienow
106 106