summaryrefslogtreecommitdiffstats
path: root/combo-layerhook-bitbake.sh
blob: ad10195acc565cf71c273c18ec30b1a549c8212a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh
# Hook to add source component/revision info to commit message
# Parameter:
#   $1 patch-file
#   $2 revision
#   $3 reponame

patchfile=$1
rev=$2
reponame=$3

sed -i -e "s#Subject: \[PATCH\] \(.*\)#Subject: \[PATCH\] bitbake: \1#" $patchfile
sed -i -e "0,/^Signed-off-by:/s#\(^Signed-off-by:.*\)#\(Bitbake rev: $rev\)\n\n\1#" $patchfile