]> rtime.felk.cvut.cz Git - can-benchmark.git/blob - continuous/steps/11-patch
3a478c257c91db6fa589bc7cfb772a2b75a803b3
[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 $(git rev-parse HEAD); then
25     # Revert commit that causes unbootable system
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 # It the dts file exists, next command fails
31 rm -f arch/powerpc/boot/dts/shark-ryu.dts
32 git apply --index < ../shark-ryu-board-patch.patch