blob: 2ebe5f96e5ffaafe4a62009c6b85d725cda572ff (
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
50
51
|
DESCRIPTION = "Basic task to get a device booting"
LICENSE = "MIT"
PR = "r9"
PACKAGE_ARCH = "${MACHINE_ARCH}"
inherit packagegroup
ARAGO_ALSA_BASE = "\
libasound \
alsa-utils-aplay \
"
ARAGO_BASE = "\
module-init-tools \
mtd-utils \
mtd-utils-ubifs \
curl \
initscript-telnetd \
ethtool \
thermal-init \
bash \
opkg-bash-completion \
udev-extraconf \
libgpiod \
libgpiod-tools \
"
# these require meta-openembedded/meta-oe layer
ARAGO_EXTRA = "\
devmem2 \
tcpdump \
parted \
dropbear \
openssh-sftp-server \
kms++ \
kms++-python \
can-utils \
"
ARAGO_EXTRA_append_keystone = "\
k2-fw-initrd \
"
# minimal set of packages - needed to boot
RDEPENDS_${PN} = "\
${@bb.utils.contains('DISTRO_FEATURES', 'zeroconf', 'packagegroup-base-zeroconf', '',d)} \
${@bb.utils.contains('MACHINE_FEATURES', 'alsa', '${ARAGO_ALSA_BASE}', '',d)} \
${ARAGO_BASE} \
${ARAGO_EXTRA} \
"
|