aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/startup-monitor
AgeCommit message (Expand)Author
2010-05-25Make the do_patch apply=yes param implicit if extension is .diff/.patchChris Larson
2010-05-25Rename url params patch=<ignored>/pnum=<n> to apply={yes,no}/striplevel=<n>Chris Larson
2010-04-12recipes: move checksums to recipes from checksums.iniMartin Jansa
2009-05-11startup-monitor: Add missing PRFlorian Boor
2009-05-09startup-monitor: fix makefile - don't strip on installAndrea Adami
2009-03-17rename packages/ to recipes/ per earlier agreementDenys Dmytriyenko
imo/icewm-1.6.5 OpenEmbedded layers collection contribution treesGrokmirror user
aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/pw-am.sh
blob: 8987eee8eb3ecb652fe9327eb34602cee20d90ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh
#
# Idea and implementation:  Koen Kooi
# Multiple patches support: Marcin Juszkiewicz
#
# This script will fetch an 'mbox' patch from patchwork and git am it
# usage: pw-am.sh <number>
# example: 'pw-am.sh 221' will get the patch from http://patchwork.openembedded.org/patch/221/

for patchnumber in $@;
do
	wget -nv http://patches.openembedded.org/patch/$patchnumber/mbox/ -O pw-am-$patchnumber.patch
	git am -s pw-am-$patchnumber.patch
	rm pw-am-$patchnumber.patch
done