summaryrefslogtreecommitdiffstats
path: root/ci/build-all-defconfigs.sh
blob: 839d30a54be9920ed66a90ab74b53bebf6b1757c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
#!/bin/bash

set -ex
set -eo pipefail

BUILD_INFO=0
CONFIGTAG="_defconfig"

DEFCONFIGS=();

while getopts "o:p:r" opt; do
  case $opt in
    o)
      echo "Output directory: $OPTARG"
      OUTDIR="$OPTARG"
      ;;
    p)
      echo "Platforms to build: $OPTARG"
      PLATFORM_LIST="$OPTARG"
      ;;
    r)
      echo "Build legal-info for release"
      BUILD_INFO=1
      ;;
    \?)
      echo "Invalid option: -$OPTARG"
      exit 1
      ;;
    :)
      echo "Option -$OPTARG requires an argument."
      exit 1
      ;;
  esac
done

if [ -z "${PLATFORM_LIST}" ]; then
        echo "Using all the defconfigs for all the platforms"
        DEFCONFIGS=`(cd openpower/configs; ls -1 *_defconfig)`
else
        IFS=', '
        for p in ${PLATFORM_LIST};
        do
                DEFCONFIGS+=($p$CONFIGTAG)
        done
fi

if [ -z "${OUTDIR}" or ! -d "${OUTDIR}" ]; then
	echo "No output directory specified"
	exit 1;
fi

if [ -z "$CCACHE_DIR" ]; then
	CCACHE_DIR=`pwd`/.op-build_ccache
fi

shopt -s expand_aliases
source op-build-env

if [ -n "$DL_DIR" ]; then
	unset BR2_DL_DIR
	export BR2_DL_DIR=${DL_DIR}
fi

for i in ${DEFCONFIGS[@]}; do
        rm -rf output/*
        op-build $i
        echo 'BR2_CCACHE=y' >> output/.config
        echo "BR2_CCACHE_DIR=\"$CCACHE_DIR\"" >> output/.config
        echo 'BR2_CCACHE_INITIAL_SETUP=""' >> output/.config

        op-build olddefconfig
        op-build
        r=$?

        if [ ${BUILD_INFO} = 1 ] && [ $r = 0 ]; then
                op-build legal-info
                mv output/legal-info ${OUTDIR}/$i-legal-info
        fi

        mkdir ${OUTDIR}/$i-images
        mv output/images/* ${OUTDIR}/$i-images/
        mv output/.config ${OUTDIR}/$i-images/.config
        lsb_release -a > ${OUTDIR}/$i-images/lsb_release
        if [ $r -ne 0 ]; then
        	exit $r
        fi
done

OpenPOWER on IntegriCloud