trivial patch for abuild: allow powerpc-elf-gcc, too.
[coreboot.git] / util / abuild / abuild
index 5d97914201faf9af2c9536896ba22a71a3ff0550..dbb2cfec4abdde6d67f1210bf5c0197d5b975f02 100755 (executable)
@@ -1,11 +1,11 @@
 #!/bin/bash
 #
-#  LinuxBIOS autobuild
+#  coreboot autobuild
 #
-#  This script builds LinuxBIOS images for all available targets.
+#  This script builds coreboot images for all available targets.
 #
 #  (C) 2004 by Stefan Reinauer <stepan@openbios.org>
-#  (C) 2006 by coresystems GmbH <info@coresystems.de>
+#  (C) 2006-2008 by coresystems GmbH <info@coresystems.de>
 #
 #  This file is subject to the terms and conditions of the GNU General
 #  Public License. See the file COPYING in the main directory of this
 
 #set -x # Turn echo on....
 
-ABUILD_DATE="October 24, 2006"
-ABUILD_VERSION="0.4"
+ABUILD_DATE="May 27th, 2008"
+ABUILD_VERSION="0.7"
 
 # Where shall we place all the build trees?
-TARGET=$( pwd )/linuxbios-builds
+TARGET=$( pwd )/coreboot-builds
 XMLFILE=$( pwd )/abuild.xml
 
 # path to payload. Should be more generic
@@ -27,7 +27,13 @@ PAYLOAD=/dev/null
 # Lines of error context to be printed in FAILURE case
 CONTEXT=5
 
-TESTSUBMISSION="http://qa.linuxbios.org/deployment/send.php"
+TESTSUBMISSION="http://qa.coreboot.org/deployment/send.php"
+
+# Number of CPUs to compile on per default
+cpus=1
+
+# Configure-only mode
+configureonly=0
 
 # One might want to adjust these in case of cross compiling
 MAKE="make"
@@ -36,7 +42,18 @@ PYTHON=python
 # this can be changed to xml by -x
 mode=text
 
+# silent mode.. no compiler calls, only warnings in the log files.
+# this is disabled per default but can be enabled with -s
+silent=
+
+# clang mode enabled by -sb option.
+scanbuild=false
+
+# stackprotect mode enabled by -ns option.
+stackprotect=false
+
 ARCH=`uname -m | sed -e s/i.86/i386/ -e s/sun4u/sparc64/ \
+       -e s/i86pc/i386/ \
        -e s/arm.*/arm/ -e s/sa110/arm/ -e s/x86_64/amd64/ \
        -e "s/Power Macintosh/ppc/"`
 
@@ -142,26 +159,26 @@ EOF
                        cat <<EOF
 romimage "normal"
        option USE_FALLBACK_IMAGE=0
-       option ROM_IMAGE_SIZE=0x16000
-       option LINUXBIOS_EXTRA_VERSION=".0-normal"
-       payload PAYLOAD
+       option ROM_IMAGE_SIZE=0x17000
+       option COREBOOT_EXTRA_VERSION=".0-normal"
+       payload __PAYLOAD__
 end
 
 romimage "fallback" 
        option USE_FALLBACK_IMAGE=1
-       option ROM_IMAGE_SIZE=0x16000
-       option LINUXBIOS_EXTRA_VERSION=".0-fallback"
-       payload PAYLOAD
+       option ROM_IMAGE_SIZE=0x17000
+       option COREBOOT_EXTRA_VERSION=".0-fallback"
+       payload __PAYLOAD__
 end
-buildrom ./linuxbios.rom ROM_SIZE "normal" "fallback"
+buildrom ./coreboot.rom ROM_SIZE "normal" "fallback"
 EOF
                else
                        cat <<EOF
 romimage "only"
-       option LINUXBIOS_EXTRA_VERSION=".0"
-       payload PAYLOAD
+       option COREBOOT_EXTRA_VERSION=".0"
+       payload __PAYLOAD__
 end
