mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-05-22 08:39:20 +00:00
Changes: - rename SUMMARY with length > 80 to DESCRIPTION - rename DESCRIPTION with length < 80 to (non present tag) SUMMARY - drop final point character at the end of SUMMARY string - remove trailing whitespace of SUMMARY line Note: don't bump PR Signed-off-by: Matthieu Crapet <Matthieu.Crapet@ingenico.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
42 lines
959 B
BlitzBasic
42 lines
959 B
BlitzBasic
SUMMARY = "Basic task to get a device booting"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=4d92cd373abda3937c2bc47fbc49d690"
|
|
|
|
PR = "r58"
|
|
|
|
inherit packagegroup
|
|
|
|
# packages which content depend on MACHINE_FEATURES need to be MACHINE_ARCH
|
|
#
|
|
PACKAGE_ARCH = "${MACHINE_ARCH}"
|
|
|
|
#
|
|
# 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"
|
|
|
|
RPROVIDES_${PN} += "task-boot"
|
|
RREPLACES_${PN} += "task-boot"
|
|
RCONFLICTS_${PN} += "task-boot"
|
|
|
|
#
|
|
# 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} \
|
|
"
|