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 \
|
|
"
|