| 1 | DEFAULT /vesamenu.c32 |
|---|
| 2 | # nach Ablauf des Timeouts wird Windows XP mit synchronisiertem Autostart gebootet. |
|---|
| 3 | ONTIMEOUT winxpsync |
|---|
| 4 | PROMPT 0 |
|---|
| 5 | # STARTE winxpsync nach 5 Sek. UntÀtigkeit, wird durch Tastendruck des Anwenders unterbrochen. |
|---|
| 6 | TIMEOUT 50 |
|---|
| 7 | # starte auf jeden Fall das Defaultsystem nach 5 Sek., |
|---|
| 8 | # auch wenn der Anwender den Autostart unterbrochen hat. |
|---|
| 9 | TOTALTIMEOUT 50 |
|---|
| 10 | KBDMAP /german.kbd |
|---|
| 11 | DISPLAY /boot.msg |
|---|
| 12 | # verbietet die Ãnderung der APPEND-Zeile |
|---|
| 13 | ALLOWOPTIONS 0 |
|---|
| 14 | |
|---|
| 15 | # Layout-Definitionen fuer das Menue |
|---|
| 16 | MENU AUTOBOOT Automatischer Start von "Windows XP - Sync+Start" in # Sekunde{n}... |
|---|
| 17 | MENU BACKGROUND /logo.16 |
|---|
| 18 | MENU TITLE Boot-Menue der Gruppe fs |
|---|
| 19 | MENU color title 1;36;44 #ffffffff #00000000 std |
|---|
| 20 | MENU color sel 7;37;40 #ffffffff #ffdaa520 all |
|---|
| 21 | MENU color hotsel 1;7;37;40 #ffffffff #ffdaa520 all |
|---|
| 22 | MENU WIDTH 80 |
|---|
| 23 | MENU MARGIN 10 |
|---|
| 24 | MENU ROWS 12 |
|---|
| 25 | MENU ENDROW 24 |
|---|
| 26 | MENU TIMEOUTROW 18 |
|---|
| 27 | MENU VSHIFT 2 |
|---|
| 28 | |
|---|
| 29 | # direkter Start des Windows-XP-Systems aus der 1. Partition |
|---|
| 30 | LABEL winxp |
|---|
| 31 | MENU LABEL ^1. Windows XP - Start |
|---|
| 32 | KERNEL grub.exe |
|---|
| 33 | APPEND keeppxe --config-file=pxe basedir /; default 0; timeout 0; hiddenmenu; title Partition 1; errorcheck off; configfile (hd0,0)/boot/grub/menu.lst; configfile (hd0,0)/menu.lst; chainloader +1; errorcheck on; |
|---|
| 34 | |
|---|
| 35 | # LINBO-Start mit synchronisiertem Autostart des Windows-XP-Systems |
|---|
| 36 | LABEL winxpsync |
|---|
| 37 | MENU LABEL ^2. Windows XP - Sync+Start |
|---|
| 38 | KERNEL linbo |
|---|
| 39 | APPEND initrd=linbofs.gz vga=788 quiet autostart=1 |
|---|
| 40 | |
|---|
| 41 | # direkter Start des Ubuntu-Systems aus der 2. Partition |
|---|
| 42 | LABEL ubuntu |
|---|
| 43 | MENU LABEL ^3. Ubuntu - Start |
|---|
| 44 | KERNEL grub.exe |
|---|
| 45 | APPEND keeppxe --config-file=pxe basedir /; default 0; timeout 0; hiddenmenu; title Partition 1; errorcheck off; configfile (hd0,1)/boot/grub/menu.lst; configfile (hd0,1)/menu.lst; chainloader +1; errorcheck on; |
|---|
| 46 | |
|---|
| 47 | # LINBO-Start mit synchronisiertem Autostart des Ubuntu-Systems |
|---|
| 48 | LABEL ubuntusync |
|---|
| 49 | MENU LABEL ^4. Ubuntu - Sync+Start |
|---|
| 50 | KERNEL linbo |
|---|
| 51 | APPEND initrd=linbofs.gz vga=788 quiet autostart=2 |
|---|
| 52 | |
|---|
| 53 | # LINBO-PXE-Boot ohne Autostart eines Systems |
|---|
| 54 | LABEL linbo |
|---|
| 55 | MENU LABEL ^5. LINBO PXE |
|---|
| 56 | KERNEL linbo |
|---|
| 57 | APPEND initrd=linbofs.gz vga=788 quiet autostart=0 |
|---|
| 58 | |
|---|
| 59 | # LINBO-PXE-Boot im Debug-Modus |
|---|
| 60 | LABEL debug |
|---|
| 61 | MENU LABEL ^6. LINBO PXE debug |
|---|
| 62 | KERNEL linbo |
|---|
| 63 | APPEND initrd=linbofs.gz vga=788 debug autostart=0 |
|---|
| 64 | |
|---|
| 65 | # lokaler LINBO-Boot |
|---|
| 66 | LABEL linbo-lokal |
|---|
| 67 | MENU LABEL ^7. LINBO lokal |
|---|
| 68 | KERNEL grub.exe |
|---|
| 69 | APPEND --config-file=default 0; timeout 0; hiddenmenu; title LINBO lokal; find --set-root --ignore-floppies --ignore-cd /linbofs.gz; kernel /linbo vga=788 quiet autostart=0; initrd /linbofs.gz; |
|---|
| 70 | |
|---|
| 71 | # lokaler LINBO-Boot im Debug-Modus |
|---|
| 72 | LABEL debug-lokal |
|---|
| 73 | MENU LABEL ^8. LINBO lokal debug |
|---|
| 74 | KERNEL grub.exe |
|---|
| 75 | APPEND --config-file=default 0; timeout 0; hiddenmenu; title LINBO lokal debug; find --set-root --ignore-floppies --ignore-cd /linbofs.gz; kernel /linbo vga=788 quiet autostart=0; initrd /linbofs.gz; |
|---|
| 76 | |
|---|