mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-09-25 12:00:22 +00:00
Adds Gen6 support across the CLI and library (new OSA sub-commands,
status query and capture-control variants) and reworks
switchtec_osa_capture_data() to fill in a caller supplied
switchtec_osa_capture_data structure rather than printing directly.
That rework replaced the run-time sized reply buffer, which 4.3 built
from a flexible array member plus alloca(), with a variable length array
declared as a struct member. That is a GCC-only extension which clang
rejects outright ('variable length array in structure' extension will
never be supported), so add a patch restoring the portable flexible
array member form and passing the computed reply size to switchtec_cmd().
AI-Generated: Uses Claude Code
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
22 lines
732 B
BlitzBasic
22 lines
732 B
BlitzBasic
SUMMARY = "Easy to use CLI and C library for communicating with Microsemi's Switchtec management interface"
|
|
HOMEPAGE = "https://github.com/Microsemi/switchtec-user"
|
|
SECTION = "console/utils"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=3d6b07c89629cff2990d2e8e1f4c2382"
|
|
|
|
DEPENDS = "ncurses openssl"
|
|
|
|
SRC_URI = "git://github.com/Microsemi/switchtec-user.git;protocol=https;branch=master;tag=v${PV} \
|
|
file://0001-lib-diag-do-not-use-a-variable-length-array-in-a-str.patch \
|
|
"
|
|
SRCREV = "d995512f3bf1ceb98eefada813642d5ba5d62cd1"
|
|
|
|
|
|
inherit autotools-brokensep pkgconfig
|
|
|
|
EXTRA_OEMAKE = "DESTDIR='${D}' PREFIX='${prefix}' LDCONFIG='true' LIBDIR='${D}${libdir}'"
|
|
|
|
do_install () {
|
|
oe_runmake install
|
|
}
|