diff options
author | Luca Boccassi <luca.boccassi@microsoft.com> | 2021-03-12 18:08:17 +0000 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2021-03-12 15:55:07 -0800 |
commit | 2266a8a19440d66dd59823df2e0bb8249e6c4eb4 (patch) | |
tree | c61a3acf1f0baa4c3c57730239eb07f75bce14e6 /meta-oe | |
parent | 4c24077ae12597fabd87d6fcd201b9b2a39c7c2e (diff) | |
download | meta-openembedded-2266a8a19440d66dd59823df2e0bb8249e6c4eb4.tar.gz |
cryptsetup: depend on new util-linux-uuid to break cycle
The util-linux recipe in Poky has been split, and libuuid is separate now:
http://git.yoctoproject.org/cgit/cgit.cgi/poky/commit/?id=d42487bf52310d095178e480b7ddec2666471009
This allows to build util-linux with cryptsetup, for native dm-verity
support.
The main cryptsetup build needs libuuid and not the full util-linux, so
switch the build-dependency over, thus allowing users to enable the
cryptsetup util-linux's PACKAGECONFIG.
The libblkid dependency is handled individually by the crypsetup's
PACKAGECONFIG option.
Signed-off-by: Luca Boccassi <luca.boccassi@microsoft.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe')
-rw-r--r-- | meta-oe/recipes-crypto/cryptsetup/cryptsetup_2.3.4.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-oe/recipes-crypto/cryptsetup/cryptsetup_2.3.4.bb b/meta-oe/recipes-crypto/cryptsetup/cryptsetup_2.3.4.bb index b9a6b71793..f53bd8523b 100644 --- a/meta-oe/recipes-crypto/cryptsetup/cryptsetup_2.3.4.bb +++ b/meta-oe/recipes-crypto/cryptsetup/cryptsetup_2.3.4.bb | |||
@@ -13,7 +13,7 @@ DEPENDS = " \ | |||
13 | json-c \ | 13 | json-c \ |
14 | libdevmapper \ | 14 | libdevmapper \ |
15 | popt \ | 15 | popt \ |
16 | util-linux \ | 16 | util-linux-uuid \ |
17 | " | 17 | " |
18 | 18 | ||
19 | RDEPENDS_${PN} = " \ | 19 | RDEPENDS_${PN} = " \ |