Advertisement
Guest User

pxelinux.cfg

a guest
Sep 21st, 2011
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. # use "reboot" instead of "linbo" for clients which need the reboot workaround
  2. DEFAULT linbo
  3.  
  4. # you have to uncomment next line if you want to be able to type options on the boot prompt
  5. PROMPT 1
  6.  
  7. # 3 secs boot prompt timeout
  8. TIMEOUT 30
  9.  
  10. KBDMAP /german.kbd
  11. DISPLAY /boot.msg
  12.  
  13. # the default boot method, pxe boots linbo kernel directly
  14. LABEL linbo
  15. KERNEL linbo
  16. APPEND initrd=linbofs.gz vga=788 quiet
  17.  
  18. # boot method to use with reboot workaround
  19. LABEL reboot
  20. KERNEL grub.exe
  21. APPEND keeppxe --config-file=pxe basedir /; default 0; timeout 0; hiddenmenu; title REBOOT; fallback 1; find --ignore-floppies --ignore-cd --set-root /.linbo.reboot; cmp /.linbo.reboot /.grub.reboot || ls FALLBACK; write /.grub.reboot DONE; ls /boot/grub/menu.lst && configfile /boot/grub/menu.lst; ls /menu.lst && configfile /menu.lst; chainloader +1; title LINBO PXE; kernel (pd)/linbo quiet vga=788; initrd (pd)/linbofs.gz;
  22.  
  23. # to boot LINBO in debug mode simply type "debug" on boot prompt and press ENTER
  24. LABEL debug
  25. KERNEL linbo
  26. APPEND initrd=linbofs.gz vga=788 debug noapic nolapic acpi=off irqpoll pci=routeirq
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement