Idwer Vollering (vidwer@gmail.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/1611
-gerrit
commit d69a990eeec45a65b3f6cd1dc7e49ceb341a5380 Author: Idwer Vollering vidwer@gmail.com Date: Wed Oct 24 15:05:09 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: I45d35b68b6a57579a6ad0525c0a72cc8122850dd Signed-off-by: Idwer Vollering vidwer@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"