Zheng Bao (zheng.bao@amd.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/1935
-gerrit
commit eb77a186233aa8c9e01a2740fe8906928e96defb Author: Zheng Bao fishbaozi@gmail.com Date: Wed Nov 28 16:13:40 2012 +0800
crossgcc: Only build iasl in acpica.
Other acpica's modules are not needed.
Change-Id: I16846caa922aded8db7c1d9e64c007fb2772ff98 Signed-off-by: Zheng Bao zheng.bao@amd.com Signed-off-by: zbao fishbaozi@gmail.com --- util/crossgcc/buildgcc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/util/crossgcc/buildgcc b/util/crossgcc/buildgcc index 983dd3b..8689e1a 100755 --- a/util/crossgcc/buildgcc +++ b/util/crossgcc/buildgcc @@ -601,7 +601,7 @@ printf "Building IASL ${IASL_VERSION} ... " export PATH=$PATH:$DESTDIR$TARGETDIR/bin rm -f ../../source/compiler/.failed CFLAGS="$HOSTCFLAGS" - $MAKE CC="$CC" || touch ../../source/compiler/.failed + $MAKE CC="$CC" iasl || 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