<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in Kconfig</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>135c3c86 - r8169: make Kconfig option for LED support user-visible</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/ethernet/realtek/Kconfig#135c3c86</link>
        <description>r8169: make Kconfig option for LED support user-visibleMake config option R8169_LEDS user-visible, so that users can removesupport if not needed.Signed-off-by: Heiner Kallweit &lt;hkallweit1@gmail.com&gt;Reviewed-by: Simon Horman &lt;horms@kernel.org&gt;Link: https://patch.msgid.link/d29f0cdb-32bf-435f-b59d-dc96bca1e3ab@gmail.comSigned-off-by: Jakub Kicinski &lt;kuba@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/net/ethernet/realtek/Kconfig</description>
        <pubDate>Mon, 03 Feb 2025 20:35:24 +0000</pubDate>
        <dc:creator>Heiner Kallweit &lt;hkallweit1@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>ad61903a - realtek: Update the Makefile and Kconfig in the realtek folder</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/ethernet/realtek/Kconfig#ad61903a</link>
        <description>realtek: Update the Makefile and Kconfig in the realtek folder1. Add the RTASE entry in the Kconfig.2. Add the CONFIG_RTASE entry in the Makefile.Signed-off-by: Justin Lai &lt;justinlai0215@realtek.com&gt;Link: https://patch.msgid.link/20240904032114.247117-13-justinlai0215@realtek.comSigned-off-by: Jakub Kicinski &lt;kuba@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/net/ethernet/realtek/Kconfig</description>
        <pubDate>Wed, 04 Sep 2024 03:21:13 +0000</pubDate>
        <dc:creator>Justin Lai &lt;justinlai0215@realtek.com&gt;</dc:creator>
    </item>
