Skip to content

Commit

Permalink
A kernel module wrapper fro ACF-CAN
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
SebastianSchildt committed Jan 26, 2025
1 parent a15b4a8 commit 202f742
Show file tree
Hide file tree
Showing 28 changed files with 1,311 additions and 19 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
/CPackSourceConfig.cmake
/install_manifest.txt
/_CPack_Packages

*.o
*.o.cmd
*~
.vscode
73 changes: 73 additions & 0 deletions examples/acf-can/linux-kernel-mod/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
# kernel excludes
# Normal rules
#
.*
*.o
*.o.*
*.a
*.s
*.ko
*.so
*.so.dbg
*.mod.c
*.mod
*.i
*.lst
*.symtypes
*.order
modules.builtin
*.elf
*.bin
*.gz
*.bz2
*.lzma
*.xz
*.lzo
*.patch
*.gcno

#
# Top-level generic files
#
/tags
/TAGS
/linux
/vmlinux
/vmlinuz
/System.map
/Module.markers
/Module.symvers

#
# git files that we don't want to ignore even it they are dot-files
#
!.gitignore
!.mailmap

#
# Generated include files
#
include/config
include/linux/version.h
include/generated
arch/*/include/generated

# stgit generated dirs
patches-*

# quilt's files
patches
series

# cscope files
cscope.*
ncscope.*

# gnu global files
GPATH
GRTAGS
GSYMS
GTAGS

*.orig
*~
Loading

0 comments on commit 202f742

Please sign in to comment.