<?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>aec499c7 - nds32: Remove the architecture</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/ethernet/faraday/Kconfig#aec499c7</link>
        <description>nds32: Remove the architectureThe nds32 architecture, also known as AndeStar V3, is a custom 32-bitRISC target designed by Andes Technologies. Support was added to thekernel in 2016 as the replacement RISC-V based V5 processors werealready announced, and maintained by (current or former) Andesemployees.As explained by Alan Kao, new customers are now all using RISC-V,and all known nds32 users are already on longterm stable kernelsprovided by Andes, with no development work going into mainlinesupport any more.While the port is still in a reasonably good shape, it only getsworse over time without active maintainers, so it seems bestto remove it before it becomes unusable. As always, if it turnsout that there are mainline users after all, and they volunteerto maintain the port in the future, the removal can be reverted.Link: https://lore.kernel.org/linux-mm/YhdWNLUhk+x9RAzU@yamatobi.andestech.com/Link: https://lore.kernel.org/lkml/20220302065213.82702-1-alankao@andestech.com/Link: https://www.andestech.com/en/products-solutions/andestar-architecture/Signed-off-by: Alan Kao &lt;alankao@andestech.com&gt;[arnd: rewrite changelog to provide more background]Signed-off-by: Arnd Bergmann &lt;arnd@arndb.de&gt;

            List of files:
            /linux-6.15/drivers/net/ethernet/faraday/Kconfig</description>
        <pubDate>Wed, 02 Mar 2022 07:42:45 +0000</pubDate>
        <dc:creator>Alan Kao &lt;alankao@andestech.com&gt;</dc:creator>
    </item>
