blob: 7686778a7b57866fce5cf95c6e6d072a8fe4e938 (
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
# This is the amount grub waits before booting the default entry
timeout= 30
# Tell which entry to boot by default. Note that this is origin zero
# from the beginning of the file.
default= 0
# Note that to GRUB, all hard disks are `hd' and all floppy disks are `fd'.
# To Mach, SCSI disks are `sd' and IDE type disks are `hd'. Use
# GRUB names in the `root' command and prefixing filenames. Use a
# Mach name as the `root' arg for the kernel, and whenever running the Hurd.
# These two entries are for SCSI disks
# Entry 0:
title= hurd (sd0a multi-user)
root= hd(0,a)
kernel= /boot/kernel root=sd0a
module= /boot/serverboot
# Entry 1:
title= hurd (sd0a single-user)
root= hd(0,a)
kernel= /boot/kernel root=sd0a -s
module= /boot/serverboot
# These two entries are for RLL/IDE/ST-506/etc. disks
# Entry 2:
title= hurd (hd0a multi-user)
root= hd(0,a)
kernel= /boot/kernel root=hd0a
module= /boot/serverboot
# Entry 3:
title= hurd (hd0a single-user)
root= hd(0,a)
kernel= /boot/kernel root=hd0a -s
module= /boot/serverboot
# Installation step for GRUB hard disk boot blocks
# Entry 4:
title= grub install
root= hd(0)
install=hd(0,a)/boot/grub/stage2
|