Files
meta-openembedded/meta-oe/recipes-devtools/serialcheck/serialcheck_1.0.0.bb
Mike Crowe 028ada697c serialcheck: Explicitly set EXTRA_OEMAKE as required
This recipe currently relies on EXTRA_OEMAKE having been to set to "-e
MAKEFLAGS=" in bitbake.conf to operate. It is necessary to make this
explicit so that the default in bitbake.conf can be changed.

Signed-off-by: Mike Crowe <mac@mcrowe.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-02-15 10:16:37 +01:00

26 lines
796 B
BlitzBasic

SUMMARY = "Application to verify operation of serial ports"
HOMEPAGE = "http://git.breakpoint.cc/cgit/bigeasy/serialcheck.git/"
LICENSE = "GPLv2"
LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
SRC_URI = "git://git.breakpoint.cc/bigeasy/serialcheck.git \
file://0001-Add-option-to-enable-internal-loopback.patch \
file://0002-Restore-original-loopback-config.patch"
SRCREV = "63854a2d0c0129efab132ec328a75279e013fb84"
S = "${WORKDIR}/git"
EXTRA_OEMAKE = "-e MAKEFLAGS="
CFLAGS_prepend = "-Wall -Wextra -Wno-sign-compare -Wno-pointer-sign "
do_install() {
install -d ${D}${bindir}
install ${S}/serialcheck ${D}${bindir}
install -d ${D}${docdir}/${BP}
install ${S}/Readme.txt ${D}${docdir}/${BP}
}
BBCLASSEXTEND = "nativesdk"