-
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: pci_channel_io_perm_failure info to the log.
- Loading branch information
1 parent
ddc9494
commit e490696
Showing
3 changed files
with
13 additions
and
11 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,2 +1,2 @@ | ||
# UDEV rule giving access to MRF device | ||
KERNEL=="uio*", ATTR{name}=="mrf-pci", GROUP="@@MRF_GROUP@@", MODE="0660", RUN+="/bin/chmod g+rw %S%p/resource0 && /bin/echo UDEV rule giving access to MRF device %S%p" | ||
KERNEL=="uio*", ATTR{name}=="mrf-pci", GROUP="@@MRF_GROUP@@", MODE="0660", RUN+="/bin/chmod g+rw %S%p/resource0 && /bin/logger UDEV rule giving access to MRF device %S%p" |
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 |
---|---|---|
|
@@ -61,16 +61,17 @@ modprobe %{kmod_name} | |
%preun | ||
modprobe -r %{kmod_name} | ||
dkms remove --all -m %{kmod_name} -v %{version} --rpm_safe_upgrade --all ||: | ||
groupdel @@MRF_GROUP@@ 2>&1 || : | ||
%udev_rules_update | ||
groupdel @@MRF_GROUP@@ 2>&1 || : | ||
|
||
%postun | ||
rmdir /usr/src/%{kmod_name}-%{version} | ||
|
||
%changelog | ||
|
||
* Wed Jan 24 2024 Jerzy Jamroz <[email protected]> - 3-1 | ||
- Build adjustments. | ||
- Build adjustments exposing the control variables. | ||
- Pkg name changed to mrfioc2-dkms. | ||
- Correction of the driver version handling. | ||
- Group rw access for the pci resource0. | ||
- AER handling functions. | ||
|
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