Files
openwrt_yocto/poky/meta/recipes-extended/packagegroups/packagegroup-core-base-utils.bb
T
francis.wang 4c86c082a2 Initial commit: OpenWrt-Yocto monorepo
Combine poky (Yocto scarthgap), meta-openembedded (scarthgap), and
meta-openwrt into a single repository.

Components:
- poky/             Yocto core framework (BitBake + OE-Core)
- meta-openembedded/ Community layers (meta-oe, meta-python, meta-networking)
- meta-openwrt/     OpenWrt customization layer
- setup-env.sh      One-click build environment setup
- README.md         Project documentation
2026-07-11 13:28:01 +08:00

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