diff options
author | Marek Vasut <marex@denx.de> | 2020-05-18 10:27:55 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-05-28 18:15:28 +0100 |
commit | 6955683b99e57b3115bc397d3923013953350429 (patch) | |
tree | 4dfd4d9277d3d1701c30781218acdf37a1416295 | |
parent | 4ebe10ffde866ab696ce97daa4b47328b5199d86 (diff) | |
download | poky-6955683b99e57b3115bc397d3923013953350429.tar.gz |
libubootenv: Depend on zlib
The libubootenv depends on zlib as it calls at least crc32() from
there and links against it. Add the DEPENDS entry.
(From OE-Core rev: dc5babe9472ba7379edbb17b6cbac44604606b26)
Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Stefano Babic <sbabic@denx.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
(cherry picked from commit db513f9ec59b7ac526b2cdc42b0eb2573e134bc4)
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.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 3251d0f05b..fa90a12bf8 100644 --- a/meta/recipes-bsp/u-boot/libubootenv_0.2.bb +++ b/meta/recipes-bsp/u-boot/libubootenv_0.2.bb | |||
@@ -1,5 +1,5 @@ | |||
1 | SUMMARY = "U-Boot libraries and tools to access environment" | 1 | SUMMARY = "U-Boot libraries and tools to access environment" |
2 | DEPENDS += "mtd-utils" | 2 | DEPENDS += "mtd-utils zlib" |
3 | 3 | ||
4 | DESCRIPTION = "This package contains tools and libraries to read \ | 4 | DESCRIPTION = "This package contains tools and libraries to read \ |
5 | and modify U-Boot environment. \ | 5 | and modify U-Boot environment. \ |