Compare commits
3 Commits
9caa973a5a
...
4841b2863c
| Author | SHA1 | Date |
|---|---|---|
|
|
4841b2863c | |
|
|
8f5889e129 | |
|
|
f92a946a08 |
|
|
@ -1,3 +1,8 @@
|
|||
v3.0.4
|
||||
Update copyright
|
||||
Add Fedora package requirements to README
|
||||
Fix for newer 6.4.x Kernel, class_create() sig changed (Doug Potts <dpotts@genrad.com>)
|
||||
|
||||
v3.0.3
|
||||
Update daemon version requirement to 3.1.*
|
||||
|
||||
|
|
|
|||
|
|
@ -1,10 +1,10 @@
|
|||
Version 3.0.3
|
||||
Version 3.0.4
|
||||
|
||||
This is the kernel object portion of the Intrepid Control Systems SocketCAN support. For SocketCAN to work with Intrepid devices you will need to have this kernel object loaded on your system. Once the module is built and loaded run [icsscand](https://github.com/intrepidcs/icsscand) to turn on SocketCAN support.
|
||||
|
||||
First, install the necessary dependencies for building kernel modules.
|
||||
|
||||
On Ubuntu, this is accomplished by running `sudo apt install linux-headers-generic build-essential gcc git`
|
||||
First, install the necessary dependencies for building kernel modules:
|
||||
- Ubuntu: `sudo apt install linux-headers-generic build-essential gcc git`
|
||||
- Fedora: `sudo dnf install git kernel-devel-matched`
|
||||
|
||||
Clone this repository by running `git clone https://github.com/intrepidcs/intrepid-socketcan-kernel-module.git`
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
* intrepid.c - Netdevice driver for Intrepid CAN/Ethernet devices
|
||||
*
|
||||
* Copyright (c) 2016-2023 Intrepid Control Systems, Inc.
|
||||
* Copyright (c) 2016-2024 Intrepid Control Systems, Inc.
|
||||
* All rights reserved.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify it
|
||||
|
|
@ -58,7 +58,7 @@
|
|||
#define KO_DESC "Netdevice driver for Intrepid CAN/Ethernet devices"
|
||||
#define KO_MAJOR 3
|
||||
#define KO_MINOR 0
|
||||
#define KO_PATCH 3
|
||||
#define KO_PATCH 4
|
||||
#define KO_VERSION str(KO_MAJOR) "." str(KO_MINOR) "." str(KO_PATCH)
|
||||
#define KO_VERSION_INT (KO_MAJOR << 16) | (KO_MINOR << 8) | KO_PATCH
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue