diff options
author | Khem Raj <raj.khem@gmail.com> | 2021-02-27 09:35:09 -0800 |
---|---|---|
committer | Andrei Gherzan <andrei@gherzan.com> | 2021-02-27 20:26:29 +0000 |
commit | 0a83508fac9397fe570415622164f56b32715ced (patch) | |
tree | 18d947a4c84d19910221d54390eec401f02f226a | |
parent | 0a89fb8dac35d12fa94a6598e04847e06645fe76 (diff) | |
download | meta-raspberrypi-0a83508fac9397fe570415622164f56b32715ced.tar.gz |
python3-adafruit-blinka: Make rpi-gpio dependency conditional
https://github.com/agherzan/meta-raspberrypi/pull/815
introduced python3-adafruit-blinka and this recipe has added rdep on rpi-gpio,
however rpi-gpio is rpi specific package, and therefore should only be added
when building rpi based platforms, this makes the layer work in a
multi-bsp setup work
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | recipes-devtools/python/python3-adafruit-blinka_6.2.2.bb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/recipes-devtools/python/python3-adafruit-blinka_6.2.2.bb b/recipes-devtools/python/python3-adafruit-blinka_6.2.2.bb index 03993df..fb5db2c 100644 --- a/recipes-devtools/python/python3-adafruit-blinka_6.2.2.bb +++ b/recipes-devtools/python/python3-adafruit-blinka_6.2.2.bb | |||
@@ -17,5 +17,6 @@ RDEPENDS_${PN} += " \ | |||
17 | python3-adafruit-platformdetect \ | 17 | python3-adafruit-platformdetect \ |
18 | python3-adafruit-pureio \ | 18 | python3-adafruit-pureio \ |
19 | python3-core \ | 19 | python3-core \ |
20 | rpi-gpio \ | ||
21 | " | 20 | " |
21 | |||
22 | RDEPENDS_${PN}_append_rpi = " rpi-gpio" | ||