-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: Package DRV_NAME changed to KMOD_NAME to avoid confusions.
- Loading branch information
1 parent
0255016
commit 12c8fc0
Showing
4 changed files
with
10 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,10 @@ | ||
# Version definition for driver | ||
# 20240124 Release | ||
DRV_VERSION := 3 | ||
DRV_GROUP := mrf | ||
|
||
# Package control vars | ||
PKG_NAME := mrf-dkms #PKG_NAME follows the drv name | ||
DRV_NAME := mrf # DRV_NAME has to be set as mrf due to hardcoded dependencies | ||
DRV_GROUP := mrf | ||
## PKG_NAME follows the kmod name | ||
PKG_NAME := mrf-dkms | ||
## KMOD_NAME has to be set as mrf due to hardcoded dependencies | ||
KMOD_NAME := mrf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
%define kmod_name @@DRV_NAME@@ | ||
%define kmod_name @@KMOD_NAME@@ | ||
%define udev_rules_update \ | ||
/sbin/udevadm control --reload-rules && \ | ||
/sbin/udevadm trigger | ||
|
@@ -71,6 +71,7 @@ rmdir /usr/src/%{kmod_name}-%{version} | |
|
||
* Wed Jan 24 2024 Jerzy Jamroz <[email protected]> - 3-1 | ||
- Build adjustments exposing the control variables. | ||
- Pkg name changed from mrf to mrf-dkms. | ||
- Correction of the driver version handling. | ||
- Group rw access for the pci resource0. | ||
- AER handling functions. | ||
|