mirror of
https://git.yoctoproject.org/poky
synced 2026-02-07 01:06:37 +01:00
This is the result of automated script conversion: scripts/contrib/convert-overrides.py <oe-core directory> converting the metadata to use ":" as the override character instead of "_". (From OE-Core rev: 42344347be29f0997cc2f7636d9603b1fe1875ae) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
62 lines
1.3 KiB
BlitzBasic
62 lines
1.3 KiB
BlitzBasic
#
|
|
# Copyright (C) 2019 Konsulko Group
|
|
#
|
|
|
|
SUMMARY = "Full-featured set of base utils"
|
|
DESCRIPTION = "Package group bringing in packages needed to provide much of the base utils type functionality found in busybox"
|
|
|
|
PACKAGE_ARCH = "${MACHINE_ARCH}"
|
|
|
|
inherit packagegroup
|
|
|
|
VIRTUAL-RUNTIME_vim ?= "vim-tiny"
|
|
|
|
PACKAGE_ARCH = "${MACHINE_ARCH}"
|
|
|
|
RDEPENDS:${PN} = "\
|
|
base-passwd \
|
|
bash \
|
|
bind-utils \
|
|
bzip2 \
|
|
coreutils \
|
|
cpio \
|
|
${@bb.utils.contains("DISTRO_FEATURES", "systemd", "", "debianutils-run-parts", d)} \
|
|
dhcpcd \
|
|
${@bb.utils.contains("DISTRO_FEATURES", "systemd", "", "kea", d)} \
|
|
diffutils \
|
|
${@bb.utils.contains("DISTRO_FEATURES", "systemd", "", "dpkg-start-stop", d)} \
|
|
e2fsprogs \
|
|
ed \
|
|
file \
|
|
findutils \
|
|
gawk \
|
|
grep \
|
|
gzip \
|
|
${@bb.utils.contains("DISTRO_FEATURES", "systemd", "", "ifupdown", d)} \
|
|
inetutils \
|
|
inetutils-ping \
|
|
inetutils-telnet \
|
|
inetutils-tftp \
|
|
inetutils-traceroute \
|
|
iproute2 \
|
|
${@bb.utils.contains("MACHINE_FEATURES", "keyboard", "kbd", "", d)} \
|
|
kmod \
|
|
less \
|
|
ncurses-tools \
|
|
net-tools \
|
|
parted \
|
|
patch \
|
|
procps \
|
|
psmisc \
|
|
sed \
|
|
shadow-base \
|
|
tar \
|
|
time \
|
|
unzip \
|
|
util-linux \
|
|
${VIRTUAL-RUNTIME_vim} \
|
|
wget \
|
|
which \
|
|
xz \
|
|
"
|