summaryrefslogtreecommitdiff
path: root/Hurd
diff options
context:
space:
mode:
authorJoachim Nilsson <joachim@gnufans.org>2002-11-09 14:59:30 +0000
committerJoachim Nilsson <joachim@gnufans.org>2002-11-09 14:59:30 +0000
commitce91a604d9db6b3e25a91224c3f75927d16c3ba9 (patch)
treed4346c5e2923e2b76da24597a2bc94fe7acac86e /Hurd
parent87f88f08f9a5b346a45b01640e557fd5ea1788ea (diff)
none
Diffstat (limited to 'Hurd')
-rw-r--r--Hurd/GrubNotes.mdwn34
1 files changed, 34 insertions, 0 deletions
diff --git a/Hurd/GrubNotes.mdwn b/Hurd/GrubNotes.mdwn
index 4b991d88..4ff5fe69 100644
--- a/Hurd/GrubNotes.mdwn
+++ b/Hurd/GrubNotes.mdwn
@@ -29,3 +29,37 @@ While [Neal's install guide](http://web.walfield.org/papers/hurd-installation-gu
chainloader +1
-- [[Main/GrantBow]] - 01 Oct 2002
+
+Another example, just as good, but a lot easier to read. The backslash at the end of each line is to "escape" the enter-key. So make sure there are no spaces following the backslashes!
+
+ title GNU/Linux (Kernel 2.4.18)
+ root (hd0,11)
+ kernel /boot/vmlinuz-2.4.18 root=/dev/hda12 ro
+ initrd /boot/initrd.img-2.4.18
+ savedefault
+
+ title GNUmach 1.3
+ root (hd0,1)
+ kernel /boot/gnumach.gz root=device:hd0s2
+ module /hurd/ext2fs.static --readonly \
+ --multiboot-command-line=${kernel-command-line} \
+ --host-priv-port=${host-port} \
+ --device-master-port=${device-port} \
+ --exec-server-task=${exec-task} \
+ -T typed ${root} $(task-create) $(task-resume)
+ module /lib/ld.so.1 /hurd/exec $(exec-task=task-create)
+
+ title GNUmach 1.90 (CVS)
+ root (hd0,1)
+ kernel /boot/oskit-mach.gz root=device:hd0s2 --
+ module /hurd/ext2fs.static --readonly \
+ --multiboot-command-line=${kernel-command-line} \
+ --host-priv-port=${host-port} \
+ --device-master-port=${device-port} \
+ --exec-server-task=${exec-task} \
+ -T typed ${root} $(task-create) $(task-resume)
+ module /lib/ld.so.1 /hurd/exec $(exec-task=task-create)
+
+Note the differences between GNUmach and OSKit-Mach. The latter **needs** the two dashes after the root specification!
+
+-- [[Main/JoachimNilsson]] - 09 Nov 2002