-buildrom ./linuxbios.rom ROM_SIZE "only"
+buildrom ./coreboot.rom ROM_SIZE "only"
 EOF
                fi 
                ) > $TARGET/Config-${VENDOR}_${MAINBOARD}.lb
@@ -173,14 +190,15 @@ EOF
                COMPRESSION="# no compression"
        fi
 
-       sed -i.pre -e s,VENDOR,$VENDOR,g \
-               -e s,MAINBOARD,$MAINBOARD,g \
-               -e s,payload\ PAYLOAD,payload\ $PAYLOAD,g \
-               -e s,CROSSCC,"$CC",g \
-               -e s,CROSS_PREFIX,"$CROSS_COMPILE",g \
-               -e s,CROSS_HOSTCC,"$HOSTCC",g \
-               -e s,__COMPRESSION__,"$COMPRESSION",g \
-               $TARGET/Config-${VENDOR}_${MAINBOARD}.lb
+       cp $TARGET/Config-${VENDOR}_${MAINBOARD}.lb $TARGET/Config-${VENDOR}_${MAINBOARD}.lb.pre
+       sed -e s:VENDOR:$VENDOR:g \
+               -e s:MAINBOARD:$MAINBOARD:g \
+               -e s:payload\ __PAYLOAD__:payload\ $PAYLOAD:g \
+               -e s:CROSSCC:"$CC":g \
+               -e s:CROSS_PREFIX:"$CROSS_COMPILE":g \
+               -e s:CROSS_HOSTCC:"$HOSTCC":g \
+               -e s:__COMPRESSION__:"$COMPRESSION":g \
+               $TARGET/Config-${VENDOR}_${MAINBOARD}.lb.pre > $TARGET/Config-${VENDOR}_${MAINBOARD}.lb
        printf " ok\n"
 }
 
@@ -216,6 +234,9 @@ function create_builddir
        if [ $? -eq 0 ]; then
                printf "ok\n"
                xml "  <builddir>ok</builddir>"
+               xml "  <log>"
+               xmlfile $build_dir/config.log
+               xml "  </log>"
                xml ""
                return 0
        else
@@ -243,17 +264,24 @@ function compile_target
        VENDOR=$1
        MAINBOARD=$2
 
-       printf "  Compiling image .."
+       printf "  Compiling image "
+       test "$cpus" == "" && printf "in parallel .. "
+       test "$cpus" == "1" && printf "on 1 cpu .. "
+       test 0$cpus -gt 1 && printf "on %d cpus in parallel .. " $cpus
+
        CURR=$( pwd )
        cd $TARGET/${VENDOR}_${MAINBOARD}
-       stime=`date +%s`
-       eval $MAKE &> make.log
+       stime=`perl -e 'print time();'`
+       eval $MAKE $silent -j $cpus &> make.log
        ret=$?
-       etime=`date +%s`
+       etime=`perl -e 'print time();'`
        duration=$(( $etime - $stime ))
        if [ $ret -eq 0 ]; then
                xml "  <compile>ok</compile>"
                xml "  <compiletime>${duration}s</compiletime>"
+               xml "  <log>"
+               xmlfile make.log
+               xml "  </log>"
                printf "ok\n" > compile.status
                printf "ok. (took ${duration}s)\n"
                cd $CURR
@@ -301,9 +329,22 @@ function build_target
        TARCH=$( architecture $VENDOR $MAINBOARD )
 
        # default setting
