blob: 41325bfb65dda3816fa19f32d86d6a707a4e593a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
insmod part_msdos
insmod ext2
set root='hd0,msdos1'
set menu_color_normal=cyan/blue
set menu_color_highlight=white/black
set timeout=20
menuentry 'Hurd' {
set root='hd0,msdos1'
echo 'Loading GNU Mach'
multiboot /boot/gnumach console=com0
echo 'Loading the Hurd initrd...'
module /boot/initrd.ext2 initrd.ext2 '$(ramdisk-create)'
echo 'Loading ext2fs.static'
module /sbin/ext2fs.static ext2fs --multiboot-command-line='${kernel-command-line}' --readonly --host-priv-port='${host-port}' --device-master-port='${device-port}' --exec-server-task='${exec-task}' --kernel-task='${kernel-task}' -T device rd0 '$(fs-task=task-create)' '$(prompt-task-resume)'
echo 'Loading exec'
module /lib/ld.so.1 ld.so.1 /hurd/exec --device-master-port='${device-port}' '$(exec-task=task-create)'
boot
}
|