doc fixes
This commit is contained in:
parent
0daef3e856
commit
074ac263be
3 changed files with 27 additions and 17 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
1999-04-25 OKUJI Yoshinori <okuji@kuicr.kyoto-u.ac.jp>
|
||||||
|
|
||||||
|
* docs/menu.lst: Rewritten, so that it contains up-to-date
|
||||||
|
information and FAQish configuration examples.
|
||||||
|
|
||||||
1999-04-09 OKUJI Yoshinori <okuji@kuicr.kyoto-u.ac.jp>
|
1999-04-09 OKUJI Yoshinori <okuji@kuicr.kyoto-u.ac.jp>
|
||||||
|
|
||||||
* shared_src/asm.S (get_diskinfo_floppy): Correct the number of heads
|
* shared_src/asm.S (get_diskinfo_floppy): Correct the number of heads
|
||||||
|
|
2
README
2
README
|
@ -9,7 +9,7 @@ personal computer BIOSes:
|
||||||
- can boot Multiboot-compliant kernels (such as GNU Mach), as well
|
- can boot Multiboot-compliant kernels (such as GNU Mach), as well
|
||||||
as standard Linux and BSD kernels
|
as standard Linux and BSD kernels
|
||||||
|
|
||||||
See the file docs/NEWS for a description of recent changes to GRUB.
|
See the file NEWS for a description of recent changes to GRUB.
|
||||||
|
|
||||||
See the file INSTALL for instructions on how to build and install the
|
See the file INSTALL for instructions on how to build and install the
|
||||||
GRUB data and program files. See `docs/install.html' for details
|
GRUB data and program files. See `docs/install.html' for details
|
||||||
|
|
|
@ -2,8 +2,21 @@
|
||||||
# Sample boot menu configuration file
|
# Sample boot menu configuration file
|
||||||
#
|
#
|
||||||
|
|
||||||
# Timeout here...
|
# Boot automatically after 30 secs.
|
||||||
timeout = 30
|
timeout= 30
|
||||||
|
|
||||||
|
# By default, boot the first entry.
|
||||||
|
default= 0
|
||||||
|
|
||||||
|
# For booting the GNU HURD
|
||||||
|
title= GNU/HURD
|
||||||
|
root= (hd0,0)
|
||||||
|
kernel= /boot/gnumach root=hd0s1
|
||||||
|
module= /boot/serverboot
|
||||||
|
|
||||||
|
# For booting Linux
|
||||||
|
title= GNU/Linux
|
||||||
|
kernel= (hd1,0)/vmlinuz root=/dev/hdb1
|
||||||
|
|
||||||
# For booting Mach (getting kernel from floppy)
|
# For booting Mach (getting kernel from floppy)
|
||||||
title= Utah Mach4 multiboot
|
title= Utah Mach4 multiboot
|
||||||
|
@ -17,12 +30,6 @@ title= FreeBSD 2.2-SNAP
|
||||||
root= (hd0,2)
|
root= (hd0,2)
|
||||||
kernel= (fd0)/kernel
|
kernel= (fd0)/kernel
|
||||||
|
|
||||||
# For booting the GNU HURD (getting kernel from floppy)
|
|
||||||
title= GNU HURD
|
|
||||||
root= (hd0,a)
|
|
||||||
kernel= /boot/kernel root=hd0a
|
|
||||||
module= /boot/serverboot
|
|
||||||
|
|
||||||
# For booting OS/2 (test, I have no OS/2 to test for!)
|
# For booting OS/2 (test, I have no OS/2 to test for!)
|
||||||
title= OS/2
|
title= OS/2
|
||||||
root= (hd0,1)
|
root= (hd0,1)
|
||||||
|
@ -30,15 +37,13 @@ makeactive
|
||||||
chainloader= /boot/chain.os2
|
chainloader= /boot/chain.os2
|
||||||
# This is similar to "chainload", but loads a specific file
|
# This is similar to "chainload", but loads a specific file
|
||||||
|
|
||||||
# For booting Windows NT 3.5 or DOS
|
# For booting Windows NT 3.5 or Windows95
|
||||||
title= Windows NT 3.5/DOS boot menu
|
title= Windows NT 3.5/Windows 95 boot menu
|
||||||
root= (0x80,0)
|
root= (0x80,0)
|
||||||
makeactive
|
makeactive
|
||||||
chainloader= +1
|
chainloader= +1
|
||||||
|
|
||||||
# For booting DOS from a Windows NT/DOS installation
|
# For installing GRUB into the hard disk
|
||||||
title= DOS
|
title= Install GRUB into the hard disk
|
||||||
root= (0x80,0)
|
root= (hd0,0)
|
||||||
makeactive
|
install= /boot/grub/stage1 d (hd0) /boot/grub/stage2 0x8000 p
|
||||||
chainloader= /bootsect.dos
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue