forked from NVIDIA-BaseOS-6/linux-nvidia-6.5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
update-dkms-versions
executable file
·195 lines (171 loc) · 5.27 KB
/
update-dkms-versions
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
#!/bin/bash
remote_repo=''
remote_branch='main'
sru_cycle=
while :
do
if [ "$1" = "--remote-repo" ]; then
remote_repo="$2"
shift 2
elif [ "$1" = "--remote-branch" ]; then
remote_branch="$2"
shift 2
elif [ "$1" = "--sru-cycle" ]; then
sru_cycle="$2"
shift 2
else
break
fi
done
if [ "$#" -ne 0 ]; then
{
echo "Usage: $0 [<options>]"
echo " --remote-repo <url>"
echo " --sru-cycle <cycle>"
} 1>&2
exit 1
fi
default_sru_cycle()
{
local tracking_bug
local version
# Pick out the cycle from the tracking bug file.
if [ -f "$DEBIAN/tracking-bug" ]; then
read tracking_bug sru_cycle X <"$DEBIAN/tracking-bug"
fi
if [ -z "$sru_cycle" ]; then
echo "$0: sru-cycle not found via debian/tracking-bug; specify --sru-cycle" 1>&2
exit 1
fi
sru_cycle=$(echo "$sru_cycle" | sed -e 's/-[0-9][0-9]*$//' -e 's/^kernel-sru-cycle-//')
#echo "default_sru_cycle: version<$version> sru_cycle<$sru_cycle>"
}
# Determine where our changelog is.
DEBIAN=debian
[ -f 'debian/debian.env' ] && . 'debian/debian.env'
[ -z "$sru_cycle" ] && default_sru_cycle
if [ -z "$remote_repo" ]; then
case "$sru_cycle" in
c[0-9][0-9][0-9][0-9].[0-9][0-9].[0-9][0-9])
remote_repo='security' ;;
*)
remote_repo='main' ;;
esac
fi
case "$remote_repo" in
security)
remote_repo='ssh+git://git.launchpad.net/~canonical-kernel-security-team/canonical-kernel-private/+git/kernel-versions'
remote_name='security'
;;
main)
remote_repo='git://git.launchpad.net/~canonical-kernel/+git/kernel-versions'
remote_name='main'
;;
*)
remote_name='adhoc'
;;
esac
#
# kernel-versoins repository dkms-version mapping see below for details:
# https://git.launchpad.net/~canonical-kernel/+git/kernel-versions/plain/README
#
kv_repo="$HOME/.cache/kernel-versions-bare"
# Now we know where our repo is and what it called update it.
# We maintain "persistent" remotes for main and security, but assume
# any manually supplied entries are transient.
(
[ ! -d "$kv_repo" ] && mkdir -p "$kv_repo"
cd "$kv_repo" || exit 1
[ ! -f config ] && git init -q --bare
current_url=$(git config "remote.$remote_name.url")
if [ -z "$current_url" ]; then
git remote add "$remote_name" "$remote_repo"
elif [ "$current_url" != "$remote_repo" ]; then
git config "remote.$remote_name.url" "$remote_repo"
fi
git fetch -q -p "$remote_name"
) || exit 1
cat_file()
{
(cd "$kv_repo" && git cat-file "$@") || exit 1
}
present=$(cat_file -t "$remote_name/$remote_branch:devel/" 2>/dev/null)
if [ "$present" ]; then
git_base_devel="$remote_name/$remote_branch:devel/"
else
git_base_devel="$remote_name/$remote_branch:tip/"
fi
git_base="$remote_name/$remote_branch:$sru_cycle/"
git_human="$remote_name/$sru_cycle"
# Determine if we have this cycle.
present=$(cat_file -t "$git_base" 2>/dev/null)
if [ "$present" = "" ]; then
# If we don't have the cycle in the development cycle then
# fall back to master.
case "$sru_cycle" in
d*) git_base="$git_base_devel" ;;
*) echo "$sru_cycle: cycle not found in $remote_repo" 2>&1
exit 1
;;
esac
fi
# Determine our series and mainline version from our own changelog.
our_series=$(LC_ALL=C dpkg-parsechangelog -l"$DEBIAN/changelog" -SDistribution)
if [ "$our_series" = "UNRELEASED" ]; then
our_series=$(LC_ALL=C dpkg-parsechangelog -l"$DEBIAN/changelog" -o1 -c1 -SDistribution)
fi
our_mainline=$(LC_ALL=C dpkg-parsechangelog -l"$DEBIAN/changelog" -SVersion | sed -e 's/-.*//')
our_package=$(LC_ALL=C dpkg-parsechangelog -l"$DEBIAN/changelog" -SSource)
our_source=$(echo "$our_package" | sed -e 's/-restricted-modules//')
case "$our_package" in
linux-restricted-modules*) our_type="lrm" ;;
*) our_type="main" ;;
esac
# Update rules are complex. We update development series kernels to the
# versions in development. For stable series we update versions against
# the series in which our prime kernel was built. This is expressed
# via the map/dkms-versions namespace. Attempt to map via our series
# and then our mainline-version.
# Try and find a package specific dkms-versions fragment. Try:
# handle+type
# series+type
# mainline+type
# series - backwards compatibility
# mainline - backwards compatibility
for versions_path_tail in \
"$our_series:$our_source:$our_type" \
"$our_series:$our_mainline:$our_type" \
"$our_series:$our_type" \
"$our_mainline:$our_type" \
"$our_series" \
"$our_mainline"
do
echo "II: trying $versions_path_tail ..."
versions_paths=$(echo $(cat_file -p "${git_base}map/dkms-versions/$versions_path_tail" 2>/dev/null))
[ -n "$versions_paths" ] && break
done
if [ -z "$versions_paths" ]; then
echo "$0: unable to identify dkms-versions mapping" 1>&2
exit 1
fi
echo "git_base<$git_base> versions_paths<$versions_paths>"
echo "II: grabbing dkms-versions from $sru_cycle $versions_paths"
: ">debian/dkms-versions.new"
for versions_path in $versions_paths
do
cat_file -p "$git_base$versions_path" >>"debian/dkms-versions.new"
if [ "$?" -ne 0 ]; then
echo "$0: unable to download an updated dkms-versions file" 1>&2
exit 1
fi
done
mv "debian/dkms-versions.new" "debian/dkms-versions"
thing="debian/dkms-versions"
if ! git diff --exit-code -- "$thing" >/dev/null; then
git commit -m "UBUNTU: $thing -- update from kernel-versions ($git_human)" \
-m "BugLink: https://bugs.launchpad.net/bugs/1786013" \
-s -- "$thing"
else
echo "$thing: no changes from kernel-versions"
fi
exit 0