diff options
| author | Andy Chiang | 2025-09-09 18:23:47 +0000 |
|---|---|---|
| committer | Álvaro Fernández Rojas | 2025-09-11 10:47:02 +0000 |
| commit | c60b94a1954eb4a190f02cf29b654f58a560c495 (patch) | |
| tree | 8b58a09e12bb332767c49a0ad01155ff44f2a69c | |
| parent | 26444454698328e9bf249187e9a9bf03690a9e39 (diff) | |
| download | openwrt-c60b94a1954eb4a190f02cf29b654f58a560c495.tar.gz | |
kernel: r8168: add missing flags
PKG_MAKE_FLAGS is required when compiling r8168-rss
Signed-off-by: Andy Chiang <AndyChiang_git@outlook.com>
Link: https://github.com/openwrt/openwrt/pull/20001
Signed-off-by: Robert Marko <robimarko@gmail.com>
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
(cherry picked from commit 5719d6506467285db424814433e7b6d8779ee9d2)
| -rw-r--r-- | package/kernel/r8168/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/package/kernel/r8168/Makefile b/package/kernel/r8168/Makefile index 98cf5ea35a..182950a624 100644 --- a/package/kernel/r8168/Makefile +++ b/package/kernel/r8168/Makefile @@ -2,7 +2,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=r8168 PKG_VERSION:=8.055.00 -PKG_RELEASE:=3 +PKG_RELEASE:=4 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 PKG_SOURCE_URL:=https://github.com/openwrt/rtl8168/releases/download/$(PKG_VERSION) @@ -40,6 +40,7 @@ endif define Build/Compile +$(KERNEL_MAKE) $(PKG_JOBS) \ + $(PKG_MAKE_FLAGS) \ M="$(PKG_BUILD_DIR)/src" \ modules endef |