<?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>0e00a84cdedf7a1949486746225b35984b351eca - UPSTREAM: libfdt: move headers to &lt;linux/libfdt.h&gt; and &lt;linux/libfdt_env.h&gt;</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/lib/libfdt/Makefile#0e00a84cdedf7a1949486746225b35984b351eca</link>
        <description>UPSTREAM: libfdt: move headers to &lt;linux/libfdt.h&gt; and &lt;linux/libfdt_env.h&gt;Thomas reported U-Boot failed to build host tools if libfdt-develpackage is installed because tools include libfdt headers from/usr/include/ instead of using internal ones.This commit moves the header code:  include/libfdt.h         -&gt; include/linux/libfdt.h  include/libfdt_env.h     -&gt; include/linux/libfdt_env.hand replaces include directives:  #include &lt;libfdt.h&gt;      -&gt; #include &lt;linux/libfdt.h&gt;  #include &lt;libfdt_env.h&gt;  -&gt; #include &lt;linux/libfdt_env.h&gt;Change-Id: I6c0f7e50e8b571106627f25ddac008a62bd2994eReported-by: Thomas Petazzoni &lt;thomas.petazzoni@bootlin.com&gt;Signed-off-by: Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;Signed-off-by: Kever Yang &lt;kever.yang@rock-chips.com&gt;

            List of files:
            /rk3399_rockchip-uboot/lib/libfdt/Makefile</description>
        <pubDate>Sun, 04 Mar 2018 16:20:11 +0000</pubDate>
        <dc:creator>Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;</dc:creator>
    </item>
<item>
        <title>4e2c3b8c76d8e0f31bdb66eb72a7492c1070b1d5 - UPSTREAM: libfdt: migrate fdt_rw.c to a wrapper of scripts/dtc/libfdt/fdt_rw.c</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/lib/libfdt/Makefile#4e2c3b8c76d8e0f31bdb66eb72a7492c1070b1d5</link>
        <description>UPSTREAM: libfdt: migrate fdt_rw.c to a wrapper of scripts/dtc/libfdt/fdt_rw.cThe only difference between scripts/dtc/libfdt/fdt_rw.c andlib/libfdt/fdt_rw.c is fdt_remove_unused_strings().It is only used by fdtgrep, so we do not need to compile it for U-Bootimage.  Move it to tools/libfdt/fdw_rw.c so that lib/libfdt/fdt_rw.ccan be a wrapper of scripts/dtc/libfdt/fdt_rw.c.Change-Id: I6e2578d4bfdf75438d3aa1cb51f270f34527d37dSigned-off-by: Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;Reviewed-by: Simon Glass &lt;sjg@chromium.org&gt;Signed-off-by: Kever Yang &lt;kever.yang@rock-chips.com&gt;

            List of files:
            /rk3399_rockchip-uboot/lib/libfdt/Makefile</description>
        <pubDate>Sun, 21 Jan 2018 10:19:13 +0000</pubDate>
        <dc:creator>Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;</dc:creator>
    </item>
<item>
        <title>70b70db64ac992884833f4236132201c16a77c53 - UPSTREAM: libfdt: migrate fdt_wip.c to a wrapper of scripts/dtc/libfdt/fdt_wip.c</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/lib/libfdt/Makefile#70b70db64ac992884833f4236132201c16a77c53</link>
        <description>UPSTREAM: libfdt: migrate fdt_wip.c to a wrapper of scripts/dtc/libfdt/fdt_wip.cNow, lib/libfdt/fdt_wip.c is the same as scripts/dtc/libfdt/fdt_wip.cChange the former to a wrapper of the latter.Change-Id: Ifce4c63db38146297c14218ef94d226bf6e3bb27Signed-off-by: Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;Reviewed-by: Simon Glass &lt;sjg@chromium.org&gt;Signed-off-by: Kever Yang &lt;kever.yang@rock-chips.com&gt;(cherry picked from commit 26e961c8cfdff00c5c9389d301d9a2eb10eb844c)

            List of files:
            /rk3399_rockchip-uboot/lib/libfdt/Makefile</description>
        <pubDate>Mon, 27 Nov 2017 07:06:07 +0000</pubDate>
        <dc:creator>Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;</dc:creator>
    </item>
