Skip to content

Commit f187008

Browse files
SebastianSchildtnayakned
authored andcommitted
A kernel module wrapper fro ACF-CAN
This is a Linux kernel driver that provides a virtual CAN interface for sending IEEE-1722 ACF-CAN frames directly. Signed-off-by: Sebastian Schildt <[email protected]>
1 parent a15b4a8 commit f187008

28 files changed

+1311
-19
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
/CPackSourceConfig.cmake
1616
/install_manifest.txt
1717
/_CPack_Packages
18-
18+
*.o
19+
*.o.cmd
1920
*~
2021
.vscode
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
# kernel excludes
2+
# Normal rules
3+
#
4+
.*
5+
*.o
6+
*.o.*
7+
*.a
8+
*.s
9+
*.ko
10+
*.so
11+
*.so.dbg
12+
*.mod.c
13+
*.mod
14+
*.i
15+
*.lst
16+
*.symtypes
17+
*.order
18+
modules.builtin
19+
*.elf
20+
*.bin
21+
*.gz
22+
*.bz2
23+
*.lzma
24+
*.xz
25+
*.lzo
26+
*.patch
27+
*.gcno
28+
29+
#
30+
# Top-level generic files
31+
#
32+
/tags
33+
/TAGS
34+
/linux
35+
/vmlinux
36+
/vmlinuz
37+
/System.map
38+
/Module.markers
39+
/Module.symvers
40+
41+
#
42+
# git files that we don't want to ignore even it they are dot-files
43+
#
44+
!.gitignore
45+
!.mailmap
46+
47+
#
48+
# Generated include files
49+
#
50+
include/config
51+
include/linux/version.h
52+
include/generated
53+
arch/*/include/generated
54+
55+
# stgit generated dirs
56+
patches-*
57+
58+
# quilt's files
59+
patches
60+
series
61+
62+
# cscope files
63+
cscope.*
64+
ncscope.*
65+
66+
# gnu global files
67+
GPATH
68+
GRTAGS
69+
GSYMS
70+
GTAGS
71+
72+
*.orig
73+
*~

0 commit comments

Comments
 (0)