[coreboot] New patch to review for coreboot: 4b9e5b9 crossgcc: update to acpica-20121018

Idwer Vollering (vidwer@gmail.com) gerrit at coreboot.org
Wed Oct 24 16:09:49 CEST 2012


Idwer Vollering (vidwer at gmail.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/1616

-gerrit

commit 4b9e5b97bada015d604a6c0f90df788a519c796e
Author: Idwer Vollering <vidwer at gmail.com>
Date:   Wed Oct 24 16:08:57 2012 +0200

    crossgcc: update to acpica-20121018
    
    This patch updates crossgcc to download acpica-20121018 and compile iasl.
    To do this, changes to util/crossgcc/buildgcc are necessary.
    
    Increase CROSSGCC_VERSION to 1.09
    
    Change-Id: I483db24a547521de9ee5ac3e258cbc63dfa68f5c
    Signed-off-by: Idwer Vollering <vidwer at gmail.com>
---
 util/crossgcc/buildgcc | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/util/crossgcc/buildgcc b/util/crossgcc/buildgcc
index c51c250..0e5dcf5 100755
--- a/util/crossgcc/buildgcc
+++ b/util/crossgcc/buildgcc
@@ -593,13 +593,13 @@ printf "Building IASL ${IASL_VERSION} ... "
 (
 	cd $IASL_DIR/generate/unix
 	export PATH=$PATH:$DESTDIR$TARGETDIR/bin
-	rm -f $IASL_DIR/source/compiler/.failed
+	rm -f ../../source/compiler/.failed
 	CFLAGS="$HOSTCFLAGS"
-	$MAKE CC="$CC" || touch $IASL_DIR/source/compiler/.failed
-	rm -f $DESTDIR$TARGETDIR/bin/iasl || touch $IASL_DIR/source/compiler/.failed
-	if [ -d bin32 ]; then cp bin32/iasl $DESTDIR$TARGETDIR/bin || touch $IASL_DIR/source/compiler/.failed
-	if [ -d bin64 ]; then cp bin64/iasl $DESTDIR$TARGETDIR/bin || touch $IASL_DIR/source/compiler/.failed
-	if [ ! -f $IASL_DIR/source/compiler/.failed ]; then touch $IASL_DIR/source/compiler/.success; fi
+	$MAKE CC="$CC" || touch ../../source/compiler/.failed
+	rm -f $DESTDIR$TARGETDIR/bin/iasl || touch ../../source/compiler/.failed
+	if [ -d bin32 ]; then cp bin32/iasl $DESTDIR$TARGETDIR/bin || touch ../../source/compiler/.failed ; fi
+	if [ -d bin64 ]; then cp bin64/iasl $DESTDIR$TARGETDIR/bin || touch ../../source/compiler/.failed ; fi
+	if [ ! -f ../../source/compiler/.failed ]; then touch ../../source/compiler/.success; fi
 ) > $IASL_DIR/source/compiler/crossgcc-build.log 2>&1
 test -r $IASL_DIR/source/compiler/.failed && printf "${RED}failed${NC}\n" || \
 	     printf "${green}ok${NC}\n"




More information about the coreboot mailing list