blob: 034a5ca4c4c076ea17312bd98c358c86ba64be3c (
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
|
#
# Copyright (C) 2010 Intel Corporation
#
DESCRIPTION = "Create Small Image Tasks"
PR = "r0"
PACKAGES = "\
task-poky-small \
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-extended-libs \
task-poky-extended-libs-dbg \
task-poky-extended-libs-dev \
task-poky-extended-utils \
task-poky-extended-utils-dbg \
task-poky-extended-utils-dev \
task-poky-network-services \
task-poky-network-services-dbg \
task-poky-network-services-dev \
"
ALLOW_EMPTY = "1"
RDEPENDS_task-poky-network-services = "\
# iproute \
# iputils \
# iptables \
nfs-utils \
"
RDEPENDS_task-poky-shells = "\
bash \
mktemp \
RDEPENDS_task-poky-misc = "\
strace \
lsof \
elfutils \
usbutils \
zlib \
libusb \
libstdcxx \
bluez4 \
"
RDEPENDS_task-poky-basic-libs = "\
# libssh2 \
dbus-glib \
# nfs-utils-lib \
"
RDEPENDS_task-poky-basic-utils = "\
# openssh \
openssl \
pam \
sudo \
beecrypt \
curl \
elfutils \
neon \
# mktemp \
rpm \
bzip2 \
# crontabs \
dbus \
python-dbus \
e2fsprogs \
gdbm \
hal \
less \
popt \
portmap \
readline \
# cron \
# yaffs2 \
"
RDEPENDS_task-poky-extended-libs = "\
# cracklib \
glib-2.0 \
libcap \
libevent \
"
RDEPENDS_task-poky-extended-utils = "\
# acl \
# at \
attr \
# bc \
binutils \
# cpio \
# cracklib \
# logrotate \
# pax \
# shadow \
sqlite3 \
# syslog \
# ed \
# lsb \
# mailx \
# man \
# sendmail \
tcl \
"
RDEPENDS_task-poky-python = "\
gdbm \
perl \
zlib \
"
RDEPENDS_task-poky-python = "\
expat \
gdbm \
gmp \
ncurses \
openssl \
python \
readline \
zlib \
"
|