blob: 80eac0f7481c328be413a20062d3d2376044aae0 (
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
|
#
# Copyright (C) 2010 Intel Corporation
#
DESCRIPTION = "Create Basic Image Tasks"
PR = "r3"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://${POKYBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58 \
file://${POKYBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
PACKAGES = "\
task-poky-basic \
task-poky-base-utils \
task-poky-base-utils-dbg \
task-poky-base-utils-dev \
task-poky-basic-libs \
task-poky-basic-libs-dbg \
task-poky-basic-libs-dev \
task-poky-basic-utils \
task-poky-basic-utils-dbg \
task-poky-basic-utils-dev \
task-poky-basic-extended \
task-poky-basic-extended-dbg \
task-poky-basic-extended-dev \
task-poky-dev-utils \
task-poky-dev-utils-dbg \
task-poky-dev-utils-dev \
task-poky-multiuser \
task-poky-multiuser-dbg \
task-poky-multiuser-dev \
task-poky-initscripts \
task-poky-initscripts-dbg \
task-poky-initscripts-dev \
task-poky-rpm \
task-poky-rpm-dbg \
task-poky-rpm-dev \
task-poky-sys-services \
task-poky-sys-services-dbg \
task-poky-sys-services-dev \
"
ALLOW_EMPTY = "1"
RDEPENDS_task-poky-basic = "\
task-poky-base-utils \
task-poky-basic-libs \
task-poky-basic-utils \
task-poky-basic-extended \
task-poky-dev-utils \
task-poky-multiuser \
task-poky-initscripts \
task-poky-rpm \
task-poky-sys-services \
"
RDEPENDS_task-poky-base-utils = "\
busybox \
"
RDEPENDS_task-poky-basic-libs = "\
glib-2.0 \
"
RDEPENDS_task-poky-basic-utils = "\
bash \
acl \
attr \
bc \
coreutils \
cpio \
e2fsprogs \
ed \
file \
findutils \
gawk \
gmp \
grep \
makedevs \
mc \
mktemp \
ncurses \
net-tools \
pax \
popt \
procps \
psmisc \
sed \
tar \
time \
udev \
util-linux \
zlib \
"
RDEPENDS_task-poky-basic-extended = "\
iproute2 \
iputils \
iptables \
module-init-tools \
openssl \
"
RDEPENDS_task-poky-dev-utils = "\
byacc \
diffutils \
m4 \
make \
patch \
"
RDEPENDS_task-poky-initscripts = "\
initscripts \
sysvinit \
ethtool \
mingetty \
sysklogd \
"
RDEPENDS_task-poky-multiuser = "\
cracklib \
gzip \
libuser \
libpam \
shadow \
sudo \
"
RDEPENDS_task-poky-rpm = "\
beecrypt \
rpm \
zypper \
"
RDEPENDS_task-poky-sys-services = "\
at \
bzip2 \
cronie \
dbus \
dbus-glib \
python-dbus \
elfutils \
gzip \
hal \
less \
libcap \
libevent \
lighttpd \
logrotate \
nfs-utils \
pciutils \
libpcre \
portmap \
rpcbind \
sysfsutils \
tcp-wrappers \
tzdata \
"
|