summaryrefslogtreecommitdiff
path: root/helpers/lh_chroot_linux-image
diff options
context:
space:
mode:
authorChris Lamb <chris@chris-lamb.co.uk>2008-03-22 02:44:18 +0000
committerDaniel Baumann <daniel@debian.org>2011-03-09 19:03:21 +0100
commit6e9f8956ee17b9f171571698fbc23a54a49424d5 (patch)
treeb3a6133c112faa05b3dfff0a79e7a0b8bc2014ea /helpers/lh_chroot_linux-image
parent02a9e29e0923050f6f5386885946a80093930cd2 (diff)
downloadlive-build-6e9f8956ee17b9f171571698fbc23a54a49424d5.zip
live-build-6e9f8956ee17b9f171571698fbc23a54a49424d5.tar.gz
lh_chroot_linux-image: Install dependencies differently when using aptitude
We must use "aptitude install <pkgname>" to install dependencies of a dpkg-installed <pkgname>, or aptitude's resolver will remove it. apt-get does not have this "feature". This was causing a problem when using a custom versions of live-initramfs as they would be removed, causing a boot failure.
Diffstat (limited to 'helpers/lh_chroot_linux-image')
-rwxr-xr-xhelpers/lh_chroot_linux-image11
1 files changed, 9 insertions, 2 deletions
diff --git a/helpers/lh_chroot_linux-image b/helpers/lh_chroot_linux-image
index 59e5dd3..c409b77 100755
--- a/helpers/lh_chroot_linux-image
+++ b/helpers/lh_chroot_linux-image
@@ -98,8 +98,15 @@ EOF
Chroot "find /root -name *.deb" > chroot/root/initfs
Chroot "xargs --arg-file=/root/initfs dpkg -i" || true
- # Cleaning dependencies
- Apt install -f
+ # Install dependencies
+ case "${LH_APT}" in
+ aptitude)
+ Apt install ${LH_INITRAMFS}
+ ;;
+ apt-get)
+ Apt install -f
+ ;;
+ esac
# Removing package files
rm -f chroot/root/${LH_INITRAMFS}*.deb