mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-02-14 02:10:47 +00:00
Use '${COMMON_LICENSE_DIR}/MIT' for MIT License to fix the warning:
| WARNING: packagegroup-xfce-base-1.0-r5 do_populate_lic:
${COREBASE}/LICENSE is not a valid license file, please use
'${COMMON_LICENSE_DIR}/MIT' for a MIT License file in LIC_FILES_CHKSUM.
This will become an error in the future
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
35 lines
795 B
BlitzBasic
35 lines
795 B
BlitzBasic
SUMMARY = "Basic task to get a device booting"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"
|
|
|
|
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 \
|
|
${@bb.utils.contains("MACHINE_FEATURES", "keyboard", "keymaps", "", d)} \
|
|
${MACHINE_ESSENTIAL_EXTRA_RDEPENDS} \
|
|
"
|
|
|
|
RRECOMMENDS_${PN} = "\
|
|
kernel \
|
|
${MACHINE_ESSENTIAL_EXTRA_RRECOMMENDS} \
|
|
"
|