-       CC='$(CROSS_COMPILE)gcc'
-       HOSTCC='gcc'
-       CROSS_COMPILE=''
+
+       CC="${CROSS_COMPILE}gcc"
+       CROSS_COMPILE=""
+       found_crosscompiler=false
+       if which $TARCH-elf-gcc 2>/dev/null >/dev/null; then
+               # i386-elf target needs --divide, for i386-linux, that's the default
+               CC="$TARCH-elf-gcc"
+               if [ "$TARCH" = "i386" ]; then
+                       CC="$CC -Wa,--divide"
+               fi
+               echo using $CC
+               CROSS_COMPILE="$TARCH-elf-"
+               found_crosscompiler=true
+       fi
+
+       HOSTCC='gcc'
 
        printf "Processing mainboard/$VENDOR/$MAINBOARD"
 
@@ -318,7 +359,7 @@ function build_target
        [ -r "$LBROOT/src/mainboard/${VENDOR}/${MAINBOARD}/abuild.info" ] && \
                source $LBROOT/src/mainboard/${VENDOR}/${MAINBOARD}/abuild.info
        
-       if [ "$ARCH" == "$TARCH" ]; then
+       if [ "$ARCH" = "$TARCH" -o $found_crosscompiler = true ]; then
                printf " ($TARCH: ok)\n"
        else
                found_crosscompiler=false
@@ -332,7 +373,7 @@ function build_target
                fi
                if [ "$found_crosscompiler" == "false" -a "$TARCH" == ppc ];then
                        for prefix in powerpc-eabi- powerpc-linux- ppc_74xx- \
-                           powerpc-7450-linux-gnu-; do
+                           powerpc-7450-linux-gnu- powerpc-elf-; do
                                if ${prefix}gcc --version > /dev/null 2> /dev/null ; then
                                        found_crosscompiler=true
                                        CROSS_COMPILE=$prefix
@@ -362,6 +403,25 @@ function build_target
                fi
        fi
 
+       if  [ "$stackprotect" = "true" ]; then
+               CC="$CC -fno-stack-protector"
+       fi
+
+       if  [ "$scanbuild" = "true" ]; then
+               ccwrap=`mktemp`
+               mkdir -p $TARGET/${VENDOR}_${MAINBOARD}
+               mkdir -p $TARGET/scan-build-results-tmp
+               mv $ccwrap $TARGET/${VENDOR}_${MAINBOARD}
+               ccwrap=$TARGET/${VENDOR}_${MAINBOARD}/`basename $ccwrap`
+               echo '#!/bin/sh' > $ccwrap
+               echo $CC' "$@"' >> $ccwrap
+               chmod +x $ccwrap
+               origMAKE=$MAKE
+               MAKE="scan-build --use-cc=$ccwrap -o $TARGET/scan-build-results-tmp -analyze-headers $MAKE GCC=$ccwrap"
+               CC="\$(CC)"
+               HOSTCC="CCC_CC=$HOSTCC \$(CC)"
+       fi
+
        built_successfully $VENDOR $MAINBOARD && \
        {
                printf " ( mainboard/$VENDOR/$MAINBOARD previously ok )\n\n"
@@ -381,10 +441,14 @@ function build_target
        }
        
        create_buildenv $VENDOR $MAINBOARD
-       if [ $? -eq 0 ]; then
+       if [ $? -eq 0  -a  $configureonly -eq 0 ]; then
                compile_target $VENDOR $MAINBOARD && 
                        xml "  <status>ok</status>" ||
                        xml "<status>broken</status>"
+               if [ "$scanbuild" = "true" ]; then
+                       mv `dirname $TARGET/scan-build-results-tmp/*/index.html` $TARGET/${VENDOR}_${MAINBOARD}-scanbuild
+                       MAKE=$origMAKE
+               fi
        fi
 
        xml ""
@@ -403,7 +467,7 @@ function test_target
        fi
 
        # image does not exist. we silently skip the patch.
-       if [ ! -r "$TARGET/${VENDOR}_${MAINBOARD}/linuxbios.rom" ]; then
+       if [ ! -r "$TARGET/${VENDOR}_${MAINBOARD}/coreboot.rom" ]; then
                return 0
        fi
 
@@ -422,9 +486,9 @@ function test_target
 
        printf "Submitting image for board $VENDOR $MAINBOARD to test system...\n"
 
