diff --git a/recipes-bsp/rtl8169-eeprom/rtl8169-eeprom_git.bb b/recipes-bsp/rtl8169-eeprom/rtl8169-eeprom_git.bb new file mode 100644 index 0000000..1d5e3e9 --- /dev/null +++ b/recipes-bsp/rtl8169-eeprom/rtl8169-eeprom_git.bb @@ -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}/ +} +