]> rtime.felk.cvut.cz Git - can-benchmark.git/blob - continuous/steps/11-patch
continuous: Revert another broken commit
[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^..HEAD|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 # It the dts file exists, next command fails
37 rm -f arch/powerpc/boot/dts/shark-ryu.dts
38 git apply --index < ../shark-ryu-board-patch.patch