blob: 2717dd153e713b533abcfb21e76a7a036e041a0f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#
# Copyright (C) 2007 OpenedHand Ltd.
#
# derived from oe-core: meta/recipes-core/packagegroups/packagegroup-core-boot.bb
SUMMARY = "Minimal boot requirements"
DESCRIPTION = "The minimal set of packages required to boot the system"
LICENSE = "MIT"
PACKAGE_ARCH = "${MACHINE_ARCH}"
inherit packagegroup
# Disto can override
VIRTUAL-RUNTIME_rngd ?= "rng-tools"
RDEPENDS_${PN} = "\
packagegroup-core-boot \
${VIRTUAL-RUNTIME_rngd} \
"
RRECOMMENDS_${PN} = "\
tzdata \
"
|