rtl8169-eeprom: add recipe for rtl8169-eeprom

This commit is contained in:
Henning Heinold 2015-07-10 19:45:25 +02:00 committed by Holger Hans Peter Freyther
parent 209666c7dd
commit de502623c1
1 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,31 @@
SUMMARY = "small utility to configure MAC-addresses on ALIX/APU boards"
HOMEPAGE = ""
LICENSE = "GPLv2+"
LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
DEPENDS = "pciutils"
COMPATIBLE_MACHINE = "(sysmocom-bsc|sysmocom-idu|sysmocom-bsc-e1.conf)"
SRCREV = "e62e515ce314599e48b268dac69d2f16a504264c"
SRC_URI = "git://git.sysmocom.de/rtl8168-eeprom;protocol=git;branch=master"
PV = "v0.0.1+git${SRCPV}"
PR = "r0"
S = "${WORKDIR}/git"
inherit autotools pkgconfig
CFLAGS += ""
LDFLAGS += ""
CFLAGS += "`pkg-config --cflags libpci`"
LDFLAGS += "`pkg-config --libs libpci`"
do_configure() {
}
do_install() {
install -d ${D}${sbindir}/
install -m 0755 ${S}/rtl8168-eeprom ${D}${sbindir}/
}