<item>
        <title>a2634a5f - r8169: fix building with CONFIG_LEDS_CLASS=m</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/ethernet/realtek/Kconfig#a2634a5f</link>
        <description>r8169: fix building with CONFIG_LEDS_CLASS=mWhen r8169 is built-in but LED support is a loadable module, the newcode to drive the LED causes a link failure:ld: drivers/net/ethernet/realtek/r8169_leds.o: in function `rtl8168_init_leds&apos;:r8169_leds.c:(.text+0x36c): undefined reference to `devm_led_classdev_register_ext&apos;LED support is an optional feature, so fix this issue by adding a Kconfigsymbol R8169_LEDS that is guaranteed to be false if r8169 is built-inand LED core support is a module. As a positive side effect of this changer8169_leds.o no longer is built under this configuration.Fixes: 18764b883e15 (&quot;r8169: add support for LED&apos;s on RTL8168/RTL8101&quot;)Reported-by: kernel test robot &lt;lkp@intel.com&gt;Closes: https://lore.kernel.org/oe-kbuild-all/202312281159.9TPeXbNd-lkp@intel.com/Suggested-by: Arnd Bergmann &lt;arnd@arndb.de&gt;Signed-off-by: Heiner Kallweit &lt;hkallweit1@gmail.com&gt;Reviewed-by: Simon Horman &lt;horms@kernel.org&gt;Tested-by: Simon Horman &lt;horms@kernel.org&gt; # build-testedTested-by: Arnd Bergmann &lt;arnd@arndb.de&gt;Link: https://lore.kernel.org/r/d055aeb5-fe5c-4ccf-987f-5af93a17537b@gmail.comSigned-off-by: Jakub Kicinski &lt;kuba@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/net/ethernet/realtek/Kconfig</description>
        <pubDate>Wed, 03 Jan 2024 15:52:04 +0000</pubDate>
        <dc:creator>Heiner Kallweit &lt;hkallweit1@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>a7f7f624 - treewide: replace &apos;---help---&apos; in Kconfig files with &apos;help&apos;</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/ethernet/realtek/Kconfig#a7f7f624</link>
        <description>treewide: replace &apos;---help---&apos; in Kconfig files with &apos;help&apos;Since commit 84af7a6194e4 (&quot;checkpatch: kconfig: prefer &apos;help&apos; over&apos;---help---&apos;&quot;), the number of &apos;---help---&apos; has been graduallydecreasing, but there are still more than 2400 instances.This commit finishes the conversion. While I touched the lines,I also fixed the indentation.There are a variety of indentation styles found.  a) 4 spaces + &apos;---help---&apos;  b) 7 spaces + &apos;---help---&apos;  c) 8 spaces + &apos;---help---&apos;  d) 1 space + 1 tab + &apos;---help---&apos;  e) 1 tab + &apos;---help---&apos;    (correct indentation)  f) 1 tab + 1 space + &apos;---help---&apos;  g) 1 tab + 2 spaces + &apos;---help---&apos;In order to convert all of them to 1 tab + &apos;help&apos;, I ran thefollowing commend:  $ find . -name &apos;Kconfig*&apos; | xargs sed -i &apos;s/^[[:space:]]*---help---/\thelp/&apos;Signed-off-by: Masahiro Yamada &lt;masahiroy@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/net/ethernet/realtek/Kconfig</description>
        <pubDate>Sat, 13 Jun 2020 16:50:22 +0000</pubDate>
        <dc:creator>Masahiro Yamada &lt;masahiroy@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>f1bce4ad - r8169: add support for RTL8125</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/ethernet/realtek/Kconfig#f1bce4ad</link>
        <description>r8169: add support for RTL8125This adds support for 2.5Gbps chip RTL8125, it&apos;s partially based on ther8125 vendor driver. Tested with a Delock 89531 PCIe card against aNetgear GS110MX Multi-Gig switch. Firmware isn&apos;t strictly needed,but on some systems there may be compatibility issues w/o firmware.Firmware has been submitted to linux-firmware.Signed-off-by: Heiner Kallweit &lt;hkallweit1@gmail.com&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/drivers/net/ethernet/realtek/Kconfig</description>
        <pubDate>Wed, 28 Aug 2019 20:28:03 +0000</pubDate>
        <dc:creator>Heiner Kallweit &lt;hkallweit1@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>ec8f24b7 - treewide: Add SPDX license identifier - Makefile/Kconfig</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/ethernet/realtek/Kconfig#ec8f24b7</link>
        <description>treewide: Add SPDX license identifier - Makefile/KconfigAdd SPDX license identifiers to all Make/Kconfig files which: - Have no license information of any formThese files fall under the project license, GPL v2 only. The resulting SPDXlicense identifier is:  GPL-2.0-onlySigned-off-by: Thomas Gleixner &lt;tglx@linutronix.de&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/net/ethernet/realtek/Kconfig</description>
        <pubDate>Sun, 19 May 2019 12:07:45 +0000</pubDate>
        <dc:creator>Thomas Gleixner &lt;tglx@linutronix.de&gt;</dc:creator>
    </item>
<item>
        <title>bfdd19ad - r8169: add missing Kconfig dependency</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/ethernet/realtek/Kconfig#bfdd19ad</link>
        <description>r8169: add missing Kconfig dependencyNow that we switched the r8169 driver to use phylib, there&apos;s adependency on the Realtek PHY drivers. This dependency was missingin Kconfig.Reported-by: Jouni Mett&#228;l&#228; &lt;jtmettala@gmail.com&gt;Fixes: f1e911d5d0df (&quot;r8169: add basic phylib support&quot;)Signed-off-by: Heiner Kallweit &lt;hkallweit1@gmail.com&gt;Acked-by: Florian Fainelli &lt;f.fainelli@gmail.com&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/drivers/net/ethernet/realtek/Kconfig</description>
        <pubDate>Fri, 17 Aug 2018 18:42:16 +0000</pubDate>
        <dc:creator>Heiner Kallweit &lt;hkallweit1@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>dd84957e - r8169: use phy_ethtool_nway_reset</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/ethernet/realtek/Kconfig#dd84957e</link>
        <description>r8169: use phy_ethtool_nway_resetSwitch to using phy_ethtool_nway_reset().Signed-off-by: Heiner Kallweit &lt;hkallweit1@gmail.com&gt;Reviewed-by: Andrew Lunn &lt;andrew@lunn.ch&gt;Reviewed-by: Florian Fainelli &lt;f.fainelli@gmail.com&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/drivers/net/ethernet/realtek/Kconfig</description>
        <pubDate>Tue, 17 Jul 2018 20:51:48 +0000</pubDate>
        <dc:creator>Heiner Kallweit &lt;hkallweit1@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>f1e911d5 - r8169: add basic phylib support</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/ethernet/realtek/Kconfig#f1e911d5</link>
        <description>r8169: add basic phylib supportAdd basic phylib support to r8169. All now unneeded old PHY handling codewill be removed in subsequent patches.Signed-off-by: Heiner Kallweit &lt;hkallweit1@gmail.com&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/drivers/net/ethernet/realtek/Kconfig</description>
        <pubDate>Tue, 17 Jul 2018 20:51:26 +0000</pubDate>
        <dc:creator>Heiner Kallweit &lt;hkallweit1@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>138b15ed - drivers/net: remove all references to obsolete Ethernet-HOWTO</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/ethernet/realtek/Kconfig#138b15ed</link>
        <description>drivers/net: remove all references to obsolete Ethernet-HOWTOThis howto made sense in the 1990s when users had to manually configureISA cards with jumpers or vendor utilities, but with the implementationof PCI it became increasingly less and less relevant, to the point whereit has been well over a decade since I last updated it.  And there isno value in anyone else taking over updating it either.However the references to it continue to spread as boiler plate textfrom one Kconfig file into the next.  We are not doing end users anyfavours by pointing them at this old document, so lets kill it withfire, once and for all, to hopefully stop any further spread.No code is changed in this commit, just Kconfig help text.Signed-off-by: Paul Gortmaker &lt;paul.gortmaker@windriver.com&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/drivers/net/ethernet/realtek/Kconfig</description>
        <pubDate>Sun, 21 Jun 2015 20:28:02 +0000</pubDate>
        <dc:creator>Paul Gortmaker &lt;paul.gortmaker@windriver.com&gt;</dc:creator>
    </item>
<item>
        <title>a1606c7d - net: Move MII out from under NET_CORE and hide it</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/ethernet/realtek/Kconfig#a1606c7d</link>
        <description>net: Move MII out from under NET_CORE and hide itAll drivers that select MII also need to select NET_CORE because MIIdepends on it.  This is a bit ridiculous because NET_CORE is just amenu option that doesn&apos;t enable any code by itself.There is also no need for it to be a visible option, since its usersall select it.Signed-off-by: Ben Hutchings &lt;ben@decadent.org.uk&gt;Acked-by: Jeff Kirsher &lt;jeffrey.t.kirsher@intel.com&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/drivers/net/ethernet/realtek/Kconfig</description>
        <pubDate>Tue, 18 Jun 2013 02:24:51 +0000</pubDate>
        <dc:creator>Ben Hutchings &lt;ben@decadent.org.uk&gt;</dc:creator>
    </item>
<item>
        <title>5af9857d - drivers/net/ethernet/realtek: remove depends on CONFIG_EXPERIMENTAL</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/ethernet/realtek/Kconfig#5af9857d</link>
        <description>drivers/net/ethernet/realtek: remove depends on CONFIG_EXPERIMENTALThe CONFIG_EXPERIMENTAL config item has not carried much meaning for awhile now and is almost always enabled by default. As agreed during theLinux kernel summit, remove it from any &quot;depends on&quot; lines in Kconfigs.CC: &quot;David S. Miller&quot; &lt;davem@davemloft.net&gt;CC: Paul Gortmaker &lt;paul.gortmaker@windriver.com&gt;CC: Cesar Eduardo Barros &lt;cesarb@cesarb.net&gt;Signed-off-by: Kees Cook &lt;keescook@chromium.org&gt;Acked-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/drivers/net/ethernet/realtek/Kconfig</description>
        <pubDate>Tue, 02 Oct 2012 18:18:15 +0000</pubDate>
        <dc:creator>Kees Cook &lt;keescook@chromium.org&gt;</dc:creator>
    </item>
<item>
        <title>3396c782 - drivers/net: fix up stale paths from driver reorg</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/ethernet/realtek/Kconfig#3396c782</link>
        <description>drivers/net: fix up stale paths from driver reorgThe reorganization of the driver layout in drivers/netleft behind some stale paths in comments and in Kconfighelp text.  Bring them up to date.  No actual change toany code takes place here.Signed-off-by: Paul Gortmaker &lt;paul.gortmaker@windriver.com&gt;CC: Jeff Kirsher &lt;jeffrey.t.kirsher@intel.com&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/drivers/net/ethernet/realtek/Kconfig</description>
        <pubDate>Fri, 27 Jan 2012 13:36:01 +0000</pubDate>
        <dc:creator>Paul Gortmaker &lt;paul.gortmaker@windriver.com&gt;</dc:creator>
    </item>
