source: client/shared/lib/grub4dos/example.menu.lst @ 1d1e06d

Last change on this file since 1d1e06d was a01432a, checked in by adv <adv@…>, 14 years ago

version 1.0.1 #135 #147 #402 se renombra el ejemplo de grub4dos menu.lst para no crear conflictos

git-svn-id: https://opengnsys.es/svn/branches/version1.0@2009 a21b9725-9963-47de-94b9-378ad31fedc9

  • Property mode set to 100644
File size: 2.5 KB
Line 
1# This is a sample menu.lst file. You should make some changes to it.
2# The old install method of booting via the stage-files has been removed.
3# Please install GRLDR boot strap code to MBR with the bootlace.com
4# utility under DOS/Win9x or Linux.
5
6color blue/green yellow/red white/magenta white/magenta
7timeout 30
8default /default
9
10title find and load NTLDR of Windows NT/2K/XP
11fallback 1
12find --set-root --ignore-floppies --ignore-cd /ntldr
13map () (hd0)
14map (hd0) ()
15map --rehook
16find --set-root --ignore-floppies --ignore-cd /ntldr
17chainloader /ntldr
18savedefault --wait=2
19
20title find and load BOOTMGR of Windows VISTA
21fallback 2
22find --set-root --ignore-floppies --ignore-cd /bootmgr
23map () (hd0)
24map (hd0) ()
25map --rehook
26find --set-root --ignore-floppies --ignore-cd /bootmgr
27chainloader /bootmgr
28savedefault --wait=2
29
30title find and load CMLDR, the Recovery Console of Windows NT/2K/XP
31fallback 3
32find --set-root --ignore-floppies --ignore-cd /cmldr
33map () (hd0)
34map (hd0) ()
35map --rehook
36find --set-root --ignore-floppies --ignore-cd /cmldr
37chainloader /cmldr
38#####################################################################
39# write string "cmdcons" to memory 0000:7C03 in 2 steps:
40#####################################################################
41# step 1. Write 4 chars "cmdc" at 0000:7C03
42write 0x7C03 0x63646D63
43# step 2. Write 3 chars "ons" and an ending null at 0000:7C07
44write 0x7C07 0x00736E6F
45savedefault --wait=2
46
47title find and load IO.SYS of Windows 9x/Me
48fallback 4
49find --set-root /io.sys
50chainloader /io.sys
51savedefault --wait=2
52
53title find and boot 0PE.ISO
54fallback 5
55find --set-root /0PE/0PE.ISO
56map /0PE/0PE.ISO (0xff) || map --mem /0PE/0PE.ISO (0xff)
57map --hook
58chainloader (0xff)
59savedefault --wait=2
60
61title find and boot MicroPE.ISO
62fallback 6
63find --set-root /boot/MicroPE.ISO
64map /boot/MicroPE.ISO (0xff) || map --mem /boot/MicroPE.ISO (0xff)
65map --hook
66chainloader (0xff)
67savedefault --wait=2
68
69title Parted Magic ISO
70fallback 7
71find --set-root /pmagic.iso
72map /pmagic.iso (0xff) || map --mem /pmagic.iso (0xff)
73map --hook
74chainloader (0xff)
75savedefault --wait=2
76
77title Ultimate Boot CD ISO
78fallback 8
79find --set-root /ubcd.iso
80map /ubcd.iso (0xff) || map --mem /ubcd.iso (0xff)
81map --hook
82chainloader (0xff)
83savedefault --wait=2
84
85title commandline
86commandline
87
88title floppy (fd0)
89chainloader (fd0)+1
90rootnoverify (fd0)
91
92title back to dos
93quit
94
95title reboot
96reboot
97
98title halt
99halt
100
101title MAXDOS.IMG
102find --set-root --ignore-floppies /boot/MAXDOS.IMG
103map --mem /boot/MAXDOS.IMG (fd0)
104map --hook
105chainloader (fd0)+1
106rootnoverify (fd0)
107
108
Note: See TracBrowser for help on using the repository browser.