mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-14 17:59:59 +00:00
5a25dde053
* The required order was changed in oe-core commit: allarch: Add warning about packagegroup Since we want to start including this class conditionally, detect cases where packagegroup files use the old ordering and inform the user they need to update this. * drop PACKAGE_ARCH setting from xorg-fonts-100dpi - nothing seems MACHINE specific in it Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
35 lines
785 B
BlitzBasic
35 lines
785 B
BlitzBasic
SUMMARY = "Basic task to get a device booting"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=4d92cd373abda3937c2bc47fbc49d690"
|
|
|
|
PR = "r58"
|
|
|
|
PACKAGE_ARCH = "${MACHINE_ARCH}"
|
|
inherit packagegroup
|
|
|
|
#
|
|
# those ones can be set in machine config to supply packages needed to get machine booting
|
|
#
|
|
MACHINE_ESSENTIAL_EXTRA_RDEPENDS ?= ""
|
|
MACHINE_ESSENTIAL_EXTRA_RRECOMMENDS ?= ""
|
|
|
|
# Make sure we build the kernel
|
|
DEPENDS = "virtual/kernel"
|
|
|
|
#
|
|
# minimal set of packages - needed to boot
|
|
#
|
|
RDEPENDS_${PN} = "\
|
|
base-files \
|
|
base-passwd \
|
|
busybox \
|
|
netbase \
|
|
${@base_contains("MACHINE_FEATURES", "keyboard", "keymaps", "", d)} \
|
|
${MACHINE_ESSENTIAL_EXTRA_RDEPENDS} \
|
|
"
|
|
|
|
RRECOMMENDS_${PN} = "\
|
|
kernel \
|
|
${MACHINE_ESSENTIAL_EXTRA_RRECOMMENDS} \
|
|
"
|