<?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>377e1048d3065b97b21fea0763b77f1786d5b654 - board: powerpc: convert makefiles to Kbuild style</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/board/freescale/mpc8349itx/Makefile#377e1048d3065b97b21fea0763b77f1786d5b654</link>
        <description>board: powerpc: convert makefiles to Kbuild styleSigned-off-by: Masahiro Yamada &lt;yamada.m@jp.panasonic.com&gt;Cc: Wolfgang Denk &lt;wd@denx.de&gt;Cc: Kim Phillips &lt;kim.phillips@freescale.com&gt;Cc: York Sun &lt;yorksun@freescale.com&gt;Cc: Stefan Roese &lt;sr@denx.de&gt;

            List of files:
            /rk3399_rockchip-uboot/board/freescale/mpc8349itx/Makefile</description>
        <pubDate>Mon, 21 Oct 2013 02:53:38 +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/board/freescale/mpc8349itx/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/board/freescale/mpc8349itx/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/board/freescale/mpc8349itx/Makefile#8b485ba12b0defa0c4ed3559789250238f8331a8</link>
        <description>Merge branch &apos;u-boot/master&apos; into u-boot-arm/master

            List of files:
            /rk3399_rockchip-uboot/board/freescale/mpc8349itx/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>
<item>
        <title>1a4596601fd395f3afb8f82f3f840c5e00bdd57a - Add GPL-2.0+ SPDX-License-Identifier to source files</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/board/freescale/mpc8349itx/Makefile#1a4596601fd395f3afb8f82f3f840c5e00bdd57a</link>
        <description>Add GPL-2.0+ SPDX-License-Identifier to source filesSigned-off-by: Wolfgang Denk &lt;wd@denx.de&gt;[trini: Fixup common/cmd_io.c]Signed-off-by: Tom Rini &lt;trini@ti.com&gt;

            List of files:
            /rk3399_rockchip-uboot/board/freescale/mpc8349itx/Makefile</description>
        <pubDate>Mon, 08 Jul 2013 07:37:19 +0000</pubDate>
        <dc:creator>Wolfgang Denk &lt;wd@denx.de&gt;</dc:creator>
    </item>
<item>
        <title>464c79207c89f247f97b344495924eabb0c9738e - punt unused clean/distclean targets</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/board/freescale/mpc8349itx/Makefile#464c79207c89f247f97b344495924eabb0c9738e</link>
        <description>punt unused clean/distclean targetsThe top level Makefile does not do any recursion into subdirs whencleaning, so these clean/distclean targets in random arch/board dirsnever get used.  Punt them all.MAKEALL didn&apos;t report any errors related to this that I could see.Signed-off-by: Mike Frysinger &lt;vapier@gentoo.org&gt;

            List of files:
            /rk3399_rockchip-uboot/board/freescale/mpc8349itx/Makefile</description>
        <pubDate>Thu, 13 Oct 2011 06:54:57 +0000</pubDate>
        <dc:creator>Mike Frysinger &lt;vapier@gentoo.org&gt;</dc:creator>
    </item>
<item>
        <title>6d8962e814c15807dd6ac5757904be2a02d187b8 - Switch from archive libraries to partial linking</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/board/freescale/mpc8349itx/Makefile#6d8962e814c15807dd6ac5757904be2a02d187b8</link>
        <description>Switch from archive libraries to partial linkingBefore this commit, weak symbols were not overridden by non-weak symbolsfound in archive libraries when linking with recent versions ofbinutils.  As stated in the System V ABI, &quot;the link editor does notextract archive members to resolve undefined weak symbols&quot;.This commit changes all Makefiles to use partial linking (ld -r) insteadof creating library archives, which forces all symbols to participate inlinking, allowing non-weak symbols to override weak symbols as intended.This approach is also used by Linux, from which the gmake functioncmd_link_o_target (defined in config.mk and used in all Makefiles) isinspired.The name of each former library archive is preserved except forextensions which change from &quot;.a&quot; to &quot;.o&quot;.  This commit updatesreferences accordingly where needed, in particular in some linkerscripts.This commit reveals board configurations that exclude some features butinclude source files that depend these disabled features in the build,resulting in undefined symbols.  Known such cases include:- disabling CMD_NET but not CMD_NFS;- enabling CONFIG_OF_LIBFDT but not CONFIG_QE.Signed-off-by: Sebastien Carlier &lt;sebastien.carlier@gmail.com&gt;

            List of files:
            /rk3399_rockchip-uboot/board/freescale/mpc8349itx/Makefile</description>
        <pubDate>Fri, 05 Nov 2010 14:48:07 +0000</pubDate>
        <dc:creator>Sebastien Carlier &lt;sebastien.carlier@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>4c2e3da82dc2b7f8b39b7f1d57f570e4bc5caa6d - Update Freescale copyrights to remove &quot;All Rights Reserved&quot;</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/board/freescale/mpc8349itx/Makefile#4c2e3da82dc2b7f8b39b7f1d57f570e4bc5caa6d</link>
        <description>Update Freescale copyrights to remove &quot;All Rights Reserved&quot;&quot;All Rights Reserved&quot; conflicts with the GPL.Signed-off-by: Kumar Gala &lt;kumar.gala@freescale.com&gt;

            List of files:
            /rk3399_rockchip-uboot/board/freescale/mpc8349itx/Makefile</description>
        <pubDate>Wed, 29 Jul 2009 02:49:52 +0000</pubDate>
        <dc:creator>Kumar Gala &lt;kumar.gala@freescale.com&gt;</dc:creator>
    </item>
<item>
        <title>23b5b1d3e1e33e9650cc7a4e09901272a3811c64 - Merge branch &apos;master&apos; of git://git.denx.de/u-boot-mpc83xx</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/board/freescale/mpc8349itx/Makefile#23b5b1d3e1e33e9650cc7a4e09901272a3811c64</link>
        <description>Merge branch &apos;master&apos; of git://git.denx.de/u-boot-mpc83xx

            List of files:
            /rk3399_rockchip-uboot/board/freescale/mpc8349itx/Makefile</description>
        <pubDate>Mon, 20 Jul 2009 20:52:31 +0000</pubDate>
        <dc:creator>Wolfgang Denk &lt;wd@denx.de&gt;</dc:creator>
    </item>
<item>
        <title>9993e196da707a0a1cd4584f1fcef12382c1c144 - mpc83xx: convert all remaining boards over to 83XX_GENERIC_PCI</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/board/freescale/mpc8349itx/Makefile#9993e196da707a0a1cd4584f1fcef12382c1c144</link>
        <description>mpc83xx: convert all remaining boards over to 83XX_GENERIC_PCISigned-off-by: Kim Phillips &lt;kim.phillips@freescale.com&gt;

            List of files:
            /rk3399_rockchip-uboot/board/freescale/mpc8349itx/Makefile</description>
        <pubDate>Sat, 18 Jul 2009 23:42:13 +0000</pubDate>
        <dc:creator>Kim Phillips &lt;kim.phillips@freescale.com&gt;</dc:creator>
    </item>
<item>
        <title>859f24350e6e4313626f85161dd03f025a4dac59 - Merge commit &apos;wd/master&apos;</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/board/freescale/mpc8349itx/Makefile#859f24350e6e4313626f85161dd03f025a4dac59</link>
        <description>Merge commit &apos;wd/master&apos;

            List of files:
            /rk3399_rockchip-uboot/board/freescale/mpc8349itx/Makefile</description>
        <pubDate>Thu, 10 Jul 2008 17:05:32 +0000</pubDate>
        <dc:creator>Jon Loeliger &lt;jdl@freescale.com&gt;</dc:creator>
    </item>
<item>
        <title>794a5924972fc8073616e98a2668da4a5f9aea90 - Merge branch &apos;master&apos; of git://www.denx.de/git/u-boot</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/board/freescale/mpc8349itx/Makefile#794a5924972fc8073616e98a2668da4a5f9aea90</link>
        <description>Merge branch &apos;master&apos; of git://www.denx.de/git/u-boot

            List of files:
            /rk3399_rockchip-uboot/board/freescale/mpc8349itx/Makefile</description>
        <pubDate>Thu, 10 Jul 2008 08:26:07 +0000</pubDate>
        <dc:creator>Markus Klotzbuecher &lt;mk@denx.de&gt;</dc:creator>
    </item>
<item>
        <title>7c6237b3e2f2ee0098897da39b79aff4642b8946 - Merge branch &apos;master&apos; of /home/stefan/git/u-boot/u-boot</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/board/freescale/mpc8349itx/Makefile#7c6237b3e2f2ee0098897da39b79aff4642b8946</link>
        <description>Merge branch &apos;master&apos; of /home/stefan/git/u-boot/u-boot

            List of files:
            /rk3399_rockchip-uboot/board/freescale/mpc8349itx/Makefile</description>
        <pubDate>Mon, 07 Jul 2008 07:51:25 +0000</pubDate>
        <dc:creator>Stefan Roese &lt;sr@denx.de&gt;</dc:creator>
    </item>
<item>
        <title>d86a0a6f7fe433787edf06aecba9fd6abfecab48 - Merge branch &apos;master&apos; of ssh+git://mercury.denx.de/home/wd/git/u-boot/master</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/board/freescale/mpc8349itx/Makefile#d86a0a6f7fe433787edf06aecba9fd6abfecab48</link>
        <description>Merge branch &apos;master&apos; of ssh+git://mercury.denx.de/home/wd/git/u-boot/masterConflicts:	board/amirix/ap1000/serial.c	board/exbitgen/exbitgen.c	board/exbitgen/flash.c	board/ml2/serial.c	board/xilinx/ml300/serial.cSigned-off-by: Wolfgang Denk &lt;wd@denx.de&gt;

            List of files:
            /rk3399_rockchip-uboot/board/freescale/mpc8349itx/Makefile</description>
        <pubDate>Sat, 05 Jul 2008 23:15:17 +0000</pubDate>
        <dc:creator>Wolfgang Denk &lt;wd@denx.de&gt;</dc:creator>
    </item>
<item>
        <title>c8a3b109f07f02342d097b30908965f7261d9f15 - Cleanup out-or-tree building for some boards (.depend)</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/board/freescale/mpc8349itx/Makefile#c8a3b109f07f02342d097b30908965f7261d9f15</link>
        <description>Cleanup out-or-tree building for some boards (.depend)Signed-off-by: Wolfgang Denk &lt;wd@denx.de&gt;

            List of files:
            /rk3399_rockchip-uboot/board/freescale/mpc8349itx/Makefile</description>
        <pubDate>Wed, 02 Jul 2008 21:49:18 +0000</pubDate>
        <dc:creator>Wolfgang Denk &lt;wd@denx.de&gt;</dc:creator>
    </item>
<item>
        <title>9cfff9e9d4d9dbb9bb428cea3fa2cda3b3e593ad - Merge branch &apos;master&apos; of /home/stefan/git/u-boot/u-boot</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/board/freescale/mpc8349itx/Makefile#9cfff9e9d4d9dbb9bb428cea3fa2cda3b3e593ad</link>
        <description>Merge branch &apos;master&apos; of /home/stefan/git/u-boot/u-boot

            List of files:
            /rk3399_rockchip-uboot/board/freescale/mpc8349itx/Makefile</description>
        <pubDate>Thu, 17 Jan 2008 15:04:12 +0000</pubDate>
        <dc:creator>Stefan Roese &lt;sr@denx.de&gt;</dc:creator>
    </item>
<item>
        <title>2b4c952be7c4357a13e839d48df80853820c33eb - mpc83xx: fix mpc8313/mpc8315/mpc8349itx Makefiles for silent build (with -s)</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/board/freescale/mpc8349itx/Makefile#2b4c952be7c4357a13e839d48df80853820c33eb</link>
        <description>mpc83xx: fix mpc8313/mpc8315/mpc8349itx Makefiles for silent build (with -s)Signed-off-by: Kumar Gala &lt;galak@kernel.crashing.org&gt;Signed-off-by: Kim Phillips &lt;kim.phillips@freescale.com&gt;

            List of files:
            /rk3399_rockchip-uboot/board/freescale/mpc8349itx/Makefile</description>
        <pubDate>Mon, 14 Jan 2008 15:01:40 +0000</pubDate>
        <dc:creator>Kumar Gala &lt;galak@kernel.crashing.org&gt;</dc:creator>
    </item>
<item>
        <title>b90296fc39a33f84bb2b0aa79bf997be495ba791 - Merge commit &apos;origin/master&apos;</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/board/freescale/mpc8349itx/Makefile#b90296fc39a33f84bb2b0aa79bf997be495ba791</link>
        <description>Merge commit &apos;origin/master&apos;

            List of files:
            /rk3399_rockchip-uboot/board/freescale/mpc8349itx/Makefile</description>
        <pubDate>Tue, 02 Oct 2007 17:05:53 +0000</pubDate>
        <dc:creator>Haavard Skinnemoen &lt;hskinnemoen@atmel.com&gt;</dc:creator>
    </item>
<item>
        <title>b8685affe614ccf5f4ec66252b30e2e524d18948 - Merge git://www.denx.de/git/u-boot</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/board/freescale/mpc8349itx/Makefile#b8685affe614ccf5f4ec66252b30e2e524d18948</link>
        <description>Merge git://www.denx.de/git/u-bootConflicts:	CREDITS

            List of files:
            /rk3399_rockchip-uboot/board/freescale/mpc8349itx/Makefile</description>
        <pubDate>Sat, 22 Sep 2007 16:29:43 +0000</pubDate>
        <dc:creator>Nobuhiro Iwamatsu &lt;iwamatsu@nigauri.org&gt;</dc:creator>
    </item>
<item>
        <title>f930922f061ea7bf585296859d1c14194c24b840 - Merge with git://www.denx.de/git/u-boot.git</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/board/freescale/mpc8349itx/Makefile#f930922f061ea7bf585296859d1c14194c24b840</link>
        <description>Merge with git://www.denx.de/git/u-boot.git

            List of files:
            /rk3399_rockchip-uboot/board/freescale/mpc8349itx/Makefile</description>
        <pubDate>Mon, 17 Sep 2007 15:12:45 +0000</pubDate>
        <dc:creator>Markus Klotzbuecher &lt;mk@denx.de&gt;</dc:creator>
    </item>
<item>
        <title>9c73f4b81172bc9f1b8f132450e69bcfb5b960ca - Merge git://www.denx.de/git/u-boot</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/board/freescale/mpc8349itx/Makefile#9c73f4b81172bc9f1b8f132450e69bcfb5b960ca</link>
        <description>Merge git://www.denx.de/git/u-boot

            List of files:
            /rk3399_rockchip-uboot/board/freescale/mpc8349itx/Makefile</description>
        <pubDate>Mon, 10 Sep 2007 22:29:27 +0000</pubDate>
        <dc:creator>Michal Simek &lt;monstr@monstr.eu&gt;</dc:creator>
    </item>
</channel>
</rss>
