summaryrefslogtreecommitdiff
path: root/scripts/live-bottom/40install_driver_updates
diff options
context:
space:
mode:
authorDaniel Baumann <daniel@debian.org>2007-10-19 19:21:42 +0200
committerDaniel Baumann <daniel@debian.org>2011-03-09 17:31:06 +0100
commite5ed5f84c8dff7855284b6d37f14da6a2e85f1c5 (patch)
tree733883143e7d99ef1c0902874078dc4ba071c086 /scripts/live-bottom/40install_driver_updates
parent6bfe95a7c93d84d0a2f9071bbe3809c173287402 (diff)
downloadlive-boot-e5ed5f84c8dff7855284b6d37f14da6a2e85f1c5.tar.gz
live-boot-e5ed5f84c8dff7855284b6d37f14da6a2e85f1c5.zip
Removing ubuntu support.
Diffstat (limited to 'scripts/live-bottom/40install_driver_updates')
-rwxr-xr-xscripts/live-bottom/40install_driver_updates53
1 files changed, 0 insertions, 53 deletions
diff --git a/scripts/live-bottom/40install_driver_updates b/scripts/live-bottom/40install_driver_updates
deleted file mode 100755
index 584dcd0..0000000
--- a/scripts/live-bottom/40install_driver_updates
+++ /dev/null
@@ -1,53 +0,0 @@
-#!/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
-
-# live-initramfs script
-
-if [ ! -d /tmp/driver-updates ]
-then
- exit 0
-fi
-
-log_begin_msg "Installing driver updates..."
-
-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