diff --git a/config/chroot_local-hooks/12-initramfs-modules b/config/chroot_local-hooks/12-initramfs-modules new file mode 100755 index 0000000000000000000000000000000000000000..7c91064febe060bba2e291c012df588f1baf2e65 --- /dev/null +++ b/config/chroot_local-hooks/12-initramfs-modules @@ -0,0 +1,10 @@ +#!/bin/sh + +set -e + +MOD_FILE='/etc/initramfs-tools/modules' + +[ -f "${MOD_FILE}" ] || exit 11 + +# Avoid sdmem sometimes crashing on Intel graphic hardware +echo "i915" >> "${MOD_FILE}"