From: Evgeni Golov Date: Wed, 8 Aug 2012 06:30:00 +0000 (+0200) Subject: Add firmware-linux-free to the packages to be installed X-Git-Tag: v0.55~5 X-Git-Url: https://git.grml.org/?p=grml-debootstrap.git;a=commitdiff_plain;h=76ca7586f359f1d2faa671d85936186140f7e413;hp=91e39fcde40898c7b5f4d5a96e042ab02ea40af3 Add firmware-linux-free to the packages to be installed Debian ISOs do not include the (non-free) firmware-linux meta-package. As this meta-package just pulls in firmware-linux-free and firmware-linux-nonfree, let's install firmware-linux-free by hand, so it will be installed even when firmware-linux is not available. --- diff --git a/chroot-script b/chroot-script index 3f55747..d3535b0 100755 --- a/chroot-script +++ b/chroot-script @@ -289,7 +289,7 @@ kernel() { KVER=$(get_kernel_version) if [ -n "$KVER" ] ; then # note: install busybox to be able to debug initramfs - KERNELPACKAGES="linux-image-$KVER linux-headers-$KVER busybox firmware-linux" + KERNELPACKAGES="linux-image-$KVER linux-headers-$KVER busybox firmware-linux-free firmware-linux" DEBIAN_FRONTEND=$DEBIAN_FRONTEND $APTINSTALL $KERNELPACKAGES fi }