<item>
        <title>5d099091a8d6c4b4424b907f3c2ae4bcab223779 - UPSTREAM: lib: libfdt: wrap scripts/dtc/libfdt/* where possible</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/lib/libfdt/Makefile#5d099091a8d6c4b4424b907f3c2ae4bcab223779</link>
        <description>UPSTREAM: lib: libfdt: wrap scripts/dtc/libfdt/* where possiblelib/libfdt/ and scripts/dtc/libfdt have the same copies for thefollowings 6 files:  fdt.c fdt_addresses.c fdt_empty_tree.c fdt_overlay.c fdt_strerr.c  fdt_sw.cMake them a wrapper of scripts/dtc/libfdt/*.  This is exactly whatLinux does to sync libfdt.  In order to make is possible, import&lt;linux/libfdt.h&gt; and &lt;linux/libfdt_env.h&gt; from Linux 4.14-rc5.Unfortunately, U-Boot locally modified the following 3 files:  fdt_ro.c fdt_wip.c fdt_rw.cThe fdt_region.c is U-Boot own file.I did not touch them in order to avoid unpredictable impact.Change-Id: I154855ba51291bf56775714c0066247431d66244Signed-off-by: Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;Signed-off-by: Kever Yang &lt;kever.yang@rock-chips.com&gt;(cherry picked from commit 50a327ded68b7e675389ad284ea3f8c62e683bda)

            List of files:
            /rk3399_rockchip-uboot/lib/libfdt/Makefile</description>
        <pubDate>Tue, 17 Oct 2017 13:30:20 +0000</pubDate>
        <dc:creator>Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;</dc:creator>
    </item>
<item>
        <title>ddf67f71352be56d98f0e5bcf851146e54d764ad - libfdt: Add overlay application function</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/lib/libfdt/Makefile#ddf67f71352be56d98f0e5bcf851146e54d764ad</link>
        <description>libfdt: Add overlay application functionThe device tree overlays are a good way to deal with user-modifyableboards or boards with some kind of an expansion mechanism where we caneasily plug new board in (like the BBB, the Raspberry Pi or the CHIP).Add a new function to merge overlays with a base device tree.Signed-off-by: Maxime Ripard &lt;maxime.ripard@free-electrons.com&gt;

            List of files:
            /rk3399_rockchip-uboot/lib/libfdt/Makefile</description>
        <pubDate>Tue, 05 Jul 2016 08:26:44 +0000</pubDate>
        <dc:creator>Maxime Ripard &lt;maxime.ripard@free-electrons.com&gt;</dc:creator>
    </item>
<item>
        <title>09849f4a7779a247be8af5cfae44f7aad30e1222 - Merge git://git.denx.de/u-boot-dm</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/lib/libfdt/Makefile#09849f4a7779a247be8af5cfae44f7aad30e1222</link>
        <description>Merge git://git.denx.de/u-boot-dm

            List of files:
            /rk3399_rockchip-uboot/lib/libfdt/Makefile</description>
        <pubDate>Mon, 20 Jun 2016 09:14:01 +0000</pubDate>
        <dc:creator>Tom Rini &lt;trini@konsulko.com&gt;</dc:creator>
    </item>
<item>
        <title>6feed2a5aefb7fd0ac443a50bfe00625000bdd34 - lib/libfdt/: General aesthetic/style fixes.</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/lib/libfdt/Makefile#6feed2a5aefb7fd0ac443a50bfe00625000bdd34</link>
        <description>lib/libfdt/: General aesthetic/style fixes.A number of style fixes across the files in this directory, including: * Correct invalid kernel-doc content. * Tidy up massive comment in fdt_region.c. * Use correct spelling of &quot;U-Boot&quot;. * Replace tests of &quot;! &lt;var&gt;&quot; with &quot;!&lt;var&gt;&quot;. * Replace &quot;libfdt_env.h&quot; with &lt;libfdt_env.h&gt;.Signed-off-by: Robert P. J. Day &lt;rpjday@crashcourse.ca&gt;Acked-by: Simon Glass &lt;sjg@chromium.org&gt;

            List of files:
            /rk3399_rockchip-uboot/lib/libfdt/Makefile</description>
        <pubDate>Mon, 23 May 2016 09:40:55 +0000</pubDate>
        <dc:creator>Robert P. J. Day &lt;rpjday@crashcourse.ca&gt;</dc:creator>
    </item>
<item>
        <title>c3c4c00563abfca63f5b846f4f4f6fc390e58563 - fdt: Add fdt_first/next_region() functions</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/lib/libfdt/Makefile#c3c4c00563abfca63f5b846f4f4f6fc390e58563</link>
        <description>fdt: Add fdt_first/next_region() functionsThese have been sent upstream but not accepted to libfdt. For now, bringthese into U-Boot to enable fdtgrep to operate. We will use fdtgrep tocut device tree files down for SPL.Signed-off-by: Simon Glass &lt;sjg@chromium.org&gt;

            List of files:
            /rk3399_rockchip-uboot/lib/libfdt/Makefile</description>
        <pubDate>Tue, 23 Jun 2015 21:38:27 +0000</pubDate>
        <dc:creator>Simon Glass &lt;sjg@chromium.org&gt;</dc:creator>
    </item>
<item>
        <title>61eb5d72abd3d156baf9de2133226dc5d8da3150 - libfdt: move CONFIG_OF_LIBFDT and CONFIG_FIT to lib/Makefile</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/lib/libfdt/Makefile#61eb5d72abd3d156baf9de2133226dc5d8da3150</link>
        <description>libfdt: move CONFIG_OF_LIBFDT and CONFIG_FIT to lib/MakefileSigned-off-by: Masahiro Yamada &lt;yamada.m@jp.panasonic.com&gt;

            List of files:
            /rk3399_rockchip-uboot/lib/libfdt/Makefile</description>
        <pubDate>Fri, 28 Nov 2014 02:13:28 +0000</pubDate>
        <dc:creator>Masahiro Yamada &lt;yamada.m@jp.panasonic.com&gt;</dc:creator>
    </item>
<item>
        <title>0596d35d80f5090440bd9a2a2beaacb268ff59c0 - fdt: Sync up with libfdt</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/lib/libfdt/Makefile#0596d35d80f5090440bd9a2a2beaacb268ff59c0</link>
        <description>fdt: Sync up with libfdtThis brings in changes up to commit f9e91a48 in the libfdt repo.Mostly this is whitespace/minor changes. But there are a few newfeatures:- fdt_size_cells() and fdt_address_cells()- fdt_resize()Signed-off-by: Simon Glass &lt;sjg@chromium.org&gt;

            List of files:
            /rk3399_rockchip-uboot/lib/libfdt/Makefile</description>
        <pubDate>Wed, 30 Jul 2014 09:59:03 +0000</pubDate>
        <dc:creator>Simon Glass &lt;sjg@chromium.org&gt;</dc:creator>
    </item>
<item>
        <title>0a1a1575587b1ec28196b8519c812d6d468a344a - lib: convert makefiles to Kbuild style</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/lib/libfdt/Makefile#0a1a1575587b1ec28196b8519c812d6d468a344a</link>
        <description>lib: convert makefiles to Kbuild styleSigned-off-by: Masahiro Yamada &lt;yamada.m@jp.panasonic.com&gt;

            List of files:
            /rk3399_rockchip-uboot/lib/libfdt/Makefile</description>
        <pubDate>Thu, 17 Oct 2013 08:35:01 +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/lib/libfdt/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/lib/libfdt/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/lib/libfdt/Makefile#8b485ba12b0defa0c4ed3559789250238f8331a8</link>
        <description>Merge branch &apos;u-boot/master&apos; into u-boot-arm/master

            List of files:
            /rk3399_rockchip-uboot/lib/libfdt/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/lib/libfdt/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/lib/libfdt/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>3e4d27b06d7484040355e22eec2cbce7335d6dab - Merge git://git.denx.de/u-boot</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/lib/libfdt/Makefile#3e4d27b06d7484040355e22eec2cbce7335d6dab</link>
        <description>Merge git://git.denx.de/u-boot

            List of files:
            /rk3399_rockchip-uboot/lib/libfdt/Makefile</description>
        <pubDate>Sat, 10 Nov 2012 07:05:54 +0000</pubDate>
        <dc:creator>Stefano Babic &lt;sbabic@denx.de&gt;</dc:creator>
    </item>
<item>
        <title>71724830b42f67ea9633324183bb622724eee9cd - Merge branch &apos;master&apos; of git://git.denx.de/u-boot-fdt</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/lib/libfdt/Makefile#71724830b42f67ea9633324183bb622724eee9cd</link>
        <description>Merge branch &apos;master&apos; of git://git.denx.de/u-boot-fdt

            List of files:
            /rk3399_rockchip-uboot/lib/libfdt/Makefile</description>
        <pubDate>Tue, 23 Oct 2012 02:54:48 +0000</pubDate>
        <dc:creator>Tom Rini &lt;trini@ti.com&gt;</dc:creator>
    </item>
<item>
        <title>cae4a8a2a81ca6cd16d5de1b55d47e315cbff05a - Merge branch &apos;next&apos;</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/lib/libfdt/Makefile#cae4a8a2a81ca6cd16d5de1b55d47e315cbff05a</link>
        <description>Merge branch &apos;next&apos;

            List of files:
            /rk3399_rockchip-uboot/lib/libfdt/Makefile</description>
        <pubDate>Tue, 23 Oct 2012 00:42:09 +0000</pubDate>
        <dc:creator>Gerald Van Baren &lt;gvb@unssw.com&gt;</dc:creator>
    </item>
<item>
        <title>c71b64f3617b5a4362c6e4e0aefdd66d6ac6affd - libfdt: Add helper function to create a trivial, empty tree</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/lib/libfdt/Makefile#c71b64f3617b5a4362c6e4e0aefdd66d6ac6affd</link>
        <description>libfdt: Add helper function to create a trivial, empty treeThe libfdt read/write functions are now usable enough that it&apos;s become amoderately common pattern to use them to build and manipulate a devicetree from scratch.  For example, we do so ourself in our rw_tree1 testcase,and qemu is starting to use this model when building device trees for sometargets such as e500.However, the read/write functions require some sort of valid tree to beginwith, so this necessitates either having a trivial canned dtb to begin withor, more commonly, creating an empty tree using the serial-write functionsfirst.This patch adds a helper function which uses the serial-write functions tocreate a trivial, empty but complete and valid tree in a supplied buffer,ready for manipulation with the read/write functions.Signed-off-by: David Gibson &lt;david@gibson.dropbear.id.au&gt;From git://git.jdl.com/software/dtc.git patch hash be6026838 withadaptations to include/libfdt.h and lib/libfdt/Makefile for the U-Bootenvironment.Signed-off-by: Gerald Van Baren &lt;vanbaren@cideas.com&gt;

            List of files:
            /rk3399_rockchip-uboot/lib/libfdt/Makefile</description>
        <pubDate>Tue, 16 Oct 2012 02:24:36 +0000</pubDate>
        <dc:creator>Gerald Van Baren &lt;gvb@unssw.com&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/lib/libfdt/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/lib/libfdt/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>83653121d7382fccfe329cb732f77f116341ef1d - Merge branch &apos;master&apos; of git://git.denx.de/u-boot-arm</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/lib/libfdt/Makefile#83653121d7382fccfe329cb732f77f116341ef1d</link>
        <description>Merge branch &apos;master&apos; of git://git.denx.de/u-boot-armConflicts:	cpu/arm1176/cpu.c	cpu/arm1176/start.S	cpu/arm_cortexa8/s5pc1xx/Makefile	cpu/arm_cortexa8/s5pc1xx/clock.c	drivers/serial/serial_s5p.c	include/asm-arm/arch-s5pc1xx/clk.h	include/asm-arm/arch-s5pc1xx/gpio.h	include/asm-arm/arch-s5pc1xx/uart.hSigned-off-by: Minkyu Kang &lt;mk7.kang@samsung.com&gt;

            List of files:
            /rk3399_rockchip-uboot/lib/libfdt/Makefile</description>
        <pubDate>Mon, 19 Apr 2010 01:26:18 +0000</pubDate>
        <dc:creator>Minkyu Kang &lt;mk7.kang@samsung.com&gt;</dc:creator>
    </item>
</channel>
</rss>
