meta-sunxi/recipes-support/sunxi-tools/sunxi-tools_git.bb
Tomas Novotny a982c07f5e sunxi-tools: Fix typo in the directory name
Signed-off-by: Tomas Novotny <novotny@rehivetech.com>
2013-10-25 14:18:05 +02:00

34 lines
956 B
BlitzBasic

DESCRIPTION = "Tools to help hacking Allwinner A10"
LICENSE = "GPLv2+"
LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
PV = "1.0+git${SRCPV}"
PKGV = "1.0+git${GITPKGV}"
PR = "r2"
SRCREV = "ed6f7969d80b91048b0ed95ccb61cc98f46fead7"
DEPENDS += "libusb"
SRC_URI = "git://github.com/linux-sunxi/sunxi-tools;protocol=git"
S = "${WORKDIR}/git"
BBCLASSEXTEND = "native nativesdk"
FILES_${PN} = "${bindir}/*"
CFLAGS = "-std=c99 -D_POSIX_C_SOURCE=200112L -I./include"
do_install() {
install -d ${D}/${bindir}
install -m 755 ${S}/bootinfo ${D}/${bindir}
install -m 755 ${S}/bin2fex ${D}/${bindir}
install -m 755 ${S}/fel ${D}/${bindir}
install -m 755 ${S}/fel-gpio ${D}/${bindir}
install -m 755 ${S}/fex2bin ${D}/${bindir}
install -m 755 ${S}/fexc ${D}/${bindir}
install -m 755 ${S}/nand-part ${D}/${bindir}
install -m 755 ${S}/pio ${D}/${bindir}
install -m 755 ${S}/usb-boot ${D}/${bindir}
}