<item>
        <title>0b32e91f - ethernet: select CONFIG_CRC32 as needed</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/ethernet/faraday/Kconfig#0b32e91f</link>
        <description>ethernet: select CONFIG_CRC32 as neededA number of ethernet drivers require crc32 functionality to beavaialable in the kernel, causing a link error otherwise:arm-linux-gnueabi-ld: drivers/net/ethernet/agere/et131x.o: in function `et1310_setup_device_for_multicast&apos;:et131x.c:(.text+0x5918): undefined reference to `crc32_le&apos;arm-linux-gnueabi-ld: drivers/net/ethernet/cadence/macb_main.o: in function `macb_start_xmit&apos;:macb_main.c:(.text+0x4b88): undefined reference to `crc32_le&apos;arm-linux-gnueabi-ld: drivers/net/ethernet/faraday/ftgmac100.o: in function `ftgmac100_set_rx_mode&apos;:ftgmac100.c:(.text+0x2b38): undefined reference to `crc32_le&apos;arm-linux-gnueabi-ld: drivers/net/ethernet/freescale/fec_main.o: in function `set_multicast_list&apos;:fec_main.c:(.text+0x6120): undefined reference to `crc32_le&apos;arm-linux-gnueabi-ld: drivers/net/ethernet/freescale/fman/fman_dtsec.o: in function `dtsec_add_hash_mac_address&apos;:fman_dtsec.c:(.text+0x830): undefined reference to `crc32_le&apos;arm-linux-gnueabi-ld: drivers/net/ethernet/freescale/fman/fman_dtsec.o:fman_dtsec.c:(.text+0xb68): more undefined references to `crc32_le&apos; followarm-linux-gnueabi-ld: drivers/net/ethernet/netronome/nfp/nfpcore/nfp_hwinfo.o: in function `nfp_hwinfo_read&apos;:nfp_hwinfo.c:(.text+0x250): undefined reference to `crc32_be&apos;arm-linux-gnueabi-ld: nfp_hwinfo.c:(.text+0x288): undefined reference to `crc32_be&apos;arm-linux-gnueabi-ld: drivers/net/ethernet/netronome/nfp/nfpcore/nfp_resource.o: in function `nfp_resource_acquire&apos;:nfp_resource.c:(.text+0x144): undefined reference to `crc32_be&apos;arm-linux-gnueabi-ld: nfp_resource.c:(.text+0x158): undefined reference to `crc32_be&apos;arm-linux-gnueabi-ld: drivers/net/ethernet/nxp/lpc_eth.o: in function `lpc_eth_set_multicast_list&apos;:lpc_eth.c:(.text+0x1934): undefined reference to `crc32_le&apos;arm-linux-gnueabi-ld: drivers/net/ethernet/rocker/rocker_ofdpa.o: in function `ofdpa_flow_tbl_do&apos;:rocker_ofdpa.c:(.text+0x2e08): undefined reference to `crc32_le&apos;arm-linux-gnueabi-ld: drivers/net/ethernet/rocker/rocker_ofdpa.o: in function `ofdpa_flow_tbl_del&apos;:rocker_ofdpa.c:(.text+0x3074): undefined reference to `crc32_le&apos;arm-linux-gnueabi-ld: drivers/net/ethernet/rocker/rocker_ofdpa.o: in function `ofdpa_port_fdb&apos;:arm-linux-gnueabi-ld: drivers/net/ethernet/mellanox/mlx5/core/steering/dr_ste.o: in function `mlx5dr_ste_calc_hash_index&apos;:dr_ste.c:(.text+0x354): undefined reference to `crc32_le&apos;arm-linux-gnueabi-ld: drivers/net/ethernet/microchip/lan743x_main.o: in function `lan743x_netdev_set_multicast&apos;:lan743x_main.c:(.text+0x5dc4): undefined reference to `crc32_le&apos;Add the missing &apos;select CRC32&apos; entries in Kconfig for each of them.Signed-off-by: Arnd Bergmann &lt;arnd@arndb.de&gt;Acked-by: Nicolas Ferre &lt;nicolas.ferre@microchip.com&gt;Acked-by: Madalin Bucur &lt;madalin.bucur@oss.nxp.com&gt;Acked-by: Mark Einon &lt;mark.einon@gmail.com&gt;Acked-by: Simon Horman &lt;simon.horman@netronome.com&gt;Link: https://lore.kernel.org/r/20201203232114.1485603-1-arnd@kernel.orgSigned-off-by: Jakub Kicinski &lt;kuba@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/net/ethernet/faraday/Kconfig</description>
        <pubDate>Thu, 03 Dec 2020 23:20:37 +0000</pubDate>
        <dc:creator>Arnd Bergmann &lt;arnd@arndb.de&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/faraday/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/faraday/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>82f151de - net: ftgmac100: Select ASPEED MDIO driver for the AST2600</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/ethernet/faraday/Kconfig#82f151de</link>
        <description>net: ftgmac100: Select ASPEED MDIO driver for the AST2600Ensures we can talk to a PHY via MDIO on the AST2600, as the MDIOcontroller is now separate from the MAC.Signed-off-by: Andrew Jeffery &lt;andrew@aj.id.au&gt;Reviewed-by: Andrew Lunn &lt;andrew@lunn.ch&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/drivers/net/ethernet/faraday/Kconfig</description>
        <pubDate>Wed, 31 Jul 2019 05:39:59 +0000</pubDate>
        <dc:creator>Andrew Jeffery &lt;andrew@aj.id.au&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/faraday/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/faraday/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>eac8173e - net: faraday add nds32 support.</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/ethernet/faraday/Kconfig#eac8173e</link>
        <description>net: faraday add nds32 support.This patch is used to support nds32 architecture to use these faradaymac IP.Signed-off-by: Greentime Hu &lt;greentime@andestech.com&gt;Acked-by: Arnd Bergmann &lt;arnd@arndb.de&gt;

            List of files:
            /linux-6.15/drivers/net/ethernet/faraday/Kconfig</description>
        <pubDate>Wed, 25 Oct 2017 07:55:04 +0000</pubDate>
        <dc:creator>Greentime Hu &lt;greentime@andestech.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/faraday/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/faraday/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/faraday/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/faraday/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>aaba215c - MII: fix Kconfig dependencies for MII</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/ethernet/faraday/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/faraday/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/faraday/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/faraday/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>baf0fbfe - ftgmac100/ftmac100: Move the Faraday drivers</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/ethernet/faraday/Kconfig#baf0fbfe</link>
        <description>ftgmac100/ftmac100: Move the Faraday driversMove the Faraday driver into drivers/net/ethernet/faraday/ andmake the necessary Kconfig and Makefile changes.CC: &quot;Po-Yu Chuang&quot; &lt;ratbert@faraday-tech.com&gt;Signed-off-by: Jeff Kirsher &lt;jeffrey.t.kirsher@intel.com&gt;Acked-by: Po-Yu Chuang &lt;ratbert@faraday-tech.com&gt;

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