mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-05-22 00:43:08 +00:00
53 lines
893 B
BlitzBasic
53 lines
893 B
BlitzBasic
DESCRIPTION = "A set of useful command line tools"
|
|
DESCRIPTION_${PN}-debug = "A set of command line tools useful for debugging"
|
|
SECTION = "console"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
|
|
PV = "1.0"
|
|
PR = "r18"
|
|
|
|
inherit task
|
|
|
|
PACKAGES += "${PN}-debug"
|
|
|
|
def get_ltrace(bb, d):
|
|
if bb.data.getVar('TARGET_ARCH', d, 1) in [ 'sh4', 'sh3' ] :
|
|
return ""
|
|
return "ltrace"
|
|
|
|
RDEPENDS_${PN} = "\
|
|
dbus-daemon-proxy \
|
|
dosfstools \
|
|
htop \
|
|
iptables \
|
|
lsof \
|
|
mbuffer \
|
|
mdbus2 \
|
|
mtd-utils \
|
|
mterm2 \
|
|
nano \
|
|
nfs-utils-client \
|
|
nmon \
|
|
powertop \
|
|
screen \
|
|
socat \
|
|
sysstat \
|
|
"
|
|
|
|
RDEPENDS_${PN}-debug = "\
|
|
evtest \
|
|
devmem2 \
|
|
i2c-tools \
|
|
gdb \
|
|
${@get_ltrace(bb, d)} \
|
|
mkdump \
|
|
mioctl \
|
|
procps \
|
|
pxaregs \
|
|
s3c24xx-gpio \
|
|
s3c64xx-gpio \
|
|
serial-forward \
|
|
strace \
|
|
tcpdump \
|
|
"
|