Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/install/archiso_pxe_http
blob: afdde439bd6ccc98df0df7b6f2e9e1b9c912dbec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/env bash
#
# SPDX-License-Identifier: GPL-3.0-or-later

build() {
    add_runscript

    add_binary curl

    add_file "$(readlink -f /etc/ssl/certs/ca-certificates.crt)" /etc/ssl/certs/ca-certificates.crt
}

help() {
    cat <<HELPEOF
  This hook loads the necessary modules for boot via PXE and HTTP.
HELPEOF
}