-       curl -f -F "romfile=@$TARGET/${VENDOR}_${MAINBOARD}/linuxbios.rom" \
+       curl -f -F "romfile=@$TARGET/${VENDOR}_${MAINBOARD}/coreboot.rom" \
                -F "mode=abuild" -F "mainboard=${VENDOR}_${MAINBOARD}" -F "submit=Upload" \
-               "http://qa.linuxbios.org/deployment/send.php"
+               "http://qa.coreboot.org/deployment/send.php"
 
        printf "\n"
        return 0
@@ -447,7 +511,12 @@ function myhelp
        printf "    [-x|--xml]                    write xml log file \n"
        printf "                                  (defaults to $XMLFILE)\n"
        printf "    [-T|--test]                   submit image(s) to automated test system\n"
-       printf "    [lbroot]                      absolute path to LinuxBIOS sources\n"
+       printf "    [-c|--cpus <numcpus>]         build on <numcpus> at the same time\n"
+       printf "    [-s|--silent]                 omit compiler calls in logs\n"
+       printf "    [-ns|--nostackprotect]        use gcc -fno-stack-protector option\n"
+       printf "    [-sb|--scan-build]            use clang's static analyzer\n"
+       printf "    [-C|--config]                 configure-only mode\n"
+       printf "    [lbroot]                      absolute path to coreboot sources\n"
        printf "                                  (defaults to $LBROOT)\n\n"
 }
 
@@ -455,10 +524,10 @@ function myversion
 {
        cat << EOF
 
-LinuxBIOS autobuild v$ABUILD_VERSION ($ABUILD_DATE)
+coreboot autobuild v$ABUILD_VERSION ($ABUILD_DATE)
 
 Copyright (C) 2004 by Stefan Reinauer <stepan@openbios.org>
-Copyright (C) 2006 by coresystems GmbH <info@coresystems.de>
+Copyright (C) 2006-2008 by coresystems GmbH <info@coresystems.de>
 
 This program is free software; you may redistribute it under the terms
 of the GNU General Public License. This program has absolutely no
@@ -473,15 +542,23 @@ buildall=false
 LBROOT=$( cd ../..; pwd )
 verbose=false
 
-# parse parameters
-args=`getopt -l version,verbose,help,all,target:,broken,payloads:,test Vvhat:bp:T -- "$@"`
+# parse parameters.. try to find out whether we're running GNU getopt
+getoptbrand="`getopt -V`"
+if [ "${getoptbrand:0:6}" == "getopt" ]; then
+       # Detected GNU getopt that supports long options.
+       args=`getopt -l version,verbose,help,all,target:,broken,payloads:,test,cpus:,silent,xml,config Vvhat:bp:Tc:sxC -- "$@"`
+       eval set "$args"
+else
+       # Detected non-GNU getopt
+       args=`getopt Vvhat:bp:Tc:sxC $*`
+       set -- $args
+fi
 
 if [ $? != 0 ]; then
        myhelp
        exit 1
 fi
 
-eval set "$args"
 while true ; do
        case "$1" in
                -x|--xml)       shift; mode=xml; rm -f $XMLFILE ;;
@@ -493,6 +570,11 @@ while true ; do
                -h|--help)      shift; myversion; myhelp; exit 0;;
                -p|--payloads)  shift; payloads="$1"; shift;;
                -T|--test)      shift; hwtest=true;;
+               -c|--cpus)      shift; cpus="$1"; test "$cpus" == "max" && cpus=""; shift;;
+               -s|--silent)    shift; silent="-s";;
+               -ns|--nostackprotect) shift; stackprotect=true;;
+               -sb|--scan-build) shift; scanbuild=true;;
+               -C|--config)    shift; configureonly=1;;
                --)             shift; break;;
                -*)             printf "Invalid option\n\n"; myhelp; exit 1;;
                *)              break;;