blob: 8dc62954a21fb05f7bbbf3a4ba3f1f4d97d26cd6 (
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
#
# Copyright (C) 2010 Intel Corporation
#
SUMMARY = "Standard full-featured Linux system"
DESCRIPTION = "Package group bringing in packages needed for a more traditional full-featured Linux system"
inherit packagegroup
PACKAGES = "\
packagegroup-core-full-cmdline \
packagegroup-core-full-cmdline-utils \
packagegroup-core-full-cmdline-extended \
packagegroup-core-full-cmdline-dev-utils \
packagegroup-core-full-cmdline-multiuser \
packagegroup-core-full-cmdline-initscripts \
packagegroup-core-full-cmdline-sys-services \
"
RDEPENDS:packagegroup-core-full-cmdline = "\
packagegroup-core-full-cmdline-utils \
packagegroup-core-full-cmdline-extended \
packagegroup-core-full-cmdline-dev-utils \
packagegroup-core-full-cmdline-multiuser \
packagegroup-core-full-cmdline-initscripts \
packagegroup-core-full-cmdline-sys-services \
"
RDEPENDS:packagegroup-core-full-cmdline-utils = "\
bash \
acl \
attr \
bc \
coreutils \
cpio \
e2fsprogs \
ed \
file \
findutils \
gawk \
grep \
less \
makedevs \
mc \
mc-shell \
mc-helpers \
mc-helpers-perl \
ncurses \
net-tools \
procps \
psmisc \
sed \
tar \
time \
util-linux \
"
RDEPENDS:packagegroup-core-full-cmdline-extended = "\
iproute2 \
iputils \
iptables \
module-init-tools \
openssl \
"
RDEPENDS:packagegroup-core-full-cmdline-dev-utils = "\
diffutils \
m4 \
make \
patch \
"
VIRTUAL-RUNTIME_syslog ?= "sysklogd"
RDEPENDS:packagegroup-core-full-cmdline-initscripts = "\
${VIRTUAL-RUNTIME_initscripts} \
${VIRTUAL-RUNTIME_init_manager} \
ethtool \
${VIRTUAL-RUNTIME_login_manager} \
${VIRTUAL-RUNTIME_syslog} \
"
RDEPENDS:packagegroup-core-full-cmdline-multiuser = "\
bzip2 \
cracklib \
gzip \
shadow \
sudo \
"
RDEPENDS:packagegroup-core-full-cmdline-sys-services = "\
at \
cronie \
logrotate \
${@bb.utils.contains('DISTRO_FEATURES', 'nfs', 'nfs-utils rpcbind', '', d)} \
"
|