]> rtime.felk.cvut.cz Git - can-benchmark.git/blob - continuous/steps/11-patch
d609541586fe4a9b3472a231c7c568447e9be07f
[can-benchmark.git] / continuous / steps / 11-patch
1 #!/bin/bash
2
3 set -e
4
5 cd linux
6
7 git reset --hard
8
9 echo "! Repo $(git config remote.origin.url) $(git describe) $(git rev-parse HEAD) ok"
10
11 function vercmp()
12 {
13     v1=${1#v}
14     op=$2
15     v2=${3#v}
16
17     # Make release candidates sort before the final release
18     v1=${v1/rc/\~}
19     v2=${v2/rc/\~}
20
21     dpkg --compare-versions $v1 $op $v2
22 }
23
24 if git rev-list --ancestry-path 0b05e2d671c40cfb57e66e4e402320d6e056b2f8..1cd03890ea64795e53f17a94928cca22495acb2a^|grep -q $(git rev-parse HEAD); then
25     # Revert commit that causes unbootable system (v4.2-rc2-34-g0b05e2d)
26     git revert --no-edit 0b05e2d671c40cfb57e66e4e402320d6e056b2f8 # powerpc/32: cacheable_memcpy becomes memcpy
27     git reset HEAD^ # Do not commit revert - this helps with bisecting
28 fi
29
30 if git rev-list --ancestry-path 990486c8af044f89bddfbde1d1cf9fde449bedbf^..7a5692e6e533fd379081ab06fb58f3f5ee4d80bc^|grep -q $(git rev-parse HEAD); then
31     # Revert commit that causes compile error (v4.3-rc4-3-g990486c)
32     git revert --no-edit 990486c8af044f89bddfbde1d1cf9fde449bedbf # strscpy: zero any trailing garbage bytes in the destination
33     git reset HEAD^ # Do not commit revert - this helps with bisecting
34 fi
35
36 if git rev-list --ancestry-path 7322dd755e7dd34bc5359aa27abeed1687e0f628^..v4.6^|grep -q $(git rev-parse HEAD); then
37     # Revert commit that causes compile error. This error seems to be
38     # caused by a compiler bug (see the message of the reverted
39     # commit) and is magically fixed by an unrelated commit merged
40     # before v4.6 (commit 20decb7e486d7eefff3931f58d092d2d7c024a1c
41     # "drivers: net: xgene: Fix error handling")
42     git revert --no-edit 7322dd755e7dd34bc5359aa27abeed1687e0f628 # byteswap: try to avoid __builtin_constant_p gcc bug
43     git reset HEAD^ # Do not commit revert - this helps with bisecting
44 fi
45
46 if git rev-list --ancestry-path 9402c684613163888714df0955fa1f17142b08bf^..|grep -q $(git rev-parse HEAD); then
47     # Apply fix for commit that breaks boot
48     git apply --index <<EOF
49 --- a/arch/powerpc/lib/feature-fixups.c
50 +++ b/arch/powerpc/lib/feature-fixups.c
51 @@ -154,7 +154,7 @@ static void do_final_fixups(void)
52
53  void apply_feature_fixups(void)
54  {
55 -       struct cpu_spec *spec = *PTRRELOC(&cur_cpu_spec);
56 +       struct cpu_spec *spec = PTRRELOC(*PTRRELOC(&cur_cpu_spec));
57  
58         /*
59          * Apply the CPU-specific and firmware specific fixups to kernel text
60 EOF
61 fi
62
63 # It the dts file exists, next command fails
64 rm -f arch/powerpc/boot/dts/shark-ryu.dts
65 git apply --index < ../shark-ryu-board-patch.patch