diff options
author | Andreas Loibl <andreas@andreas-loibl.de> | 2012-05-18 04:40:35 +0200 |
---|---|---|
committer | Andreas Loibl <andreas@andreas-loibl.de> | 2012-05-18 04:40:35 +0200 |
commit | 45024fa621b29141469fae412eb442ea7f40c764 (patch) | |
tree | 03a88bc1050aa72acbd45c2679746030a7719411 /backend/modules/install_configure | |
parent | ef228a6ca1a451babede95654786b94f34ab7c8a (diff) | |
download | acritoxinstaller-45024fa621b29141469fae412eb442ea7f40c764.zip acritoxinstaller-45024fa621b29141469fae412eb442ea7f40c764.tar.gz |
fixed build errors with wheezy
Diffstat (limited to 'backend/modules/install_configure')
-rw-r--r-- | backend/modules/install_configure | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/backend/modules/install_configure b/backend/modules/install_configure index a78d576..114a958 100644 --- a/backend/modules/install_configure +++ b/backend/modules/install_configure @@ -131,6 +131,7 @@ function configure_target_purge_live_only_stuff() live-manual-pdf \ live-manual-txt \ live-manual \ + gfxoverlay \ mknbi \ syslinux \ tftpd-hpa &> /dev/null @@ -157,14 +158,9 @@ function configure_target_purge_live_only_stuff() rm -f "$TARGET/home/$cfg_username/.kde/shutdown/kdm-force-shutdown-hack" # remove live-only hooks - rm -vf $TARGET/usr/bin/isohybrid-bg2 \ - $TARGET/usr/share/initramfs-tools/hooks/pcidetect \ - $TARGET/usr/share/initramfs-tools/scripts/init-top/pcidetect \ - $TARGET/usr/share/initramfs-tools/scripts/live-bottom/01gfxoverlay \ - $TARGET/usr/share/initramfs-tools/scripts/live-bottom/02blacklist \ - $TARGET/usr/share/initramfs-tools/scripts/live-bottom/03rpmfirmware - rm -rvf $TARGET/lib/live - rm -vf $TARGET/etc/profile.d/zz-live.sh - rm -vf $TARGET/usr/local/bin/enable_persistent_live.bash + rm -rf $TARGET/lib/live + rm -f $TARGET/etc/profile.d/zz-live.sh + rm -f $TARGET/usr/local/bin/enable_persistent_live.bash + rm -f "$TARGET/home/$cfg_username/Desktop/enable_persistent.desktop" } |