-
Notifications
You must be signed in to change notification settings - Fork 105
/
grub.cfg
94 lines (91 loc) · 3.45 KB
/
grub.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
if loadfont $prefix/font.pf2 ; then
set gfxmode=800x600
insmod efi_gop
insmod efi_uga
insmod video_bochs
insmod video_cirrus
insmod gfxterm
insmod png
terminal_output gfxterm
fi
set timeout=6
if background_image /isolinux/splash.png; then
set color_normal=light-gray/black
set color_highlight=white/black
else
set menu_color_normal=cyan/blue
set menu_color_highlight=white/blue
fi
insmod play
play 960 440 1 0 4 440 1
set theme=/boot/grub/theme/1
# menuentry --hotkey=g 'Graphical install' {
# set background_color=black
# linux /install.amd/vmlinuz vga=788 --- quiet
# initrd /install.amd/gtk/initrd.gz
# }
menuentry --hotkey=i 'Press [Enter] to Install DAppNode' {
set background_color=black
linux /install.amd/vmlinuz vga=788 FRONTEND_BACKGROUND=dark --- quiet
initrd /install.amd/initrd.gz
}
# submenu --hotkey=a 'Advanced options ...' {
# set menu_color_normal=cyan/blue
# set menu_color_highlight=white/blue
# set theme=/boot/grub/theme/1-1
# menuentry '... Graphical expert install' {
# set background_color=black
# linux /install.amd/vmlinuz priority=low vga=788 ---
# initrd /install.amd/gtk/initrd.gz
# }
# menuentry '... Graphical rescue mode' {
# set background_color=black
# linux /install.amd/vmlinuz vga=788 rescue/enable=true --- quiet
# initrd /install.amd/gtk/initrd.gz
# }
# menuentry '... Graphical automated install' {
# set background_color=black
# linux /install.amd/vmlinuz auto=true priority=critical vga=788 --- quiet
# initrd /install.amd/gtk/initrd.gz
# }
# menuentry --hotkey=x '... Expert install' {
# set background_color=black
# linux /install.amd/vmlinuz priority=low vga=788 ---
# initrd /install.amd/initrd.gz
# }
# menuentry --hotkey=r '... Rescue mode' {
# set background_color=black
# linux /install.amd/vmlinuz vga=788 rescue/enable=true --- quiet
# initrd /install.amd/initrd.gz
# }
# menuentry --hotkey=a '... Automated install' {
# set background_color=black
# linux /install.amd/vmlinuz auto=true priority=critical vga=788 --- quiet
# initrd /install.amd/initrd.gz
# }
# submenu --hotkey=s '... Speech-enabled advanced options ...' {
# set menu_color_normal=cyan/blue
# set menu_color_highlight=white/blue
# set theme=/boot/grub/theme/1-1-1
# menuentry --hotkey=x '... Expert speech install' {
# set background_color=black
# linux /install.amd/vmlinuz priority=low vga=788 speakup.synth=soft ---
# initrd /install.amd/gtk/initrd.gz
# }
# menuentry --hotkey=r '... Rescue speech mode' {
# set background_color=black
# linux /install.amd/vmlinuz vga=788 rescue/enable=true speakup.synth=soft --- quiet
# initrd /install.amd/gtk/initrd.gz
# }
# menuentry --hotkey=a '... Automated speech install' {
# set background_color=black
# linux /install.amd/vmlinuz auto=true priority=critical vga=788 speakup.synth=soft --- quiet
# initrd /install.amd/gtk/initrd.gz
# }
# }
# }
# menuentry --hotkey=s 'Install with speech synthesis' {
# set background_color=black
# linux /install.amd/vmlinuz vga=788 speakup.synth=soft --- quiet
# initrd /install.amd/gtk/initrd.gz
# }