diff options
author | Adrian Bunk <bunk@stusta.de> | 2020-05-27 09:25:07 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-05-30 12:32:47 +0100 |
commit | a9782b3446dfb1a6558f23ba52e11aa425e37665 (patch) | |
tree | cc18c0e5e9047317daf575dd0f1a75a5e2b397b4 | |
parent | cc7f3bef22f9f3883327cb9c84df08e4a86a29ff (diff) | |
download | poky-a9782b3446dfb1a6558f23ba52e11aa425e37665.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: a99fd8b705be3b8c70cb0f17f60b013d989d625c)
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-bsp/u-boot/libubootenv_0.2.bb | 2 |
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 @@ | |||
1 | SUMMARY = "U-Boot libraries and tools to access environment" | 1 | SUMMARY = "U-Boot libraries and tools to access environment" |
2 | DEPENDS += "mtd-utils zlib" | ||
3 | 2 | ||
4 | DESCRIPTION = "This package contains tools and libraries to read \ | 3 | DESCRIPTION = "This package contains tools and libraries to read \ |
5 | and modify U-Boot environment. \ | 4 | and modify U-Boot environment. \ |
@@ -21,6 +20,7 @@ inherit cmake lib_package | |||
21 | 20 | ||
22 | EXTRA_OECMAKE = "-DCMAKE_BUILD_TYPE=Release" | 21 | EXTRA_OECMAKE = "-DCMAKE_BUILD_TYPE=Release" |
23 | 22 | ||
23 | DEPENDS = "zlib" | ||
24 | PROVIDES += "u-boot-fw-utils" | 24 | PROVIDES += "u-boot-fw-utils" |
25 | RPROVIDES_${PN}-bin += "u-boot-fw-utils" | 25 | RPROVIDES_${PN}-bin += "u-boot-fw-utils" |
26 | 26 | ||