summaryrefslogtreecommitdiff
path: root/config/chroot_local-includes/usr/share/initramfs-tools/scripts/live-bottom/03rpmfirmware
diff options
context:
space:
mode:
authorAndreas Loibl <andreas@andreas-loibl.de>2012-05-18 00:50:33 +0200
committerAndreas Loibl <andreas@andreas-loibl.de>2012-05-18 00:50:33 +0200
commitaa7084f1842446a22d29d6ff74a5f0f109710ac3 (patch)
treed10700011467ff34f82cb420f34e9c03df8294a4 /config/chroot_local-includes/usr/share/initramfs-tools/scripts/live-bottom/03rpmfirmware
parentc4eecb887cee6e00d255bf52d6612ecc9445fcff (diff)
downloadkanotix-aa7084f1842446a22d29d6ff74a5f0f109710ac3.zip
kanotix-aa7084f1842446a22d29d6ff74a5f0f109710ac3.tar.gz
moved gfxoverlay-code to debian-package gfxoverlay
Diffstat (limited to 'config/chroot_local-includes/usr/share/initramfs-tools/scripts/live-bottom/03rpmfirmware')
-rwxr-xr-xconfig/chroot_local-includes/usr/share/initramfs-tools/scripts/live-bottom/03rpmfirmware16
1 files changed, 0 insertions, 16 deletions
diff --git a/config/chroot_local-includes/usr/share/initramfs-tools/scripts/live-bottom/03rpmfirmware b/config/chroot_local-includes/usr/share/initramfs-tools/scripts/live-bottom/03rpmfirmware
deleted file mode 100755
index b1ead30..0000000
--- a/config/chroot_local-includes/usr/share/initramfs-tools/scripts/live-bottom/03rpmfirmware
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/bin/sh
-
-img=/root/live/image/boot.efi.img
-
-cd /root
-if [ -e "$img" ]; then
- mkdir -p live/efipart
- mount -o loop "$img" live/efipart
- for file in live/efipart/*firmware*rpm
- do
- [ -e "$file" ] && /bin/chroot . rpm2cpio "/$file" | cpio -i
- done
- umount live/efipart
- rmdir live/efipart
-fi
-