mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-16 04:17:25 +00:00
99500b3813
Support of new kernel features: ----------------------------------- j1939: make use of new RX UAPI isotp: rework FRAME_TXTIME handling and buffer size (Linux v5.18+) isotp: add support for transmission without flow control (Linux v5.19+) mcp251xfd-dump: add support for dumps created with Linux kernel >= v5.18 can-calc-bit-timing: import bit timing calculation algorithm from v5.19 cangen: add support for SO_TXTIME includes: update to Linux 6.2 upstream (with CAN XL data structures) Improvements and features: -------------------------------- canfdtest: Add extended frame format / message length / FD / BRS support can-calc-bit-timing: add support for calculation of CAN-FD bit timings cangen: add option for absolute timeouts cangen: new generation mode - partially randomized payload (-D) slcan: increase BTR char limit to 8 for 32bit BTR log asc converter: support len8_dlc for Classical CAN frames candump: handle individual logfile name for stdout cansniffer: add CAN FD support cansniffer: make ASCII output switchable in CAN FD mode canplayer: introduce option to limit the number of processed frames Fixes: ----------------------- candump: print number of dropped frames as unsigned values candump: reserve enough space for ctrlmsg candump: fix accidentally disabled traffic timeout feature lib: fix seperator in snprintf_error_data Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
51 lines
1.4 KiB
BlitzBasic
51 lines
1.4 KiB
BlitzBasic
SUMMARY = "Linux CAN network development utilities"
|
|
LICENSE = "GPL-2.0-only & BSD-3-Clause"
|
|
LIC_FILES_CHKSUM = "file://include/linux/can.h;endline=44;md5=a9e1169c6c9a114a61329e99f86fdd31"
|
|
|
|
DEPENDS = "libsocketcan"
|
|
|
|
SRC_URI = "git://github.com/linux-can/${BPN}.git;protocol=https;branch=master"
|
|
|
|
SRCREV = "cfe41963f3425e9adb01a70cfaddedf5e5982720"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
inherit autotools pkgconfig update-alternatives
|
|
|
|
PACKAGES =+ "${PN}-access ${PN}-isotp ${PN}-j1939 ${PN}-cantest ${PN}-slcan ${PN}-log"
|
|
|
|
FILES:${PN}-access = " \
|
|
${bindir}/cangw \
|
|
${bindir}/canlogserver \
|
|
${bindir}/bcmserver \
|
|
${bindir}/socketcand \
|
|
${bindir}/cannelloni \
|
|
"
|
|
|
|
FILES:${PN}-isotp = "${bindir}/isotp*"
|
|
|
|
FILES:${PN}-j1939 = " \
|
|
${bindir}/j* \
|
|
${bindir}/testj1939 \
|
|
"
|
|
|
|
FILES:${PN}-cantest = " \
|
|
${bindir}/canbusload \
|
|
${bindir}/can-calc-bit-timing \
|
|
${bindir}/canfdtest \
|
|
"
|
|
|
|
FILES:${PN}-slcan = "${bindir}/slcan*"
|
|
|
|
FILES:${PN}-log = "${bindir}/*log*"
|
|
|
|
ALTERNATIVE:${PN} = "candump cansend cansequence"
|
|
ALTERNATIVE_LINK_NAME[candump] = "${bindir}/candump"
|
|
ALTERNATIVE_LINK_NAME[cansend] = "${bindir}/cansend"
|
|
ALTERNATIVE_LINK_NAME[cansequence] = "${bindir}/cansequence"
|
|
|
|
# busybox ip fails to configure can interfaces, so we need iproute2 to do so.
|
|
# See details in http://www.armadeus.com/wiki/index.php?title=CAN_bus_Linux_driver.
|
|
RRECOMMENDS:${PN} += "iproute2"
|
|
|