<item>
        <title>1b6b7172 - net/ethernet: sc92031 is not Realtek</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/ethernet/realtek/Kconfig#1b6b7172</link>
        <description>net/ethernet: sc92031 is not RealtekWhile the SC92031 could be found on fake &quot;Realtek&quot; NICs, it has norelationship to Realtek, and is actually from Silan.Create a new subdirectory for silan and move sc92031 there.Signed-off-by: Cesar Eduardo Barros &lt;cesarb@cesarb.net&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/drivers/net/ethernet/realtek/Kconfig</description>
        <pubDate>Tue, 25 Oct 2011 12:32:24 +0000</pubDate>
        <dc:creator>Cesar Eduardo Barros &lt;cesarb@cesarb.net&gt;</dc:creator>
    </item>
<item>
        <title>aaba215c - MII: fix Kconfig dependencies for MII</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/ethernet/realtek/Kconfig#aaba215c</link>
        <description>MII: fix Kconfig dependencies for MIIMII Kconfig option is apart of the core networking drivers andby default NET_CORE is enabled so drivers selecting MII willhave MII enabled as well.  It was found using the randconfigoption during testing, MII would be selected but NET_COREcould be disabled.  This caused a dependency error.Resolved the dependency by selecting NET_CORE when MII isselected.Reported-by: Emil Tantilov &lt;emil.s.tantilov@intel.com&gt;Signed-off-by: Jeff Kirsher &lt;jeffrey.t.kirsher@intel.com&gt;Tested-by: Aaron Brown &lt;aaron.f.brown@intel.com&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/drivers/net/ethernet/realtek/Kconfig</description>
        <pubDate>Wed, 14 Sep 2011 21:23:14 +0000</pubDate>
        <dc:creator>Jeff Kirsher &lt;jeffrey.t.kirsher@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>88f07484 - drivers/net/ethernet/*: Enabled vendor Kconfig options</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/ethernet/realtek/Kconfig#88f07484</link>
        <description>drivers/net/ethernet/*: Enabled vendor Kconfig optionsBased on finds for Stephen Rothwell, where current defconfig&apos;senable a ethernet driver and it is not compiled due to the newlyadded NET_VENDOR_* component of Kconfig.This patch enables all the &quot;new&quot; Kconfig options so that currentdefconfig&apos;s will continue to compile the expected drivers.  Inaddition, by enabling all the new Kconfig options does not addany un-expected options.CC: Stephen Rothwll &lt;sfc@canb.auug.org.au&gt;Signed-off-by: Jeff Kirsher &lt;jeffrey.t.kirsher@intel.com&gt;

            List of files:
            /linux-6.15/drivers/net/ethernet/realtek/Kconfig</description>
        <pubDate>Tue, 23 Aug 2011 08:29:52 +0000</pubDate>
        <dc:creator>Jeff Kirsher &lt;jeffrey.t.kirsher@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>a8fe65b8 - 8139*/atp/r8169/sc92031: Move the Realtek drivers</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/ethernet/realtek/Kconfig#a8fe65b8</link>
        <description>8139*/atp/r8169/sc92031: Move the Realtek driversMove the Realtek drivers into drivers/net/ethernet/realtek/ and makethe necessary Kconfig and Makefile changes.CC: Realtek linux nic maintainers &lt;nic_swsd@realtek.com&gt;CC: Francois Romieu &lt;romieu@fr.zoreil.com&gt;CC: Jeff Garzik &lt;jgarzik@pobox.com&gt;CC: Donald Becker &lt;becker@scyld.com&gt;Signed-off-by: Jeff Kirsher &lt;jeffrey.t.kirsher@intel.com&gt;

            List of files:
            /linux-6.15/drivers/net/ethernet/realtek/Kconfig</description>
        <pubDate>Fri, 20 May 2011 06:27:55 +0000</pubDate>
        <dc:creator>Jeff Kirsher &lt;jeffrey.t.kirsher@intel.com&gt;</dc:creator>
    </item>
</channel>
</rss>
