10 lines
176 B
Plaintext
10 lines
176 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
dest="${1}"
|
||
|
|
||
|
ipxeEFISource="http://boot.ipxe.org/ipxe.efi"
|
||
|
kpxeSource="http://boot.ipxe.org/undionly.kpxe"
|
||
|
|
||
|
cd "${dest}"
|
||
|
wget "${ipxeEFISource}"
|
||
|
wget "${kpxeSource}"
|