summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdrian Bunk <bunk@stusta.de>2020-05-27 09:25:07 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-06-05 21:36:30 +0100
commit56035c17149f5872736180db5e4d9ca2660d1f39 (patch)
treebf660b9776664b889f699f8919c745fb8a5700bc
parent200e6be175443e605afa7be2ffc80290c5701c35 (diff)
downloadpoky-56035c17149f5872736180db5e4d9ca2660d1f39.tar.gz
libubootenv: Remove the DEPENDS on mtd-utils
It was only used for pulling in zlib, but this is now a direct dependency. Also move the DEPENDS to a more common location in the file. (From OE-Core rev: ce5500cc07da270322b67db5001fc1476b6bf2fe) Signed-off-by: Adrian Bunk <bunk@stusta.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit a99fd8b705be3b8c70cb0f17f60b013d989d625c) Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-bsp/u-boot/libubootenv_0.2.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-bsp/u-boot/libubootenv_0.2.bb b/meta/recipes-bsp/u-boot/libubootenv_0.2.bb
index fa90a12bf8..ea29b668e8 100644
--- a/meta/recipes-bsp/u-boot/libubootenv_0.2.bb
+++ b/meta/recipes-bsp/u-boot/libubootenv_0.2.bb
@@ -1,5 +1,4 @@
1SUMMARY = "U-Boot libraries and tools to access environment" 1SUMMARY = "U-Boot libraries and tools to access environment"
2DEPENDS += "mtd-utils zlib"
3 2
4DESCRIPTION = "This package contains tools and libraries to read \ 3DESCRIPTION = "This package contains tools and libraries to read \
5and modify U-Boot environment. \ 4and modify U-Boot environment. \
@@ -21,6 +20,7 @@ inherit cmake lib_package
21 20
22EXTRA_OECMAKE = "-DCMAKE_BUILD_TYPE=Release" 21EXTRA_OECMAKE = "-DCMAKE_BUILD_TYPE=Release"
23 22
23DEPENDS = "zlib"
24PROVIDES += "u-boot-fw-utils" 24PROVIDES += "u-boot-fw-utils"
25RPROVIDES_${PN}-bin += "u-boot-fw-utils" 25RPROVIDES_${PN}-bin += "u-boot-fw-utils"
26 26