2008-04-29 Robert Millan <rmh@aybabtu.com>
* docs/grub.cfg: New file (example GRUB configuration).
This commit is contained in:
parent
329ce2a5f5
commit
094c01d09c
3 changed files with 74 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
|||
2008-04-29 Robert Millan <rmh@aybabtu.com>
|
||||
|
||||
* docs/grub.cfg: New file (example GRUB configuration).
|
||||
|
||||
2008-04-26 Robert Millan <rmh@aybabtu.com>
|
||||
|
||||
* DISTLIST: Sort (sort -u < DISTLIST | sponge DISTLIST). Add
|
||||
|
|
1
DISTLIST
1
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
|
||||
|
|
69
docs/grub.cfg
Normal file
69
docs/grub.cfg
Normal file
|
@ -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
|
||||
}
|
Loading…
Reference in a new issue