parrotsec.ipxe.j2 576 B

12345678910111213141516171819202122232425262728
  1. #!ipxe
  2. # Parrot Security Linux
  3. # https://www.parrotsec.org
  4. goto ${menu}
  5. :parrotsec
  6. set os {{ releases.parrotsec.name }}
  7. menu ${os} Installers
  8. item --gap Official Releases
  9. {% for item in releases.parrotsec.versions %}
  10. item {{ item.code_name }} ${space} ${os} {{ item.name }}
  11. {% endfor %}
  12. choose parrotsec_version || goto parrotsec_exit
  13. goto parrotsec_boot
  14. :parrotsec_boot
  15. imgfree
  16. set url ${live_endpoint}{{ endpoints['parrot-net'].path }}
  17. kernel ${url}vmlinuz vga=788 initrd=initrd ${cmdline}
  18. initrd ${url}initrd
  19. boot
  20. goto parrotsec_exit
  21. :parrotsec_exit
  22. clear menu
  23. exit 0