mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-01-01 13:58:06 +00:00
* as oe-core did in: https://git.openembedded.org/openembedded-core/commit/?id=d4c346e8ab * when people are have to maintain own PRs for recipes in oe-core, they might add them for meta-oe recipes at the same time when upgrading to next LTS Signed-off-by: Martin Jansa <martin.jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
32 lines
677 B
BlitzBasic
32 lines
677 B
BlitzBasic
SUMMARY = "Basic task to get a device booting"
|
|
|
|
|
|
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 \
|
|
${@bb.utils.contains("MACHINE_FEATURES", "keyboard", "keymaps", "", d)} \
|
|
${MACHINE_ESSENTIAL_EXTRA_RDEPENDS} \
|
|
"
|
|
|
|
RRECOMMENDS:${PN} = "\
|
|
kernel \
|
|
${MACHINE_ESSENTIAL_EXTRA_RRECOMMENDS} \
|
|
"
|