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