From 56d05072e6225f95e523d735e3236e4461484a16 Mon Sep 17 00:00:00 2001 From: Daniel Kahn Gillmor Date: Thu, 19 Mar 2015 17:11:08 -0400 Subject: update to work with jessie around 3.15, the linux kernel stopped parsing arguments passed to it after a -- argument: https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=51e158c12aca3c9ac63988611a97c05109b14dc9 This breaks the usual debian-installer approach of putting kernel arguments that you want to persist in the install after the -- argument. We work around this by just putting the arguments we want to persist both before and after the --. yuck. --- di-maker | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/di-maker b/di-maker index e5247dd..e24df35 100755 --- a/di-maker +++ b/di-maker @@ -48,7 +48,7 @@ esac KERNEL=linux INITRAMFS=initrd.gz BOOTINSTRUCTIONS=" - linux /$KERNEL verbose -- console=ttyS0,115200n8 + linux /$KERNEL verbose console=ttyS0,115200n8 -- console=ttyS0,115200n8 initrd /$INITRAMFS " -- cgit v1.2.3