Skip to content

Commit ccc32d9

Browse files
authored
Merge pull request #8 from kay0u/master
Update driver version to 9.006.04
2 parents 32e1da1 + c55128e commit ccc32d9

12 files changed

Lines changed: 1079 additions & 639 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ sudo dpkg -i realtek-r8125-dkms*.deb
2525
> If multiple files selected by the wild card, you should type the specific version of the file.
2626
>
2727
> ```bash
28-
> sudo dpkg -i realtek-r8125-dkms_9.005.06-1.deb
28+
> sudo dpkg -i realtek-r8125-dkms_9.006.04-1.deb
2929
> ```
3030
3131
If dependency error occurs, try to fix that with `apt` command.

debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
realtek-r8125-dkms (9.006.04-1) stable; urgency=medium
2+
3+
* Update Realtek r8125 driver to 9.006.04
4+
5+
-- Deokgyu Yang <secugyu@gmail.com> Thu, 19 Aug 2021 21:23:11 +0900
6+
17
realtek-r8125-dkms (9.005.06-1) stable; urgency=medium
28

39
* Update Realtek r8125 driver to 9.005.06

debian/prerm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22

33
NAME=realtek-r8125
4-
VERSION=9.005.06
4+
VERSION=9.006.04
55

66
set -e
77

dkms-install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ fi
99

1010
DRV_DIR="$(pwd)"
1111
DRV_NAME=r8125
12-
DRV_VERSION=9.005.06
12+
DRV_VERSION=9.006.04
1313

1414
cp -r ${DRV_DIR} /usr/src/${DRV_NAME}-${DRV_VERSION}
1515

dkms-remove.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ fi
99

1010
DRV_DIR="$(pwd)"
1111
DRV_NAME=r8125
12-
DRV_VERSION=9.005.06
12+
DRV_VERSION=9.006.04
1313

1414
dkms remove ${DRV_NAME}/${DRV_VERSION} --all
1515
rm -rf /usr/src/${DRV_NAME}-${DRV_VERSION}

dkms.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
PACKAGE_NAME="realtek-r8125"
2-
PACKAGE_VERSION="9.005.06"
2+
PACKAGE_VERSION="9.006.04"
33
PROCS_NUM=`nproc`
44
[ $PROCS_NUM -gt 16 ] && PROCS_NUM=16
55
MAKE="'make' -j$PROCS_NUM KVER=${kernelver} BSRC=/lib/modules/${kernelver} all"

src/Makefile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@ ENABLE_PTP_MASTER_MODE = n
4747
ENABLE_RSS_SUPPORT = n
4848
ENABLE_LIB_SUPPORT = n
4949
ENABLE_USE_FIRMWARE_FILE = n
50+
DISABLE_PM_SUPPORT = n
51+
DISABLE_MULTI_MSIX_VECTOR = n
5052

5153
ifneq ($(KERNELRELEASE),)
5254
obj-m := r8125.o
@@ -111,6 +113,12 @@ ifneq ($(KERNELRELEASE),)
111113
r8125-objs += r8125_firmware.o
112114
EXTRA_CFLAGS += -DENABLE_USE_FIRMWARE_FILE
113115
endif
116+
ifeq ($(DISABLE_PM_SUPPORT), y)
117+
EXTRA_CFLAGS += -DDISABLE_PM_SUPPORT
118+
endif
119+
ifeq ($(DISABLE_MULTI_MSIX_VECTOR), y)
120+
EXTRA_CFLAGS += -DDISABLE_MULTI_MSIX_VECTOR
121+
endif
114122
else
115123
BASEDIR := /lib/modules/$(shell uname -r)
116124
KERNELDIR ?= $(BASEDIR)/build

0 commit comments

Comments
 (0)