diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2019-11-26 16:20:02 +0100 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2019-11-28 16:11:48 +0100 |
commit | 93136874c13133724a216457af55739b84c0ef1a (patch) | |
tree | e77611aabddeb0e03f7ec53dd123b8297fd8d6c6 /docs/4-Installation-ISOTP.md | |
parent | 9dfd3fc22749012d8e06008299202359cecfd6e4 (diff) |
Remove file socketcan-j1939 that was not removed before
Bug-AGL : SPEC-2780
Bug-AGL: SPEC-2976
Change-Id: I4ddf9389faffebe0334b0004b69bb7336277c29d
Signed-off-by: Arthur Guyader <arthur.guyader@iot.bzh>
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'docs/4-Installation-ISOTP.md')
-rw-r--r-- | docs/4-Installation-ISOTP.md | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/docs/4-Installation-ISOTP.md b/docs/4-Installation-ISOTP.md new file mode 100644 index 00000000..c8fc31f6 --- /dev/null +++ b/docs/4-Installation-ISOTP.md @@ -0,0 +1,50 @@ +# Installation isotp for AGL + +## Compilation and installation of module kernel isotp + +##### Clone repository Linux Kernel Module for ISO 15765-2:2016 CAN transport protocol + +```bash +git clone https://github.com/hartkopp/can-isotp.git +``` + +##### Move into the new repository + +```bash +cd can-isotp +``` + +##### Install packages to build + +```bash +sudo apt-get install build-essential linux-headers-$(uname -r) +``` + +##### Compile + +```bash +make +``` + +##### Install + +```bash +sudo make modules_install +``` + +##### Load module + + +```bash +modprobe can +modprobe vcan +sudo insmod ./net/can/can-isotp.ko +``` + + +## Include headers files + + +```bash +sudo cp include/uapi/linux/can/isotp.h /usr/include/linux/can/ +```
\ No newline at end of file |