about summary refs log tree commit diff
path: root/grub
diff options
context:
space:
mode:
authorJuan RP <xtraeme@gmail.com>2014-09-18 17:17:17 +0200
committerJuan RP <xtraeme@gmail.com>2014-09-18 17:17:17 +0200
commit8c91dea923aa2d5909771dfacb51168b7294f4ad (patch)
treec68ee8014ba13a3cc875a6aa08566f1e6f57c205 /grub
parentbedab03a6eb76455e0cd552fd1fb705669b57458 (diff)
downloadhrmpf-8c91dea923aa2d5909771dfacb51168b7294f4ad.tar.gz
hrmpf-8c91dea923aa2d5909771dfacb51168b7294f4ad.tar.xz
hrmpf-8c91dea923aa2d5909771dfacb51168b7294f4ad.zip
mklive: added -C and -T to append kernel cmdline args and modify bootloader title.
Requested by pancake.
Diffstat (limited to 'grub')
-rw-r--r--grub/grub_void.cfg.in5
1 files changed, 3 insertions, 2 deletions
diff --git a/grub/grub_void.cfg.in b/grub/grub_void.cfg.in
index 3583863..c5134bd 100644
--- a/grub/grub_void.cfg.in
+++ b/grub/grub_void.cfg.in
@@ -25,12 +25,13 @@ if loadfont "(${voidlive})/boot/grub/fonts/unicode.pf2" ; then
 fi
 
 if [ cpuid -l ]; then
-    menuentry "Void GNU/Linux @@KERNVER@@ (@@ARCH@@)" {
+    menuentry "@@BOOT_TITLE@@ @@KERNVER@@ (@@ARCH@@)" {
         set gfxpayload="keep"
         linux (${voidlive})/boot/vmlinuz \
 		root=live:CDLABEL=VOID_LIVE ro \
 		rd.luks=0 rd.md=0 rd.dm=0 loglevel=4 gpt add_efi_memmap \
-		vconsole.unicode=1 vconsole.keymap=@@KEYMAP@@ locale.LANG=@@LOCALE@@
+		vconsole.unicode=1 vconsole.keymap=@@KEYMAP@@ \
+		locale.LANG=@@LOCALE@@ @@BOOT_CMDLINE@@
         initrd (${voidlive})/boot/initrd
     }
 fi