Add nand-part of sunxi-tools

pull/1/merge
Nicolas Aguirre 2012-10-07 10:39:52 +02:00
parent f0baa81247
commit 93a2c11b2d
1 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,25 @@
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 = "r1"
SRCREV = "1f5056275a6c026f308ac6f7ae52125c390d1d7c"
SRC_URI = "git://github.com/amery/sunxi-tools.git;protocol=git"
S = "${WORKDIR}/git"
FILES_${PN} = "${bindir}/*"
do_compile() {
cd ${S}
${CC} -I./include nand-part.c -o nand-part
}
do_install() {
install -d ${D}/${bindir}
install -m 755 ${S}/nand-part ${D}/${bindir}
}