blob: 1f709b4eefacbed94fef584ed5bef66ba0502b57 [file] [log] [blame]
William A. Kennington III33f70c22024-09-04 15:00:25 -07001SUMMARY = "gBMC common networking components"
2PR = "r1"
3LICENSE = "Apache-2.0"
4LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/Apache-2.0;md5=89aea4e17d99a7cacdbeed46a0096b10"
5
6SRC_URI += " \
7 file://gbmc-ra.sh \
8 "
9S = "${WORKDIR}"
10
11FILES:${PN} += " \
12 ${datadir}/ \
13 "
14
15RDEPENDS:${PN}:append = " \
16 bash \
17 network-sh \
18 ndisc6-rdisc6 \
19 "
20
21do_install() {
22 install -d -m0755 ${D}${datadir}
23 install -m0644 ${S}/gbmc-ra.sh ${D}${datadir}/
24}
25