summaryrefslogtreecommitdiff
path: root/scripts/casper-bottom/40install_driver_updates
diff options
context:
space:
mode:
authorDaniel Baumann <daniel@debian.org>2007-09-23 14:46:36 +0200
committerDaniel Baumann <daniel@debian.org>2011-03-09 17:25:50 +0100
commit9fc9e2a1a11b0edada38cb501fefe4f58aa414ac (patch)
tree7d2d89ecfbd394b41854937ec2342bc7ae530cf5 /scripts/casper-bottom/40install_driver_updates
parent4bdaa2237c6ae923d1dd068e9024ebceca3f40d9 (diff)
downloadlive-boot-9fc9e2a1a11b0edada38cb501fefe4f58aa414ac.tar.gz
live-boot-9fc9e2a1a11b0edada38cb501fefe4f58aa414ac.zip
Adding live-initramfs 1.87.2-1.
Diffstat (limited to 'scripts/casper-bottom/40install_driver_updates')
-rwxr-xr-xscripts/casper-bottom/40install_driver_updates40
1 files changed, 0 insertions, 40 deletions
diff --git a/scripts/casper-bottom/40install_driver_updates b/scripts/casper-bottom/40install_driver_updates
deleted file mode 100755
index 272a0ed..0000000
--- a/scripts/casper-bottom/40install_driver_updates
+++ /dev/null
@@ -1,40 +0,0 @@
-#! /bin/sh
-
-PREREQ=""
-DESCRIPTION="Installing driver updates..."
-
-. /scripts/casper-functions
-
-prereqs()
-{
- echo "$PREREQ"
-}
-
-case $1 in
-# get pre-requisites
-prereqs)
- prereqs
- exit 0
- ;;
-esac
-
-if [ ! -d /tmp/driver-updates ]; then
- exit 0
-fi
-
-log_begin_msg "$DESCRIPTION"
-
-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 casper.log.
-for deb in "/root$install_dir"/*; do
- if ! chroot /root dpkg -i "$install_dir/$deb"; then
- chroot /root dpkg -P "${deb%%_*}"
- fi
-done
-
-log_end_msg