isolinux.cfg 807 B

123456789101112131415161718192021222324252627282930313233343536
  1. # Add `UI vesamenu.c32` to a new line in `global.cfg` to switch to GUI bootmenu (use `sudo ros config syslinux`)
  2. UI menu.c32
  3. TIMEOUT 30 #3s
  4. PROMPT 0
  5. # doesn't appear to work here?
  6. INCLUDE ../global.cfg
  7. # each INCLUDEd file has a `DEFAULT mylabel` in it, and the last one wins
  8. LABEL rancheros-previous
  9. MENU LABEL Previous RancherOS Version
  10. MENU DISABLE
  11. INCLUDE ../linux-previous.cfg
  12. LABEL rancheros-current
  13. MENU LABEL Current RancherOS Version
  14. MENU DISABLE
  15. INCLUDE ../linux-current.cfg
  16. # http://www.syslinux.org/wiki/index.php?title=Comboot/menu.c32
  17. LABEL Boot next BIOS option
  18. MENU LABEL Boot next BIOS option
  19. LOCALBOOT -1
  20. MENU TITLE RancherOS
  21. MENU BACKGROUND ../rancher.png
  22. MENU WIDTH 80
  23. MENU MARGIN 10
  24. MENU ROWS 12
  25. MENU TABMSGROW 18
  26. MENU CMDLINEROW 18
  27. MENU ENDROW 24
  28. MENU TIMEOUTROW 20