blob: 87de18425805967ac92df884422728b65c730dec (
plain)
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
|
#
# Menu appearance
#
set menu_color_normal=white/blue
set menu_color_highlight=yellow/red
#
# Example: imagens stored in the USB stick: just put your images under custom/debian/images.
#
menuentry 'Example: Darkstar' {
set volume=/dev/sda5
set version=3.16.0-4-amd64
set target=sda5_crypt
set rootfs=darkstar--vg-root
set distro=debian
bootimg ${volume} ${version} ${source} ${target} ${distro}
}
#
# Example: Full Disk Encryption: images are loaded from encrypted partition.
#
menuentry 'Example: Darkstar FDE' {
set volume=darkstar
set version=3.16.0-4-amd64
bootfde ${volume} ${version}
}
|