blob: 9731732c2f10169bfcd467b4d5653711ff461ddd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# vim: set ft=sh:
build ()
{
MODULES=""
BINARIES=""
FILES=""
SCRIPT="archiso_pxe_http"
add_binary "/usr/bin/curl"
}
help ()
{
cat<<HELPEOF
This hook loads the necessary modules for boot via PXE and HTTP/FTP with curl.
HELPEOF
}
|