diff options
author | Ross Burton <ross.burton@arm.com> | 2023-05-11 18:20:52 +0100 |
---|---|---|
committer | Steve Sakoman <steve@sakoman.com> | 2023-08-01 06:17:28 -1000 |
commit | 17926c24f2c31dacaee3e04be9cfc60f21f4f269 (patch) | |
tree | 8b5d1accb60773a5769280c54922af0e7be2488c /meta/classes-recipe | |
parent | 1b61d1fedb620eafc872686c842be2ecfabe9684 (diff) | |
download | poky-17926c24f2c31dacaee3e04be9cfc60f21f4f269.tar.gz |
rootfs_rpm: don't depend on opkg-native for update-alternatives
opkg-native hasn't provided update-alternatives since 2014[1] so this is
the wrong dependency, and image.bbclass depends on the virtual provider
virtual/update-alternatives-native already.
[1] oe-core 1e2c38ce13f8e4b25d8656d237343380cbc970aa
(From OE-Core rev: 49be8045a6595cb98413519d2e65e94345f026c1)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 51004376be9a6b9a4c38585d14d2516d90138319)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Diffstat (limited to 'meta/classes-recipe')
-rw-r--r-- | meta/classes-recipe/rootfs_rpm.bbclass | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/meta/classes-recipe/rootfs_rpm.bbclass b/meta/classes-recipe/rootfs_rpm.bbclass index 6eccd5a959..55f1cc92ca 100644 --- a/meta/classes-recipe/rootfs_rpm.bbclass +++ b/meta/classes-recipe/rootfs_rpm.bbclass | |||
@@ -20,11 +20,9 @@ IMAGE_ROOTFS_EXTRA_SPACE:append = "${@bb.utils.contains("PACKAGE_INSTALL", "dnf" | |||
20 | # Dnf is python based, so be sure python3-native is available to us. | 20 | # Dnf is python based, so be sure python3-native is available to us. |
21 | EXTRANATIVEPATH += "python3-native" | 21 | EXTRANATIVEPATH += "python3-native" |
22 | 22 | ||
23 | # opkg is needed for update-alternatives | ||
24 | RPMROOTFSDEPENDS = "rpm-native:do_populate_sysroot \ | 23 | RPMROOTFSDEPENDS = "rpm-native:do_populate_sysroot \ |
25 | dnf-native:do_populate_sysroot \ | 24 | dnf-native:do_populate_sysroot \ |
26 | createrepo-c-native:do_populate_sysroot \ | 25 | createrepo-c-native:do_populate_sysroot" |
27 | opkg-native:do_populate_sysroot" | ||
28 | 26 | ||
29 | do_rootfs[depends] += "${RPMROOTFSDEPENDS}" | 27 | do_rootfs[depends] += "${RPMROOTFSDEPENDS}" |
30 | do_populate_sdk[depends] += "${RPMROOTFSDEPENDS}" | 28 | do_populate_sdk[depends] += "${RPMROOTFSDEPENDS}" |