blob: 0a88724b5c933275637dbfa63f550112d4210f0c (
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
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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
|
#!/bin/sh
#set -e
# initramfs-tools header
PREREQ=""
prereqs()
{
echo "${PREREQ}"
}
case "${1}" in
prereqs)
prereqs
exit 0
;;
esac
# live-initramfs header
if [ -n "${NOUSER}" ]
then
exit 0
fi
. /scripts/live-functions
. /scripts/live-helpers
log_begin_msg "Adding live session user..."
# live-initramfs script
mountpoint=/cdrom
is_updates_path ()
{
# Driver packages are stored in ubuntu-drivers/<kver>/
# subdirectory. Each package contains a module for a specific
# kernel flavour.
path=$1
kbase=$(uname -r | sed 's/^\([0-9]*\.[0-9]*\.[0-9]*\)-.*/\1/')
update_dir="$path/ubuntu-drivers/$kbase"
if [ -d "$update_dir" ]
then
if [ "$(echo $update_dir/*_$DPKG_ARCH.deb)" != \
"$update_dir/*_$DPKG_ARCH.deb" ]
then
echo "$update_dir"
return 0;
fi
fi
return 1;
}
is_nice_device ()
{
sysfs_path="${1#/sys}"
if /lib/udev/path_id "${sysfs_path}" | grep -E -q "ID_PATH=(usb|pci-[^-]*-(ide|scsi|usb))"
then
return 0
fi
return 1
}
is_supported_fs ()
{
# FIXME: do something better like the scan of supported filesystems
fstype="${1}"
case ${fstype} in
vfat|iso9660|udf|ext2|ext3|ntfs)
return 0
;;
esac
return 1
}
check_dev_updates ()
{
sysdev="${1}"
devname="${2}"
if [ -z "${devname}" ]
then
devname=$(sys2dev "${sysdev}")
fi
fstype=$(get_fstype "${devname}")
if is_supported_fs ${fstype}
then
mount -t ${fstype} -o ro "${devname}" $mountpoint || continue
if is_updates_path $mountpoint
then
return 0
else
umount $mountpoint
fi
fi
return 1
}
find_driver_updates ()
{
for sysblock in $(echo /sys/block/* | tr ' ' '\n' | grep -v loop | grep -v ram)
do
devname=$(sys2dev "${sysblock}")
fstype=$(get_fstype "${devname}")
if /lib/udev/cdrom_id ${devname} > /dev/null
then
if check_dev_updates "null" "${devname}"
then
return 0
fi
elif is_nice_device "${sysblock}"
then
for dev in $(subdevices "${sysblock}")
do
if check_dev_updates "${dev}"
then
return 0
fi
done
fi
done
return 1
}
pulsate ()
{
if [ -x /sbin/usplash_write ]
then
/sbin/usplash_write "PULSATE"
fi
}
updates="false"
for x in $(cat /proc/cmdline)
do
case $x in
debian-installer/driver-update=*)
updates=${x#debian-installer/driver-update=}
;;
esac
done
if [ "$updates" != "true" ]
then
log_end_msg
exit 0
fi
# Not sure what to do for network installs. I assume there isn't even a CD
# for this anyway, so fail.
if [ -n "${NETBOOT}" ]
then
log_end_msg
exit 0;
fi
#if chroot /root [ -f /etc/gdm/gdm-cdd.conf ]
#then
# GDMCONF=/etc/gdm/gdm-cdd.conf
#else
# GDMCONF=/etc/gdm/gdm.conf
#fi
if [ -x /usr/bin/eject ]
then
eject
fi
log_wait_msg "Insert a driver CD and press ENTER ($DPKG_ARCH)"
log_begin_msg "Looking for driver update CD"
for i in 0 1 2 3 4 5 6 7 8 9 a b c d e f 10 11 12 13
do
updates_root=$(find_driver_updates)
if [ "${updates_root}" ]
then
break;
fi
sleep 1
done
log_end_msg
if [ -z "${updates_root}" ]
then
log_begin_msg "Could not find driver updates"
log_wait_msg "Re-insert install CD and press ENTER"
exit 0
fi
log_begin_msg "Copying driver updates to temporary location"
mkdir -p /tmp/driver-updates
cp $updates_root/*_$DPKG_ARCH.deb /tmp/driver-updates/
umount $mountpoint
if [ -x /usr/bin/eject ]
then
eject
fi
log_end_msg
log_wait_msg "Re-insert install CD and press ENTER."
|