gluon-firmware/scripts/update-patches.sh

20 lines
454 B
Bash
Raw Normal View History

2013-12-28 14:31:11 +00:00
#!/bin/bash
set -e
shopt -s nullglob
2014-01-02 14:16:32 +00:00
. "$1"/scripts/modules.sh
2013-12-28 14:31:11 +00:00
for module in $GLUON_MODULES; do
rm -f "$1"/patches/$module/*.patch
mkdir -p "$1"/patches/$module
2013-12-28 16:17:02 +00:00
cd "$1"/$module
2013-12-28 16:17:02 +00:00
n=0
for commit in $(git rev-list --reverse --no-merges base..patched); do
2013-12-28 16:17:02 +00:00
let n=n+1
git show --pretty=format:'From: %an <%ae>%nDate: %aD%nSubject: %B' $commit > "$1"/patches/$module/"$(printf '%04u' $n)-$(git show -s --pretty=format:%f $commit).patch"
2013-12-28 16:17:02 +00:00
done
2013-12-28 14:31:11 +00:00
done