16 lines
592 B
Text
16 lines
592 B
Text
|
#!ipxe
|
||
|
|
||
|
# iPXE is a open source network boot firmware.
|
||
|
# It provides a full PXE implementation enhanced with additional features such as
|
||
|
# booting from HTTP, FTP, iSCSI SAN, Fibre Channel SAN, Wireless, WAN or Infiniband
|
||
|
#
|
||
|
# http://ipxe.org/
|
||
|
#
|
||
|
# We use it to rapidly compile & debug metalsvm on real hardware.
|
||
|
# This script is fetched and executed by iPXE. Thus enables easy changes in the boot
|
||
|
# procedure without recompiling iPXE and reflashing your USB thumbdrive or network boot ROM.
|
||
|
|
||
|
kernel http://134.130.62.174:8080/metalsvm.elf
|
||
|
module http://134.130.62.174:8080/tools/initrd.img
|
||
|
boot
|