blob: 72c503d3836bae2f49b2a79e3b2ac9e1b9e9b8a3 (
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
26
27
28
29
30
31
|
#
# Copyright (C) 2007 OpenedHand Ltd.
#
DESCRIPTION = "Task for OpenedHand Poky - minimal bootable image"
PACKAGE_ARCH = "${MACHINE_ARCH}"
DEPENDS = "virtual/kernel"
ALLOW_EMPTY = "1"
PR = "r3"
#
# Set by the machine configuration with packages essential for device bootup
#
MACHINE_ESSENTIAL_EXTRA_RDEPENDS ?= ""
MACHINE_ESSENTIAL_EXTRA_RRECOMMENDS ?= ""
RDEPENDS_task-poky-boot = "\
base-files \
base-passwd \
busybox \
initscripts \
modutils-initscripts \
netbase \
sysvinit \
tinylogin \
udev \
update-alternatives \
${MACHINE_ESSENTIAL_EXTRA_RDEPENDS}"
RRECOMMENDS_task-poky-boot = "\
${MACHINE_ESSENTIAL_EXTRA_RRECOMMENDS}"
|