mirror of
https://git.yoctoproject.org/poky
synced 2026-01-29 21:08:42 +01:00
meta: stop using "virtual/" in RPROVIDES and RDEPENDS
Fixes [YOCTO #14538] Recipes shouldn't use the "virtual/" string in RPROVIDES and RDEPENDS. That's confusing because "virtual/" has no special meaning in RPROVIDES and RDEPENDS (unlike in PROVIDES and DEPENDS). Instead, using "virtual-" instead of "virtual/" as already done in the glibc recipe. (From OE-Core rev: 93ac180d8c389f16964bce8bd5538d9389e970e6) Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
1326991282
commit
e6365c9f52
@@ -5,7 +5,7 @@ DESCRIPTION = "Grub might require different configuration file for \
|
||||
different machines."
|
||||
HOMEPAGE = "https://www.gnu.org/software/grub/manual/grub/grub.html#Configuration"
|
||||
|
||||
RPROVIDES:${PN} += "virtual/grub-bootconf"
|
||||
RPROVIDES:${PN} += "virtual-grub-bootconf"
|
||||
|
||||
inherit grub-efi-cfg
|
||||
|
||||
|
||||
@@ -5,7 +5,7 @@ require conf/image-uefi.conf
|
||||
GRUBPLATFORM = "efi"
|
||||
|
||||
DEPENDS:append = " grub-native"
|
||||
RDEPENDS:${PN} = "grub-common virtual/grub-bootconf"
|
||||
RDEPENDS:${PN} = "grub-common virtual-grub-bootconf"
|
||||
|
||||
SRC_URI += " \
|
||||
file://cfg \
|
||||
|
||||
@@ -46,7 +46,7 @@ python __anonymous () {
|
||||
|
||||
FILES:${PN} = "${EFI_FILES_PATH}/${SYSTEMD_BOOT_IMAGE}"
|
||||
|
||||
RDEPENDS:${PN} += "virtual/systemd-bootconf"
|
||||
RDEPENDS:${PN} += "virtual-systemd-bootconf"
|
||||
|
||||
# Imported from the old gummiboot recipe
|
||||
TUNE_CCARGS:remove = "-mfpmath=sse"
|
||||
|
||||
@@ -2,7 +2,7 @@ LICENSE = "MIT"
|
||||
LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
|
||||
SUMMARY = "Basic systemd-boot configuration files"
|
||||
|
||||
RPROVIDES:${PN} += "virtual/systemd-bootconf"
|
||||
RPROVIDES:${PN} += "virtual-systemd-bootconf"
|
||||
PACKAGE_ARCH = "${MACHINE_ARCH}"
|
||||
|
||||
inherit systemd-boot-cfg
|
||||
|
||||
Reference in New Issue
Block a user