summaryrefslogtreecommitdiffstats
path: root/recipes-test/demo-network-config/primary-network-config.bb
blob: 9725898ed79b94a2a082d00c42c864a7da7318d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
DESCRIPTION = "Sample network configuration for an Uptane Primary"
LICENSE = "CLOSED"

inherit allarch

SRC_URI = "\
    file://27-dhcp-client-external.network \
    "

FILES_${PN} = "/usr/lib/systemd/network"

PR = "1"

do_install() {
    install -d ${D}/usr/lib/systemd/network
    install -m 0644 ${WORKDIR}/27-dhcp-client-external.network ${D}/usr/lib/systemd/network/
}

PRIMARY_IP ?= "10.0.3.1"
IP_ADDR = "${PRIMARY_IP}"

require static-network-config.inc

# vim:set ts=4 sw=4 sts=4 expandtab: