<?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 Makefile</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2025</copyright>
    <generator>Java</generator><item>
        <title>cf51737fc4fd1e190fd2f560411ac79ec60f3825 - net: phy: Add rockchip fephy support</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/drivers/net/phy/Makefile#cf51737fc4fd1e190fd2f560411ac79ec60f3825</link>
        <description>net: phy: Add rockchip fephy supportSigned-off-by: David Wu &lt;david.wu@rock-chips.com&gt;Change-Id: I06d51e841ded6fcf1f0741e570b6acb226339c28

            List of files:
            /rk3399_rockchip-uboot/drivers/net/phy/Makefile</description>
        <pubDate>Tue, 27 May 2025 03:50:54 +0000</pubDate>
        <dc:creator>David Wu &lt;david.wu@rock-chips.com&gt;</dc:creator>
    </item>
<item>
        <title>bf9a0f37862d25c47b0761c423e1b1640ad49818 - net: phy: Add rk630 phy support</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/drivers/net/phy/Makefile#bf9a0f37862d25c47b0761c423e1b1640ad49818</link>
        <description>net: phy: Add rk630 phy supportChange-Id: Idae9d4f8948281267758f01a020a7a07099dc827Signed-off-by: David Wu &lt;david.wu@rock-chips.com&gt;

            List of files:
            /rk3399_rockchip-uboot/drivers/net/phy/Makefile</description>
        <pubDate>Wed, 02 Mar 2022 10:45:39 +0000</pubDate>
        <dc:creator>David Wu &lt;david.wu@rock-chips.com&gt;</dc:creator>
    </item>
<item>
        <title>6e7adf7037c76f081b149685fa5e978e2ddf2a22 - Merge branch &apos;master&apos; of git://git.denx.de/u-boot-net</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/drivers/net/phy/Makefile#6e7adf7037c76f081b149685fa5e978e2ddf2a22</link>
        <description>Merge branch &apos;master&apos; of git://git.denx.de/u-boot-net

            List of files:
            /rk3399_rockchip-uboot/drivers/net/phy/Makefile</description>
        <pubDate>Mon, 07 Aug 2017 21:37:56 +0000</pubDate>
        <dc:creator>Tom Rini &lt;trini@konsulko.com&gt;</dc:creator>
    </item>
<item>
        <title>d397f7c45b0b87a7e1083c57a320c559e7848268 - net: phy: micrel: Separate KSZ9000 drivers from KSZ8000 drivers</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/drivers/net/phy/Makefile#d397f7c45b0b87a7e1083c57a320c559e7848268</link>
        <description>net: phy: micrel: Separate KSZ9000 drivers from KSZ8000 driversThe KS8721BL and KSZ9021 PHYs are software-incompatible, yet theyshare the same ID. Drivers for bothe PHYs cannot safely coexist, sothe solution was to use #ifdefs to select between the two drivers.As a result KSZ9031, which has a unique ID, is now caught in thecrossfire. Unless CONFIG_PHY_MICREL_KSZ9031 is defined, the KSZ9031will not function properly, as some essential configuration code isifdef&apos;d-out.To prevent such situations, move the KSZ9000 drivers to a separatefile, and place them under a separate Kconfig option. While it ispossible to enable both KSZ8000 and KSZ9000 drivers at the same time,the assumption is that it is highly unlikely for a system to containboth a KSZ8000 and a KSZ9000 PHY, and that only one of the driverswill be enabled at any given time.Signed-off-by: Alexandru Gagniuc &lt;alex.g@adaptrum.com&gt;Reviewed-by: Philipp Tomsich &lt;philipp.tomsich@theobroma-systems.com&gt;Acked-by: Joe Hershberger &lt;joe.hershberger@ni.com&gt;

            List of files:
            /rk3399_rockchip-uboot/drivers/net/phy/Makefile</description>
        <pubDate>Fri, 07 Jul 2017 18:36:57 +0000</pubDate>
        <dc:creator>Alexandru Gagniuc &lt;alex.g@adaptrum.com&gt;</dc:creator>
    </item>
<item>
        <title>db40c1aa1c100d8a9e33206575efd8b3678f31db - drivers/net/phy: add fixed-phy / fixed-link support</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/drivers/net/phy/Makefile#db40c1aa1c100d8a9e33206575efd8b3678f31db</link>
        <description>drivers/net/phy: add fixed-phy / fixed-link supportThis patch adds support for having a &quot;fixed-link&quot; to some other MAC(like some embedded switch-device).For this purpose we introduce a new phy-driver, called &quot;Fixed PHY&quot;.Fixed PHY works only with CONFIG_DM_ETH enabled, since the fixed-link isdescribed with a subnode below ethernet interface.Most ethernet drivers (unfortunately not all are following same schemefor searching/attaching phys) are calling &quot;phy_connect(...)&quot; for gettinga phy-device.At this point we link in, we search here for a subnode called &quot;fixed-link&quot;, once found we start phy_device_create(...) with the special phy-id PHY_FIXED_ID (0xa5a55a5a).During init the &quot;Fixed PHY&quot; driver has registered with this id and nowgets probed, during probe we get all the details about fixed-link out ofdts, later on the phy reports this values.Signed-off-by: Hannes Schmelzer &lt;hannes.schmelzer@br-automation.com&gt;Signed-off-by: Hannes Schmelzer &lt;oe5hpm@oevsv.at&gt;Acked-by: Joe Hershberger &lt;joe.hershberger@ni.com&gt;Reviewed-by: Christian Gmeiner &lt;christian.gmeiner@gmail.com&gt;

            List of files:
            /rk3399_rockchip-uboot/drivers/net/phy/Makefile</description>
        <pubDate>Thu, 23 Mar 2017 14:11:43 +0000</pubDate>
        <dc:creator>Hannes Schmelzer &lt;hannes.schmelzer@br-automation.com&gt;</dc:creator>
    </item>
<item>
        <title>e1a71f8b339220fa74c9cd5d36ae9c444c492e83 - Merge branch &apos;master&apos; of git://git.denx.de/u-boot-net</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/drivers/net/phy/Makefile#e1a71f8b339220fa74c9cd5d36ae9c444c492e83</link>
        <description>Merge branch &apos;master&apos; of git://git.denx.de/u-boot-net

            List of files:
            /rk3399_rockchip-uboot/drivers/net/phy/Makefile</description>
        <pubDate>Thu, 09 Feb 2017 16:56:35 +0000</pubDate>
        <dc:creator>Tom Rini &lt;trini@konsulko.com&gt;</dc:creator>
    </item>
<item>
        <title>a5fd13ad1913d9c66c47666dbedac7703a48e502 - net: phy: MSCC Add Support for VSC8530-VSC8531-VSC8540-VSC8541</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/drivers/net/phy/Makefile#a5fd13ad1913d9c66c47666dbedac7703a48e502</link>
        <description>net: phy: MSCC Add Support for VSC8530-VSC8531-VSC8540-VSC8541Signed-off-by: John Haechten &lt;john.haechten@microsemi.com&gt;Acked-by: Joe Hershberger &lt;joe.hershberger@ni.com&gt;

            List of files:
            /rk3399_rockchip-uboot/drivers/net/phy/Makefile</description>
        <pubDate>Fri, 09 Dec 2016 22:15:17 +0000</pubDate>
        <dc:creator>John Haechten &lt;john.haechten@microsemi.com&gt;</dc:creator>
    </item>
<item>
        <title>4ed6ed3c27a069a00c8a557d606a05276cc4653e - Merge branch &apos;master&apos; of git://www.denx.de/git/u-boot-microblaze</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/drivers/net/phy/Makefile#4ed6ed3c27a069a00c8a557d606a05276cc4653e</link>
        <description>Merge branch &apos;master&apos; of git://www.denx.de/git/u-boot-microblaze

            List of files:
            /rk3399_rockchip-uboot/drivers/net/phy/Makefile</description>
        <pubDate>Mon, 04 Apr 2016 18:34:09 +0000</pubDate>
        <dc:creator>Tom Rini &lt;trini@konsulko.com&gt;</dc:creator>
    </item>
<item>
        <title>ed6fad3e25e945e7042a53e129adde6a27476c90 - phy: Add phy driver support for xilinx PCS/PMA core</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/drivers/net/phy/Makefile#ed6fad3e25e945e7042a53e129adde6a27476c90</link>
        <description>phy: Add phy driver support for xilinx PCS/PMA coreAdd phy driver support for xilinx PCS/PMA coreSigned-off-by: Siva Durga Prasad Paladugu &lt;sivadur@xilinx.com&gt;Signed-off-by: Kedareswara rao Appana &lt;appanad@xilinx.com&gt;Signed-off-by: Michal Simek &lt;michal.simek@xilinx.com&gt;

            List of files:
            /rk3399_rockchip-uboot/drivers/net/phy/Makefile</description>
        <pubDate>Fri, 05 Feb 2016 07:52:10 +0000</pubDate>
        <dc:creator>Siva Durga Prasad Paladugu &lt;siva.durga.paladugu@xilinx.com&gt;</dc:creator>
    </item>
<item>
        <title>aa7077fcee6cf00cde59bb9709ebd6205720f8bf - Merge branch &apos;zynq&apos; of git://www.denx.de/git/u-boot-microblaze</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/drivers/net/phy/Makefile#aa7077fcee6cf00cde59bb9709ebd6205720f8bf</link>
        <description>Merge branch &apos;zynq&apos; of git://www.denx.de/git/u-boot-microblaze

            List of files:
            /rk3399_rockchip-uboot/drivers/net/phy/Makefile</description>
        <pubDate>Thu, 19 Nov 2015 16:25:36 +0000</pubDate>
        <dc:creator>Tom Rini &lt;trini@konsulko.com&gt;</dc:creator>
    </item>
<item>
        <title>721aed79126ba954028137eabe71678523a8b157 - net: phy: Add support for Texas Instruments DP83867</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/drivers/net/phy/Makefile#721aed79126ba954028137eabe71678523a8b157</link>
        <description>net: phy: Add support for Texas Instruments DP83867Code is taken from Linux kernel driver (v4.2).Signed-off-by: Edgar E. Iglesias &lt;edgar.iglesias@xilinx.com&gt;Signed-off-by: Michal Simek &lt;michal.simek@xilinx.com&gt;Reviewed-by: Tom Rini &lt;trini@konsulko.com&gt;Acked-by: Joe Hershberger &lt;joe.hershberger@ni.com&gt;

            List of files:
            /rk3399_rockchip-uboot/drivers/net/phy/Makefile</description>
        <pubDate>Sat, 26 Sep 2015 06:46:08 +0000</pubDate>
        <dc:creator>Edgar E. Iglesias &lt;edgar.iglesias@xilinx.com&gt;</dc:creator>
    </item>
<item>
        <title>e72d344386bf80738fab7a6bd37cb321f443093a - Merge branch &apos;master&apos; of git://git.denx.de/u-boot</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/drivers/net/phy/Makefile#e72d344386bf80738fab7a6bd37cb321f443093a</link>
        <description>Merge branch &apos;master&apos; of git://git.denx.de/u-boot

            List of files:
            /rk3399_rockchip-uboot/drivers/net/phy/Makefile</description>
        <pubDate>Fri, 13 Feb 2015 10:17:01 +0000</pubDate>
        <dc:creator>Stefano Babic &lt;sbabic@denx.de&gt;</dc:creator>
    </item>
<item>
        <title>ec0cc98f2cb7fa217ed0a1a54978e2d8f2fbc20c - Merge branch &apos;master&apos; of git://git.denx.de/u-boot-mpc85xx</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/drivers/net/phy/Makefile#ec0cc98f2cb7fa217ed0a1a54978e2d8f2fbc20c</link>
        <description>Merge branch &apos;master&apos; of git://git.denx.de/u-boot-mpc85xx

            List of files:
            /rk3399_rockchip-uboot/drivers/net/phy/Makefile</description>
        <pubDate>Fri, 23 Jan 2015 01:04:17 +0000</pubDate>
        <dc:creator>Tom Rini &lt;trini@ti.com&gt;</dc:creator>
    </item>
<item>
        <title>f7c38cf827a0cf9d5ab4ca60131dffa10a2e4309 - phylib: add support for aquantia PHYs</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/drivers/net/phy/Makefile#f7c38cf827a0cf9d5ab4ca60131dffa10a2e4309</link>
        <description>phylib: add support for aquantia PHYsThis patch supports AQ1202, AQ2104, AQR105 PHY.Signed-off-by: Shaohui Xie &lt;Shaohui.Xie@freescale.com&gt;Acked-by: Joe Hershberger &lt;joe.hershberger@ni.com&gt;Reviewed-by: York Sun &lt;yorksun@freescale.com&gt;

            List of files:
            /rk3399_rockchip-uboot/drivers/net/phy/Makefile</description>
        <pubDate>Tue, 30 Dec 2014 10:32:04 +0000</pubDate>
        <dc:creator>Shaohui Xie &lt;Shaohui.Xie@freescale.com&gt;</dc:creator>
    </item>
<item>
        <title>272a1acf1ef574356e5da51f7d6b3b07ab4e9b83 - Merge git://git.denx.de/u-boot-mpc85xx</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/drivers/net/phy/Makefile#272a1acf1ef574356e5da51f7d6b3b07ab4e9b83</link>
        <description>Merge git://git.denx.de/u-boot-mpc85xx

            List of files:
            /rk3399_rockchip-uboot/drivers/net/phy/Makefile</description>
        <pubDate>Mon, 08 Dec 2014 21:35:07 +0000</pubDate>
        <dc:creator>Tom Rini &lt;trini@ti.com&gt;</dc:creator>
    </item>
<item>
        <title>9b18e5199ec42f9dc62c0da7f4fe7554e199980d - net/phy: Add support for CS4315/CS4340 PHY</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/drivers/net/phy/Makefile#9b18e5199ec42f9dc62c0da7f4fe7554e199980d</link>
        <description>net/phy: Add support for CS4315/CS4340 PHYAdd support for Cortina CS4315/CS4340 10G PHY.- This driver loads CS43xx firmware from NOR/NAND/SPI/SD device  to initialize Cortina PHY.- Cortina PHY has non-standard offset of PHY ID registers, thus  we define own get_phy_id() to override default get_phy_id().- To define macro CONFIG_PHY_CORTINA will enable this driver.Signed-off-by: Shengzhou Liu &lt;Shengzhou.Liu@freescale.com&gt;Reviewed-by: York Sun &lt;yorksun@freescale.com&gt;

            List of files:
            /rk3399_rockchip-uboot/drivers/net/phy/Makefile</description>
        <pubDate>Mon, 10 Nov 2014 10:32:29 +0000</pubDate>
        <dc:creator>Shengzhou Liu &lt;Shengzhou.Liu@freescale.com&gt;</dc:creator>
    </item>
<item>
        <title>368b4d2b49bbbf379d9334747fbbd2aaaafe4356 - drivers: net: remove dead drivers</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/drivers/net/phy/Makefile#368b4d2b49bbbf379d9334747fbbd2aaaafe4356</link>
        <description>drivers: net: remove dead driversThe following configs are not defined at all: - CONFIG_INCA_IP_SWITCH - CONFIG_PBL2800_ETHER - CONFIG_PHY_ICPLUSSigned-off-by: Masahiro Yamada &lt;yamada.m@jp.panasonic.com&gt;

            List of files:
            /rk3399_rockchip-uboot/drivers/net/phy/Makefile</description>
        <pubDate>Sun, 03 Aug 2014 23:11:37 +0000</pubDate>
        <dc:creator>Masahiro Yamada &lt;yamada.m@jp.panasonic.com&gt;</dc:creator>
    </item>
<item>
        <title>e32459e24aa9f7778b9394c94bd4af2b6524b3a0 - drivers: net: convert makefiles to Kbuild style</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/drivers/net/phy/Makefile#e32459e24aa9f7778b9394c94bd4af2b6524b3a0</link>
        <description>drivers: net: convert makefiles to Kbuild styleSigned-off-by: Masahiro Yamada &lt;yamada.m@jp.panasonic.com&gt;

            List of files:
            /rk3399_rockchip-uboot/drivers/net/phy/Makefile</description>
        <pubDate>Thu, 17 Oct 2013 08:34:54 +0000</pubDate>
        <dc:creator>Masahiro Yamada &lt;yamada.m@jp.panasonic.com&gt;</dc:creator>
    </item>
<item>
        <title>326ea986ac150acdc7656d57fca647db80b50158 - Merge git://git.denx.de/u-boot-arm</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/drivers/net/phy/Makefile#326ea986ac150acdc7656d57fca647db80b50158</link>
        <description>Merge git://git.denx.de/u-boot-armConflicts:	board/freescale/mx6qsabrelite/Makefile	board/freescale/mx6qsabrelite/mx6qsabrelite.c	include/configs/mx6qsabrelite.hSigned-off-by: Stefano Babic &lt;sbabic@denx.de&gt;

            List of files:
            /rk3399_rockchip-uboot/drivers/net/phy/Makefile</description>
        <pubDate>Wed, 31 Jul 2013 09:30:38 +0000</pubDate>
        <dc:creator>Stefano Babic &lt;sbabic@denx.de&gt;</dc:creator>
    </item>
<item>
        <title>8b485ba12b0defa0c4ed3559789250238f8331a8 - Merge branch &apos;u-boot/master&apos; into u-boot-arm/master</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/drivers/net/phy/Makefile#8b485ba12b0defa0c4ed3559789250238f8331a8</link>
        <description>Merge branch &apos;u-boot/master&apos; into u-boot-arm/master

            List of files:
            /rk3399_rockchip-uboot/drivers/net/phy/Makefile</description>
        <pubDate>Thu, 25 Jul 2013 15:57:46 +0000</pubDate>
        <dc:creator>Albert ARIBAUD &lt;albert.u.boot@aribaud.net&gt;</dc:creator>
    </item>
</channel>
</rss>
