live-lite.ipxe.j2 630 B

1234567891011121314151617181920212223242526
  1. #!ipxe
  2. goto ${menu} ||
  3. :live_menu
  4. set os Linux Lite
  5. menu ${os}
  6. item --gap Use the username linuxlite with a blank password
  7. item --gap ${os} Versions
  8. item 5 ${space} ${os} 6
  9. choose live_version || goto live_exit
  10. goto ${live_version}
  11. :6
  12. set squash_url ${live_endpoint}{{ endpoints["linux-lite-5-squash"].path }}filesystem.squashfs
  13. set kernel_url ${live_endpoint}{{ endpoints["linux-lite-5-squash"].path }}
  14. goto boot-6
  15. :boot-6
  16. kernel ${kernel_url}vmlinuz ip=dhcp boot=casper netboot=url url=${squash_url} username=linuxlite userfullname=linuxlite {{ kernel_params }}
  17. initrd ${kernel_url}initrd
  18. boot
  19. :live_exit
  20. clear menu
  21. exit 0