mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-13 13:41:05 +00:00
This commit adds more USE flags, reflecting similar changes for r8168 driver. Signed-off-by: Evgeny Grin (Karlson2k) <k2k@drgrin.dev> Part-of: https://github.com/gentoo/gentoo/pull/41575 Closes: https://github.com/gentoo/gentoo/pull/41575 Signed-off-by: Sam James <sam@gentoo.org>
60 lines
1.7 KiB
Bash
60 lines
1.7 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit linux-mod-r1
|
|
|
|
DESCRIPTION="r8125 vendor driver for Realtek RTL8125 PCI-E NICs"
|
|
HOMEPAGE="https://www.realtek.com/Download/List?cate_id=584"
|
|
# Mirrored to avoid captcha
|
|
SRC_URI="https://github.com/Karlson2k/r8125/releases/download/${PV}/${P}.tar.bz2"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
IUSE="down-speed-100 hw-acceleration hw-optim-tx +eee +multi-tx-q ptp +rss s5-keep-mac use-firmware +wol-s5 +wol"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}/${P}-ptp-linux-6.11.patch"
|
|
)
|
|
|
|
CONFIG_CHECK="~!R8169"
|
|
WARNING_R8169="CONFIG_R8169 is enabled. ${PN} will not be loaded unless kernel driver Realtek 8169 PCI Gigabit Ethernet (CONFIG_R8169) is DISABLED."
|
|
|
|
src_prepare() {
|
|
default
|
|
|
|
# Replace wrong EXTRA_CFLAGS (stopped working with kernels >= 6.15)
|
|
# with proper CFLAGS_MODULE (available since 2.6.36).
|
|
# Bug 957883
|
|
sed -E -i'' \
|
|
-e 's/(^|[^A-Za-z0-9_])EXTRA_CFLAGS([^A-Za-z0-9_]|$)/\1CFLAGS_MODULE\2/g' \
|
|
src/Makefile || die
|
|
}
|
|
|
|
src_compile() {
|
|
local modlist=( ${PN}=kernel/drivers/net/ethernet/realtek:src )
|
|
local modargs=(
|
|
# Build parameters
|
|
KERNELDIR="${KV_OUT_DIR}"
|
|
# Code build options
|
|
ENABLE_RSS_SUPPORT=$(usex rss y n)
|
|
ENABLE_MULTIPLE_TX_QUEUE=$(usex multi-tx-q y n)
|
|
ENABLE_USE_FIRMWARE_FILE=$(usex use-firmware y n)
|
|
CONFIG_DOWN_SPEED_100=$(usex down-speed-100 y n)
|
|
ENABLE_PTP_SUPPORT=$(usex ptp y n)
|
|
ENABLE_PAGE_REUSE=y
|
|
ENABLE_RX_PACKET_FRAGMENT=y
|
|
# Driver defaults
|
|
CONFIG_SOC_LAN=$(usex hw-acceleration y n)
|
|
ENABLE_TX_NO_CLOSE=$(usex hw-optim-tx y n)
|
|
ENABLE_EEE=$(usex eee y n)
|
|
DISABLE_WOL_SUPPORT=$(usex wol n y)
|
|
ENABLE_S5WOL=$(usex wol-s5 y n)
|
|
ENABLE_S5_KEEP_CURR_MAC=$(usex s5-keep-mac y n)
|
|
)
|
|
|
|
linux-mod-r1_src_compile
|
|
}
|