diff options
author | Marek Belisko <marek.belisko@open-nandra.com> | 2019-02-08 08:27:26 +0100 |
---|---|---|
committer | Andrei Gherzan <andrei@gherzan.ro> | 2019-02-08 14:06:34 +0000 |
commit | 89bc575bf2f60be6de606d1af226c1197b3f8323 (patch) | |
tree | 65fd503d1c0c87906bd7eadb8c77db481a858380 | |
parent | 9cc89cb7341d633b6fc3a92b937b5560d26257a1 (diff) | |
download | meta-raspberrypi-89bc575bf2f60be6de606d1af226c1197b3f8323.tar.gz |
devtools: Added raspi-gpio
Added handy tool which can be used to trace down how gpio on RPI are
configured + add possibility to update.
Signed-off-by: Marek Belisko <marek.belisko@open-nandra.com>
-rw-r--r-- | recipes-devtools/raspi-gpio/raspi-gpio_git.bb | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/recipes-devtools/raspi-gpio/raspi-gpio_git.bb b/recipes-devtools/raspi-gpio/raspi-gpio_git.bb new file mode 100644 index 0000000..0de775c --- /dev/null +++ b/recipes-devtools/raspi-gpio/raspi-gpio_git.bb | |||
@@ -0,0 +1,16 @@ | |||
1 | DESCRIPTION = "Tool to help debug / hack at the BCM283x GPIO" | ||
2 | HOMEPAGE = "https://github.com/RPi-Distro/raspi-gpio" | ||
3 | SECTION = "devel/libs" | ||
4 | LICENSE = "BSD-3-Clause" | ||
5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=a14affa234debc057b47cdca615b2192" | ||
6 | |||
7 | COMPATIBLE_MACHINE = "^rpi$" | ||
8 | |||
9 | inherit autotools | ||
10 | |||
11 | SRCREV = "2df7b8684e2e36b080cda315d78d5ba16f8f18b0" | ||
12 | SRC_URI = "git://github.com/RPi-Distro/raspi-gpio.git;protocol=https;branch=master \ | ||
13 | " | ||
14 | |||
15 | S = "${WORKDIR}/git" | ||
16 | |||