2013-12-28 14:11:59 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
shopt -s nullglob
|
|
|
|
|
2013-12-28 14:31:11 +00:00
|
|
|
. "$1"/modules
|
2013-12-28 14:11:59 +00:00
|
|
|
|
|
|
|
for module in $GLUON_MODULES; do
|
2013-12-28 14:31:11 +00:00
|
|
|
dir="$1"/$module
|
2013-12-28 14:11:59 +00:00
|
|
|
git -C $dir checkout -B patched base
|
|
|
|
|
2013-12-28 14:31:11 +00:00
|
|
|
if [ -z "$1"/patches/$module/*.patch ]; then continue; fi
|
|
|
|
git -C "$dir" am "$1"/patches/$module/*.patch
|
2013-12-28 14:11:59 +00:00
|
|
|
done
|