blob: 85c3b78485ad93916ee24cea1fe4e14b07af83eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
DESCRIPTION = "Ethernet Configuration Files"
SECTION = "eth-config"
LICENSE = "Freescale-EULA"
LIC_FILES_CHKSUM = "file://COPYING;md5=cf02dc8eb5ac4a76f3812826520dea87"
PR = "r2"
SRC_URI = "git://git.freescale.com/ppc/sdk/eth-config.git"
SRCREV = "96ac356dbe77948318c3806764f4a68862e30ac4"
S = "${WORKDIR}/git"
do_install() {
install -d ${D}/etc/fmc/config
install -m 644 ${S}/*.xml ${D}/etc/fmc/config
install -d ${D}/etc/fmc/config/shared_mac
install -m 644 ${S}/shared_mac/*.xml ${D}/etc/fmc/config/shared_mac
install -m 644 ${S}/shared_mac/README ${D}/etc/fmc/config/shared_mac
}
|