]> git.ozlabs.org Git - next-scripts/blob - make_abat_scripts
Various updates I forgot to commit
[next-scripts] / make_abat_scripts
1 #!/bin/bash
2
3 d="$1"
4
5 [ -d ../abat ] || mkdir ../abat
6
7 i=1
8 for t in "IBM,9124-720 eServer OpenPower 720" "IBM,9110-51A System p5 510" "IBM,9117-MMA System p 570"
9 do
10         cat >"../abat/$d-abat.ozlabs.ibm.com-$i" <<EOF
11 option title linux-next $d boot test
12 class next type="$t"
13 +\$kernel "master^"
14 +\$config http://ozlabs.au.ibm.com/~tony/abat/configs/no_CONFIG_LOCALVERSION_AUTO.config
15 build generic git git://fs.ozlabs.ibm.com/home/kernel/linux-next.git \$kernel -c \$config -m -j\$num_cpus
16 boot initcall_debug
17 EOF
18         i=$((i + 1));
19 done
20
21 i=1
22 for t in 'type="88552RZ"' 'type="IBM eServer BladeCenter LS20 -[885055U]-"' 'type="-[622142U]-"' 'type="PowerMac7,2"' 'machine_name="js22-bup1"'
23 do
24         cat >"../abat/$d-abat.linux.ibm.com-$i" <<EOF
25 option title linux-next $d boot test
26 class next $t
27 +\$kernel "master^"
28 +\$config http://ozlabs.au.ibm.com/~tony/abat/configs/no_CONFIG_LOCALVERSION_AUTO.config
29 build generic git git://ozlabs.au.ibm.com/srv/git/sfr/next.git \$kernel -c \$config -m -j\$num_cpus
30 boot initcall_debug
31 EOF
32         i=$((i + 1));
33 done
34
35 exit 0