diff options
author | Alexander Kanavin <alex.kanavin@gmail.com> | 2021-09-08 16:19:56 +0200 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2021-09-08 21:29:53 -0700 |
commit | 020b87add3368b259662c5994a5a9d7edaa58085 (patch) | |
tree | 1bb948f37f5d9b474b2cdf8f865560fa7e716343 /meta-oe/recipes-extended/socketcan | |
parent | 71ab0ca5d65ded4cd812cb99addb6a52f6d5b6b2 (diff) | |
download | meta-openembedded-020b87add3368b259662c5994a5a9d7edaa58085.tar.gz |
can-utils: rrecommend iproute2 to make it possible to configure can interfaces
This replicates the fix from canutils.bb, for the same issue. See the link
in the comment for details.
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-extended/socketcan')
-rw-r--r-- | meta-oe/recipes-extended/socketcan/can-utils_git.bb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/meta-oe/recipes-extended/socketcan/can-utils_git.bb b/meta-oe/recipes-extended/socketcan/can-utils_git.bb index 8d63a10e5..1a2d33090 100644 --- a/meta-oe/recipes-extended/socketcan/can-utils_git.bb +++ b/meta-oe/recipes-extended/socketcan/can-utils_git.bb | |||
@@ -45,3 +45,8 @@ ALTERNATIVE:${PN} = "candump cansend cansequence" | |||
45 | ALTERNATIVE_LINK_NAME[candump] = "${bindir}/candump" | 45 | ALTERNATIVE_LINK_NAME[candump] = "${bindir}/candump" |
46 | ALTERNATIVE_LINK_NAME[cansend] = "${bindir}/cansend" | 46 | ALTERNATIVE_LINK_NAME[cansend] = "${bindir}/cansend" |
47 | ALTERNATIVE_LINK_NAME[cansequence] = "${bindir}/cansequence" | 47 | ALTERNATIVE_LINK_NAME[cansequence] = "${bindir}/cansequence" |
48 | |||
49 | # busybox ip fails to configure can interfaces, so we need iproute2 to do so. | ||
50 | # See details in http://www.armadeus.com/wiki/index.php?title=CAN_bus_Linux_driver. | ||
51 | RRECOMMENDS:${PN} += "iproute2" | ||
52 | |||