Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

RDKE-100: Fix Nothing provides error for foundation layer recipes #7

Merged
merged 1 commit into from
Jun 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion conf/machine/include/rpi-base.inc
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,10 @@ MACHINE_FEATURES += "apm usbhost keyboard vfat ext2 screen touchscreen alsa blue
# Raspberry Pi has no hardware clock
MACHINE_FEATURES_BACKFILL_CONSIDERED = "rtc"

MACHINE_EXTRA_RRECOMMENDS += "kernel-modules udev-rules-rpi"
#RDKE-100: Commenting to resolve nothing provides err with packagegroup-base(foundation-layer)
#MACHINE_EXTRA_RRECOMMENDS += "kernel-modules udev-rules-rpi"
MACHINE_EXTRA_RRECOMMENDS += "kernel-modules"

MACHINE_ESSENTIAL_EXTRA_RRECOMMENDS += "${@oe.utils.conditional('ENABLE_I2C', '1', 'kernel-module-i2c-dev kernel-module-i2c-bcm2708', '', d)}"
MACHINE_ESSENTIAL_EXTRA_RRECOMMENDS += "${@oe.utils.conditional('ENABLE_IR', '1', 'kernel-module-gpio-ir kernel-module-gpio-ir-tx', '', d)}"

Expand Down
11 changes: 7 additions & 4 deletions conf/machine/raspberrypi4-64.conf
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,11 @@
MACHINEOVERRIDES = "raspberrypi4:${MACHINE}"

MACHINE_FEATURES += "pci"
MACHINE_EXTRA_RRECOMMENDS += "\
linux-firmware-rpidistro-bcm43455 \
bluez-firmware-rpidistro-bcm4345c0-hcd \
"
# RDKE-100 - Commenting to resolve Nothing provides error with packagegroup-base
#MACHINE_EXTRA_RRECOMMENDS += "\
# linux-firmware-rpidistro-bcm43455 \
# bluez-firmware-rpidistro-bcm4345c0-hcd \
#"

require conf/machine/include/tune-cortexa72.inc
include conf/machine/include/rpi-base.inc
Expand All @@ -35,3 +36,5 @@ RPI_EXTRA_CONFIG ?= "\n# Force arm in 64bit mode. See: https://github.com/raspbe

ARMSTUB ?= "armstub8-gic.bin"

WHITELIST_GPLv3 += "${MLPREFIX}dosfstools ${MLPREFIX}coreutils ${MLPREFIX}findutils"
WHITELIST_GPL-3.0 = "${WHITELIST_GPLv3}"