]> git.ozlabs.org Git - next-scripts/commitdiff
do_build: Print what we're doing
authorMichael Ellerman <mpe@ellerman.id.au>
Thu, 18 Jun 2015 00:18:17 +0000 (10:18 +1000)
committerMichael Ellerman <mpe@ellerman.id.au>
Fri, 19 Jun 2015 05:55:29 +0000 (15:55 +1000)
do_build

index 10081b26ad7fb87dcaba38eb2dbc08a9c2a86101..6909065762d81ffeb5c75702327fb5043936170d 100755 (executable)
--- a/do_build
+++ b/do_build
@@ -27,6 +27,7 @@ ssh root@"$build_host" unshare -n su $(id -u -n) <<-EOF
        e=\$d.except
        echo CONFIG_BUILD_DOCSRC=n >\$e || exit 1
        KCONFIG_ALLCONFIG=\$e cross -n -N -a x86_64 -c $gcc_version O=\$d allyesconfig || exit 1
+       echo "Forking x86 build ..."
        /usr/bin/time cross -n -N -a x86_64 -c $gcc_version O=\$d -j$j_factor -s > \$log_x86 2>&1 &
 
        echo Building: powerpc ppc64_defconfig
@@ -34,6 +35,7 @@ ssh root@"$build_host" unshare -n su $(id -u -n) <<-EOF
        [ -d \$d ] || mkdir \$d || exit 1
        log_ppc=\$d.log
        cross -n -N -a powerpc64 -k powerpc -c $gcc_version O=\$d ppc64_defconfig || exit 1
+       echo "Forking powerpc build ..."
        /usr/bin/time cross -n -N -a powerpc64 -k powerpc -c $gcc_version O=\$d -j$j_factor -s > \$log_ppc 2>&1 &
 
        echo Building: arm multi_v7_defconfig
@@ -41,6 +43,7 @@ ssh root@"$build_host" unshare -n su $(id -u -n) <<-EOF
        [ -d \$d ] || mkdir \$d || exit 1
        log_arm=\$d.log
        cross -n -N -a arm -c $gcc_version O=\$d multi_v7_defconfig || exit 1
+       echo "Forking arm build ..."
        /usr/bin/time cross -n -N -a arm -c $gcc_version O=\$d -j$j_factor -s > \$log_arm 2>&1 &
 
        wait %3