aboutsummaryrefslogtreecommitdiffstats
path: root/package/kernel/mac80211/scripts/import-backports.sh
blob: d056eb6d047f0a1fb32d792a9aa23a75922764e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
#!/usr/bin/env bash
BASE=$1; shift

usage() {
	echo "Usage: $0 NNN <file>..."
	exit 1
}

check_number() {
	case "$1" in
		[0-9][0-9][0-9]) return 0;;
	esac
	return 1;
}

patch_header()
{
	awk '
	/^(---|\*\*\*|Index:)[ \t][^ \t]|^diff -/ \
		{ exit }
		{ print }
	'
}

strip_diffstat()
{
	awk '
	/#? .* \| / \
		{ eat = eat $0 "\n"
		  next }
	/^#? .* files? changed(, .* insertions?\(\+\))?(, .* deletions?\(-\))?/ \
		{ eat = ""
		  next }
		{ print eat $0
		  eat = "" }
	'
}

strip_trailing_whitespace() {
	sed -e 's:[ '$'\t'']*$::'
}

fixup_header() {
	awk '
		/^From / { next }
		/^Subject: / {
			sub("Subject: \\[[^\]]*\\]", "Subject: [PATCH]")
		}
		{ print }
	'
}

check_number "$BASE" || usage

quilt series > /dev/null || {
	echo "Not in quilt directory"
	exit 2
}

get_next() {
	NEW=$BASE
	quilt series | while read CUR; do
		[ -n "$CUR" ] || break
		CUR=${CUR%%-*}
		check_number "$CUR" || continue
		[ "$CUR" -lt "$NEW" ] && continue
		[ "$CUR" -ge "$(($BASE + 100))" ] && continue
		NEW="$(($CUR + 1))"
		echo $NEW
	done | tail -n1
}

CUR=`get_next`
CUR="${CUR:-$BASE}"

while [ -n "$1" ]; do
	FILE="$1"; shift
	NAME="$(basename $FILE)"
	NAME="${NAME#[0-9]*-}"
	echo -n "Processing patch $NAME: "

	[ -e "$FILE" ] || {
		echo "file $FILE not found"
		exit 1
	}

	grep -qE "$NAME$" patches/series && {
		echo "already applied"
		continue
	}

	quilt new "$CUR-$NAME" || exit 1
	patch_header < "$FILE" |
		strip_diffstat |
		strip_trailing_whitespace |
		fixup_header > "patches/$CUR-$NAME"

	quilt fold < "$FILE" || {
		cp "$FILE" ./cur_patch
		echo "patch $FILE failed to apply, copied to ./cur_patch"
		exit 1
	}

	quilt refresh -p ab --no-index --no-timestamps

	CUR="$(($CUR + 1))"
done

exit 0