]> Zhao Yanbai Git Server - minix.git/commitdiff
Removing MK{GCCCMDS,BINUTILS}=yes in image scripts
authorLionel Sambuc <lionel@minix3.org>
Wed, 16 Oct 2013 13:12:30 +0000 (15:12 +0200)
committerLionel Sambuc <lionel@minix3.org>
Sat, 1 Mar 2014 08:05:01 +0000 (09:05 +0100)
MKGCCCMDS=yes and MKBINUTILS=yes where added on the build command line
while they should have been left to the developer's discretion.

To build and install binutils and gcc do the following:

 $ BUILDVARS='-V MKBINUTILS=yes -V MKGCC=yes -V MKGCCCMDS=yes' \
    ./releasetools/arm_sdimage.sh
or

 $ BUILDVARS='-V MKBINUTILS=yes -V MKGCC=yes -V MKGCCCMDS=yes' \
    ./releasetools/x86_hdimage.sh

Change-Id: Icb46a3422f527747768fa107d14fc19ff3ac0a63

releasetools/arm_sdimage.sh
releasetools/x86_hdimage.sh

index 2966e912b3572948de484a79f7d705c76e0b4eeb..8a413402f601c37394a5faa9129e8366f35671e1 100755 (executable)
@@ -58,7 +58,8 @@ then
 fi
 
 if [ ! -f ${BUILDSH} ]
-then   echo "Please invoke me from the root source dir, where ${BUILDSH} is."
+then
+       echo "Please invoke me from the root source dir, where ${BUILDSH} is."
        exit 1
 fi
 
@@ -89,7 +90,7 @@ cp ${RELEASETOOLSDIR}/u-boot/${U_BOOT_BIN_DIR}/MLO ${IMG_DIR}/
 # Call build.sh using a sloppy file list so we don't need to remove the installed /etc/fstag
 #
 export CPPFLAGS=${FLAG}
-sh ${BUILDSH} -V SLOPPY_FLIST=yes -V MKBINUTILS=yes -V MKGCCCMDS=yes -j ${JOBS} -m ${ARCH} -O ${OBJ} -D ${DESTDIR} ${BUILDVARS} -U -u distribution
+sh ${BUILDSH} -V SLOPPY_FLIST=yes -j ${JOBS} -m ${ARCH} -O ${OBJ} -D ${DESTDIR} ${BUILDVARS} -U -u distribution
 
 #
 # This script creates a bootable image and should at some point in the future
index 06c6dc2fdf2d7a8e21d5d67e696f5130899c31ee..6d0f9ee63c162a04086055be6a138b6c2be8d9d1 100755 (executable)
@@ -50,7 +50,7 @@ mkdir -p ${IMG_DIR} ${CDFILES}
 # Call build.sh using a sloppy file list so we don't need to remove the installed /etc/fstag
 #
 export CPPFLAGS=${FLAG}
-sh ${BUILDSH} -V SLOPPY_FLIST=yes -V MKBINUTILS=yes -V MKGCCCMDS=yes -j ${JOBS} -m ${ARCH} -O ${OBJ} -D ${DESTDIR} ${BUILDVARS} -U -u distribution
+sh ${BUILDSH} -V SLOPPY_FLIST=yes -j ${JOBS} -m ${ARCH} -O ${OBJ} -D ${DESTDIR} ${BUILDVARS} -U -u distribution
 
 if [ "x${ISOMODE}" = "x1" ]
 then