broadcom/vc5: Turn the decimate mode field into an enum in the XML.
[mesa.git] / bin / get-extra-pick-list.sh
index 4d3938931fb9838e6b0023c913caef4a07ff1176..b42085f2abad5ebd15af5fa9780007b21e7b961d 100755 (executable)
@@ -30,7 +30,15 @@ do
                if grep -q ^$candidate already_picked ; then
                        continue
                fi
-               echo Commit $candidate references $sha
+               # Or if it isn't in the ignore list.
+               if [ -f bin/.cherry-ignore ] ; then
+                       if grep -q ^$candidate bin/.cherry-ignore ; then
+                               continue
+                       fi
+               fi
+               printf "Commit \"%s\" references %s\n" \
+                      "`git log -n1 --pretty=oneline $candidate`" \
+                      "$sha"
        done
 done