mirror of
https://github.com/linux-sunxi/meta-sunxi.git
synced 2025-12-24 05:56:40 +01:00
Some of them were introduced by mass-removal of S = WORKDIR/git assignments;
rather than try to fix up (or redo) just these, I've run this sed command over
the whole tree:
sed -i -z -E 's/([ \t\f\v\r]*\n){3,}/\n\n/g' `find . -name *.bb -o -name *.inc`
The rationale is that more than one empty line is wasting vertical screen space, and
does nothing for readability.
Signed-off-by: Alper Ak <alperyasinak1@gmail.com>
33 lines
990 B
BlitzBasic
33 lines
990 B
BlitzBasic
DESCRIPTION = "Tools to help hacking Allwinner A10 and A20"
|
|
|
|
LICENSE = "GPL-2.0-only"
|
|
LIC_FILES_CHKSUM = "file://LICENSE.md;md5=97bd67b5d0309e452b637f76e1c9a23c"
|
|
|
|
PR = "r0"
|
|
|
|
DEPENDS += "libusb"
|
|
|
|
SRC_URI = "git://github.com/linux-sunxi/sunxi-tools;protocol=https;branch=master"
|
|
SRCREV = "9a3d62aa0c820b3dd42ba3409b2043f4143683cd"
|
|
|
|
inherit pkgconfig
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|
|
|
|
FILES:${PN} = "${bindir}/*"
|
|
|
|
CFLAGS = "-std=c99 -D_POSIX_C_SOURCE=200112L -I./include"
|
|
CFLAGS_class-native = "-std=c99 -D_POSIX_C_SOURCE=200112L -I./include"
|
|
|
|
do_install() {
|
|
install -d ${D}/${bindir}
|
|
install -m 755 ${S}/sunxi-bootinfo ${D}/${bindir}
|
|
install -m 755 ${S}/bin2fex ${D}/${bindir}
|
|
install -m 755 ${S}/sunxi-fel ${D}/${bindir}
|
|
install -m 755 ${S}/fel-gpio ${D}/${bindir}
|
|
install -m 755 ${S}/fex2bin ${D}/${bindir}
|
|
install -m 755 ${S}/sunxi-fexc ${D}/${bindir}
|
|
install -m 755 ${S}/sunxi-nand-part ${D}/${bindir}
|
|
install -m 755 ${S}/sunxi-pio ${D}/${bindir}
|
|
}
|