summaryrefslogtreecommitdiff
path: root/scripts/live-bottom/40install_driver_updates
blob: d6f149a09d0920a484ab050e8638d14809349af3 (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
#!/bin/sh

#set -e

# initramfs-tools header

PREREQ=""

prereqs()
{
	echo "${PREREQ}"
}

case "${1}" in
	prereqs)
		prereqs
		exit 0
		;;
esac

# live-initramfs header

. /scripts/live-functions

log_begin_msg "Installing driver updates..."

# live-initramfs script

if [ ! -d /tmp/driver-updates ]; then
	exit 0
fi

install_dir=/var/cache/driver-updates

mkdir "/root$install_dir"
cp -a /tmp/driver-updates/*.deb "/root$install_dir/"

# We cannot leave packages in a bad state. So if the install fails, remove
# it. This will get caught in live.log.
for deb in "/root$install_dir"/*; do
	[ -f "$deb" ] || continue
	debbase="${deb##*/}"
	if ! chroot /root dpkg -i "$install_dir/$debbase"; then
	    chroot /root dpkg -P "${debbase%%_*}"
	fi
done

log_end_msg