Skip to content

Commit faa72f6

Browse files
committed
isolinux: add menu entries for screenreader, memtest, reboot, poweroff
- set timeout to 15 seconds - screenreader option can be selected with `s` hotkey
1 parent 3b113c5 commit faa72f6

1 file changed

Lines changed: 30 additions & 6 deletions

File tree

isolinux/isolinux.cfg.in

Lines changed: 30 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
UI vesamenu.c32
22
PROMPT 0
3-
TIMEOUT 100
3+
TIMEOUT 150
44
ONTIMEOUT linux
55

66
MENU TABMSG Press ENTER to boot or TAB to edit a menu entry
77
MENU AUTOBOOT BIOS default device boot in # second{,s}...
88
MENU BACKGROUND @@SPLASHIMAGE@@
99
MENU WIDTH 78
1010
MENU MARGIN 1
11-
MENU ROWS 4
11+
MENU ROWS 9
1212
MENU VSHIFT 2
13-
MENU TIMEOUTROW 8
13+
MENU TIMEOUTROW 13
1414
MENU TABMSGROW 2
15-
MENU CMDLINEROW 11
16-
MENU HELPMSGROW 16
17-
MENU HELPMSGENDROW 29
15+
MENU CMDLINEROW 16
16+
MENU HELPMSGROW 20
17+
MENU HELPMSGENDROW 34
1818

1919
MENU COLOR title * #FF5255FF *
2020
MENU COLOR border * #00000000 #00000000 none
@@ -24,11 +24,35 @@ LABEL linux
2424
MENU LABEL @@BOOT_TITLE@@ @@KERNVER@@ @@ARCH@@
2525
KERNEL /boot/vmlinuz
2626
APPEND initrd=/boot/initrd root=live:CDLABEL=VOID_LIVE init=/sbin/init ro rd.luks=0 rd.md=0 rd.dm=0 loglevel=4 vconsole.unicode=1 vconsole.keymap=@@KEYMAP@@ locale.LANG=@@LOCALE@@ @@BOOT_CMDLINE@@
27+
2728
LABEL linuxram
2829
MENU LABEL @@BOOT_TITLE@@ @@KERNVER@@ @@ARCH@@ (RAM)
2930
KERNEL /boot/vmlinuz
3031
APPEND initrd=/boot/initrd root=live:CDLABEL=VOID_LIVE init=/sbin/init ro rd.luks=0 rd.md=0 rd.dm=0 loglevel=4 vconsole.unicode=1 vconsole.keymap=@@KEYMAP@@ locale.LANG=@@LOCALE@@ @@BOOT_CMDLINE@@ rd.live.ram
32+
33+
LABEL linuxa11y
34+
MENU LABEL @@BOOT_TITLE@@ @@KERNVER@@ @@ARCH@@ with ^speech
35+
KERNEL /boot/vmlinuz
36+
APPEND initrd=/boot/initrd root=live:CDLABEL=VOID_LIVE init=/sbin/init ro rd.luks=0 rd.md=0 rd.dm=0 loglevel=4 vconsole.unicode=1 vconsole.keymap=@@KEYMAP@@ locale.LANG=@@LOCALE@@ @@BOOT_CMDLINE@@ live.accessibility live.autologin
37+
38+
LABEL linuxa11yram
39+
MENU LABEL @@BOOT_TITLE@@ @@KERNVER@@ @@ARCH@@ with speech (^RAM)
40+
KERNEL /boot/vmlinuz
41+
APPEND initrd=/boot/initrd root=live:CDLABEL=VOID_LIVE init=/sbin/init ro rd.luks=0 rd.md=0 rd.dm=0 loglevel=4 vconsole.unicode=1 vconsole.keymap=@@KEYMAP@@ locale.LANG=@@LOCALE@@ @@BOOT_CMDLINE@@ live.accessibility live.autologin rd.live.ram
42+
3143
LABEL c
3244
MENU LABEL Boot first HD found by BIOS
3345
COM32 chain.c32
3446
APPEND hd0
47+
48+
LABEL memtest
49+
MENU LABEL Run Memtest86+ (RAM test)
50+
LINUX /boot/memtest.bin
51+
52+
LABEL reboot
53+
MENU LABEL Reboot
54+
COM32 reboot.c32
55+
56+
LABEL poweroff
57+
MENU LABEL Power Off
58+
COM32 poweroff.c32

0 commit comments

Comments
 (0)