mirror of
https://git.yoctoproject.org/poky
synced 2026-03-25 10:02:22 +01:00
Allow references to the old task packages to continue to work. This does not add RPROVIDES for everything, just those packages that are likely to have been referred to. (From OE-Core rev: b41c45972a6d359f034615471959c84aee2bc456) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
131 lines
2.2 KiB
BlitzBasic
131 lines
2.2 KiB
BlitzBasic
#
|
|
# Copyright (C) 2010 Intel Corporation
|
|
#
|
|
|
|
DESCRIPTION = "Create Basic Image Tasks"
|
|
PR = "r4"
|
|
LICENSE = "MIT"
|
|
|
|
inherit packagegroup
|
|
|
|
PACKAGES = "\
|
|
packagegroup-core-basic \
|
|
packagegroup-core-basic-libs \
|
|
packagegroup-core-basic-utils \
|
|
packagegroup-core-basic-extended \
|
|
packagegroup-core-dev-utils \
|
|
packagegroup-core-multiuser \
|
|
packagegroup-core-initscripts \
|
|
packagegroup-core-sys-services \
|
|
"
|
|
|
|
python __anonymous () {
|
|
# For backwards compatibility after rename
|
|
packages = d.getVar("PACKAGES", True).split()
|
|
for pkg in packages:
|
|
d.appendVar("RPROVIDES_%s" % pkg, pkg.replace("packagegroup-core", "task-core"))
|
|
}
|
|
|
|
|
|
RDEPENDS_packagegroup-core-basic = "\
|
|
packagegroup-core-basic-libs \
|
|
packagegroup-core-basic-utils \
|
|
packagegroup-core-basic-extended \
|
|
packagegroup-core-dev-utils \
|
|
packagegroup-core-multiuser \
|
|
packagegroup-core-initscripts \
|
|
packagegroup-core-sys-services \
|
|
"
|
|
|
|
RDEPENDS_packagegroup-core-basic-libs = "\
|
|
glib-2.0 \
|
|
"
|
|
|
|
RDEPENDS_packagegroup-core-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_packagegroup-core-basic-extended = "\
|
|
iproute2 \
|
|
iputils \
|
|
iptables \
|
|
module-init-tools \
|
|
openssl \
|
|
"
|
|
|
|
RDEPENDS_packagegroup-core-dev-utils = "\
|
|
byacc \
|
|
diffutils \
|
|
m4 \
|
|
make \
|
|
patch \
|
|
"
|
|
|
|
RDEPENDS_packagegroup-core-initscripts = "\
|
|
initscripts \
|
|
sysvinit \
|
|
ethtool \
|
|
mingetty \
|
|
sysklogd \
|
|
"
|
|
|
|
RDEPENDS_packagegroup-core-multiuser = "\
|
|
cracklib \
|
|
gzip \
|
|
libuser \
|
|
libpam \
|
|
shadow \
|
|
sudo \
|
|
"
|
|
|
|
RDEPENDS_packagegroup-core-sys-services = "\
|
|
at \
|
|
bzip2 \
|
|
cronie \
|
|
dbus \
|
|
dbus-glib \
|
|
python-dbus \
|
|
elfutils \
|
|
gzip \
|
|
less \
|
|
libcap \
|
|
libevent \
|
|
lighttpd \
|
|
logrotate \
|
|
nfs-utils \
|
|
pciutils \
|
|
libpcre \
|
|
rpcbind \
|
|
sysfsutils \
|
|
tcp-wrappers \
|
|
tzdata \
|
|
"
|
|
|