blob: ab378cf5fd6d52b46857feeca23c99053a8ee142 (
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
# Copyright (C) 2014, 2015 O.S. Systems Software LTDA.
SUMMARY = "Freescale Manufacturing Tool requirements"
LICENSE = "MIT"
PACKAGE_ARCH = "${MACHINE_ARCH}"
inherit packagegroup
PACKAGES = " \
${PN}-base \
${PN}-mtd \
${PN}-extfs \
"
# The essential packages for device bootup that may be set in the
# machine configuration file.
MACHINE_ESSENTIAL_EXTRA_RDEPENDS ?= ""
# Distro can override the following VIRTUAL-RUNTIME providers:
VIRTUAL-RUNTIME_keymaps ?= "keymaps"
RDEPENDS_${PN}-base = " \
bash \
imx-uuc \
util-linux \
coreutils \
dosfstools \
mmc-utils \
base-files \
base-passwd \
busybox \
${@bb.utils.contains("MACHINE_FEATURES", "keyboard", "${VIRTUAL-RUNTIME_keymaps}", "", d)} \
${MACHINE_ESSENTIAL_EXTRA_RDEPENDS} \
"
RDEPENDS_${PN}-mtd = " \
${PN}-base \
imx-kobs \
mtd-utils \
mtd-utils-ubifs \
"
RDEPENDS_${PN}-extfs = " \
${PN}-base \
e2fsprogs-mke2fs \
e2fsprogs-e2fsck \
"
COMPATIBLE_MACHINE = "(imx)"
|