]> rtime.felk.cvut.cz Git - can-benchmark.git/commitdiff
continuous: Memcpy bug was fixed upstream
authorMichal Sojka <sojkam1@fel.cvut.cz>
Sat, 19 Sep 2015 11:02:36 +0000 (13:02 +0200)
committerMichal Sojka <sojkam1@fel.cvut.cz>
Sat, 19 Sep 2015 11:02:36 +0000 (13:02 +0200)
continuous/steps/11-patch

index 79ed0f470dd1e993f667280c963986082fcf2f12..8c5397c26308d602e6fd41877842120b74c89803 100755 (executable)
@@ -21,7 +21,10 @@ function vercmp()
     dpkg --compare-versions $v1 $op $v2
 }
 
-if vercmp v4.2-rc2-34-g0b05e2d lt $(git describe); then
+git_desc=$(git describe)
+
+if vercmp v4.2-rc2-34-g0b05e2d lt $git_desc &&
+   vercmp v4.3-rc1-144-gf240bdd gt $git_desc ; then
     # Revert commit that causes unbootable system
     git revert --no-edit 0b05e2d671c40cfb57e66e4e402320d6e056b2f8 # powerpc/32: cacheable_memcpy becomes memcpy
 fi