Support KERNEL_PARAMS in arm64 (Closes: #884552)
This commit is contained in:
parent
8714e849ad
commit
aca40b24ec
|
@ -34,6 +34,9 @@ debian-cd (3.1.21) UNRELEASED; urgency=medium
|
|||
[ Marcin Kulisz]
|
||||
* removing lynx-cur from binary conditional dependency (Closes: #888107)
|
||||
|
||||
[ Vagrant Cascadian ]
|
||||
* Support KERNEL_PARAMS in arm64 (Closes: #884552)
|
||||
|
||||
-- Steve McIntyre <93sam@debian.org> Mon, 19 Jun 2017 13:59:36 +0100
|
||||
|
||||
debian-cd (3.1.20) unstable; urgency=medium
|
||||
|
|
|
@ -155,6 +155,9 @@ if [ -d boot$N/grub ] ; then
|
|||
# in case they're still there
|
||||
sed -i "s,\%install\%,$INSTALLDIR,g" $CDDIR/boot/grub/grub.cfg
|
||||
|
||||
# Substitute custom KERNEL_PARAMS into grub.cfg
|
||||
sed -i "s,/vmlinuz ,/vmlinuz $KERNEL_PARAMS ,g" $CDDIR/boot/grub/grub.cfg
|
||||
|
||||
else
|
||||
echo " No EFI boot code for $ARCH on CD$N"
|
||||
fi
|
||||
|
|
|
@ -155,6 +155,9 @@ if [ -d boot$N/grub ] ; then
|
|||
# in case they're still there
|
||||
sed -i "s,\%install\%,$INSTALLDIR,g" $CDDIR/boot/grub/grub.cfg
|
||||
|
||||
# Substitute custom KERNEL_PARAMS into grub.cfg
|
||||
sed -i "s,/vmlinuz ,/vmlinuz $KERNEL_PARAMS ,g" $CDDIR/boot/grub/grub.cfg
|
||||
|
||||
else
|
||||
echo " No EFI boot code for $ARCH on CD$N"
|
||||
fi
|
||||
|
|
Loading…
Reference in New Issue