mirror of
https://git.yoctoproject.org/poky
synced 2026-02-22 01:19:41 +01:00
lzip is pretty niche: people are typically either sticking with that they know (gzip, bzip) or using xz. Data point: only one recipe in oe-core is shipped as a .lz file. (From OE-Core rev: 80b0ac3bdbaee50d0023b7c869dd204485903dfe) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
58 lines
1.2 KiB
BlitzBasic
58 lines
1.2 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"
|
|
|
|
inherit packagegroup
|
|
|
|
VIRTUAL-RUNTIME_vim ?= "vim-tiny"
|
|
|
|
RDEPENDS_${PN} = "\
|
|
base-passwd \
|
|
bash \
|
|
bind-utils \
|
|
bzip2 \
|
|
coreutils \
|
|
cpio \
|
|
${@bb.utils.contains("DISTRO_FEATURES", "systemd", "", "debianutils-run-parts", d)} \
|
|
dhcp-client \
|
|
${@bb.utils.contains("DISTRO_FEATURES", "systemd", "", "dhcp-server", 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 \
|
|
"
|