From 094c01d09c95ee83978352b855c4f684de8e13d0 Mon Sep 17 00:00:00 2001 From: robertmh Date: Tue, 29 Apr 2008 12:17:33 +0000 Subject: [PATCH] 2008-04-29 Robert Millan * docs/grub.cfg: New file (example GRUB configuration). --- ChangeLog | 4 +++ DISTLIST | 1 + docs/grub.cfg | 69 +++++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 74 insertions(+) create mode 100644 docs/grub.cfg diff --git a/ChangeLog b/ChangeLog index aaf05dc8f..ba434cab2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2008-04-29 Robert Millan + + * docs/grub.cfg: New file (example GRUB configuration). + 2008-04-26 Robert Millan * DISTLIST: Sort (sort -u < DISTLIST | sponge DISTLIST). Add diff --git a/DISTLIST b/DISTLIST index a36377ad2..b2f5f832b 100644 --- a/DISTLIST +++ b/DISTLIST @@ -63,6 +63,7 @@ disk/memdisk.c disk/raid.c DISTLIST docs/fdl.texi +docs/grub.cfg docs/grub.texi docs/mdate-sh docs/texinfo.tex diff --git a/docs/grub.cfg b/docs/grub.cfg new file mode 100644 index 000000000..506515c8d --- /dev/null +++ b/docs/grub.cfg @@ -0,0 +1,69 @@ +# +# Sample GRUB configuration file +# + +# Boot automatically after 30 secs. +set timeout=30 + +# By default, boot the first entry. +set default=0 + +# Fallback to the second entry. +set fallback=1 + +# For booting GNU/Hurd +menuentry "GNU (aka GNU/Hurd)" { + set root=(hd0,1) + multiboot /boot/gnumach.gz root=device:/dev/sda1 + 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)' +} + +# For booting GNU/Linux +menuentry "GNU/Linux" { + set root=(hd0,1) + linux /vmlinuz root=/dev/sda1 + initrd /initrd.img +} + +# For booting FreeBSD +menuentry "FreeBSD (or GNU/kFreeBSD), direct boot" { + set root=(hd0,1,a) + freebsd /boot/kernel/kernel + freebsd_loadenv /boot/device.hints + freebsd_module /boot/splash.bmp type=splash_image_data + set FreeBSD.vfs.root.mountfrom=ufs:ad0s1a +} +menuentry "FreeBSD (or GNU/kFreeBSD), via /boot/loader" { + set root=(hd0,1,a) + freebsd /boot/loader +} + +# For booting NetBSD +menuentry "NetBSD" { + set root=(hd0,1,a) + netbsd /netbsd +} + +# For booting OpenBSD +menuentry "OpenBSD" { + set root=(hd0,1,a) + openbsd /bsd +} + +# For booting Microsoft Windows +menuentry "Microsoft Windows" { + set root=(hd0,1) + chainloader +1 +} + +# Change the colors. +menuentry "Change the colors" { + set menu_color_normal=light-green/brown + set menu_color_highlight=red/blue +}