diff options
-rw-r--r-- | recipes-core/packagegroups/packagegroup-rpi-test.bb | 1 | ||||
-rw-r--r-- | recipes-devtools/wiringpi/wiringpi_git.bb | 35 |
2 files changed, 0 insertions, 36 deletions
diff --git a/recipes-core/packagegroups/packagegroup-rpi-test.bb b/recipes-core/packagegroups/packagegroup-rpi-test.bb index 57400b1..852e3a6 100644 --- a/recipes-core/packagegroups/packagegroup-rpi-test.bb +++ b/recipes-core/packagegroups/packagegroup-rpi-test.bb | |||
@@ -11,7 +11,6 @@ OMXPLAYER = "${@bb.utils.contains('MACHINE_FEATURES', 'vc4graphics', '', 'omxpl | |||
11 | RDEPENDS_${PN} = "\ | 11 | RDEPENDS_${PN} = "\ |
12 | ${OMXPLAYER} \ | 12 | ${OMXPLAYER} \ |
13 | bcm2835-tests \ | 13 | bcm2835-tests \ |
14 | wiringpi \ | ||
15 | rpio \ | 14 | rpio \ |
16 | rpi-gpio \ | 15 | rpi-gpio \ |
17 | pi-blaster \ | 16 | pi-blaster \ |
diff --git a/recipes-devtools/wiringpi/wiringpi_git.bb b/recipes-devtools/wiringpi/wiringpi_git.bb deleted file mode 100644 index e78c58a..0000000 --- a/recipes-devtools/wiringpi/wiringpi_git.bb +++ /dev/null | |||
@@ -1,35 +0,0 @@ | |||
1 | DESCRIPTION = "A library to control Raspberry Pi GPIO channels" | ||
2 | HOMEPAGE = "https://projects.drogon.net/raspberry-pi/wiringpi/" | ||
3 | SECTION = "devel/libs" | ||
4 | LICENSE = "LGPLv3+" | ||
5 | LIC_FILES_CHKSUM = "file://COPYING.LESSER;md5=e6a600fd5e1d9cbde2d983680233ad02" | ||
6 | |||
7 | DEPENDS += "virtual/crypt" | ||
8 | |||
9 | # tag 2.46 | ||
10 | SRCREV = "8d188fa0e00bb8c6ff6eddd07bf92857e9bd533a" | ||
11 | |||
12 | S = "${WORKDIR}/git" | ||
13 | |||
14 | SRC_URI = "git://git.drogon.net/wiringPi \ | ||
15 | file://0001-Add-initial-cross-compile-support.patch \ | ||
16 | " | ||
17 | |||
18 | COMPATIBLE_MACHINE = "^rpi$" | ||
19 | |||
20 | CFLAGS_prepend = "-I${S}/wiringPi -I${S}/devLib " | ||
21 | |||
22 | EXTRA_OEMAKE += "'INCLUDE_DIR=${D}${includedir}' 'LIB_DIR=${D}${libdir}'" | ||
23 | EXTRA_OEMAKE += "'DESTDIR=${D}/usr' 'PREFIX=""'" | ||
24 | |||
25 | do_compile() { | ||
26 | oe_runmake -C devLib | ||
27 | oe_runmake -C wiringPi | ||
28 | oe_runmake -C gpio 'LDFLAGS=${LDFLAGS} -L${S}/wiringPi -L${S}/devLib' | ||
29 | } | ||
30 | |||
31 | do_install() { | ||
32 | oe_runmake -C devLib install | ||
33 | oe_runmake -C wiringPi install | ||
34 | oe_runmake -C gpio install | ||
35 | } | ||