<?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>c2b281d045c975355b8121ea3891be76931c997c - Makefile: Add FWVER and SPL_FWVER args support for make</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/Makefile#c2b281d045c975355b8121ea3891be76931c997c</link>
        <description>Makefile: Add FWVER and SPL_FWVER args support for makeSigned-off-by: Joseph Chen &lt;chenjh@rock-chips.com&gt;Change-Id: I8cb3306e4ae3f97301f35cb724f1b1ba012de61a

            List of files:
            /rk3399_rockchip-uboot/Makefile</description>
        <pubDate>Thu, 14 Sep 2023 07:24:31 +0000</pubDate>
        <dc:creator>Joseph Chen &lt;chenjh@rock-chips.com&gt;</dc:creator>
    </item>
<item>
        <title>6bbad2a641d40a661962ddaca74efcfe97f6ca01 - Revert &quot;Makefile: Add u-boot.bin.lzma target&quot;</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/Makefile#6bbad2a641d40a661962ddaca74efcfe97f6ca01</link>
        <description>Revert &quot;Makefile: Add u-boot.bin.lzma target&quot;This reverts commit fd2d88e11b2e616fac3c61b37feeabd5a37f106c.Signed-off-by: Joseph Chen &lt;chenjh@rock-chips.com&gt;Change-Id: Ife6a637c57565a683533651e9467db672b23d430

            List of files:
            /rk3399_rockchip-uboot/Makefile</description>
        <pubDate>Fri, 18 Mar 2022 07:33:55 +0000</pubDate>
        <dc:creator>Joseph Chen &lt;chenjh@rock-chips.com&gt;</dc:creator>
    </item>
<item>
        <title>fd2d88e11b2e616fac3c61b37feeabd5a37f106c - Makefile: Add u-boot.bin.lzma target</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/Makefile#fd2d88e11b2e616fac3c61b37feeabd5a37f106c</link>
        <description>Makefile: Add u-boot.bin.lzma targetSigned-off-by: Joseph Chen &lt;chenjh@rock-chips.com&gt;Change-Id: I456d5b48518159b01ca947e3bc5786a8b89f83ba

            List of files:
            /rk3399_rockchip-uboot/Makefile</description>
        <pubDate>Wed, 02 Mar 2022 07:08:08 +0000</pubDate>
        <dc:creator>Joseph Chen &lt;chenjh@rock-chips.com&gt;</dc:creator>
    </item>
<item>
        <title>53138e05f629348aa302557d3a9c7ada780408a3 - common: spl: Add decompress header support</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/Makefile#53138e05f629348aa302557d3a9c7ada780408a3</link>
        <description>common: spl: Add decompress header supportImage:  SPL = spl decomp header + U-Boot proper(lzma)Bootflow:  Maskrom =&gt; ddr =&gt; spl decomp header =&gt; U-Boot proper =&gt; kernelTested on RV1126 `grep ^CONFIG_SPL_ .config`:  CONFIG_SPL_SYS_THUMB_BUILD=y  CONFIG_SPL_USE_ARCH_MEMCPY=y  CONFIG_SPL_USE_ARCH_MEMSET=y  CONFIG_SPL_LDSCRIPT=&quot;arch/$(ARCH)/cpu/u-boot-spl.lds&quot;  CONFIG_SPL_LIBCOMMON_SUPPORT=y  CONFIG_SPL_LIBGENERIC_SUPPORT=y  CONFIG_SPL_FIT_GENERATOR=&quot;&quot;  CONFIG_SPL_SYS_MALLOC_F_LEN=0x300000  CONFIG_SPL_FIT_SOURCE=&quot;&quot;  CONFIG_SPL_FIT_IMAGE_KB=2048  CONFIG_SPL_FIT_IMAGE_MULTIPLE=2  CONFIG_SPL_LOGLEVEL=4  CONFIG_SPL_DECOMP_HEADER=y  CONFIG_SPL_BOARD_INIT=y  CONFIG_SPL_SYS_MALLOC_SIMPLE=y  CONFIG_SPL_SKIP_RELOCATE=y  CONFIG_SPL_OF_CONTROL=y  CONFIG_SPL_DM=y  CONFIG_SPL_TINY_MEMSET=y  CONFIG_SPL_LZMA=yChange-Id: If29b11c4c871fefc424e0b7b4ef9ad3cbe0e979aSigned-off-by: Joseph Chen &lt;chenjh@rock-chips.com&gt;

            List of files:
            /rk3399_rockchip-uboot/Makefile</description>
        <pubDate>Mon, 14 Feb 2022 02:38:42 +0000</pubDate>
        <dc:creator>Joseph Chen &lt;chenjh@rock-chips.com&gt;</dc:creator>
    </item>
<item>
        <title>cbca032016b0cfad1527abbe05c3696c32834ba5 - Add target to generate initial environment</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/Makefile#cbca032016b0cfad1527abbe05c3696c32834ba5</link>
        <description>Add target to generate initial environmentThe initial environment is linked to the u-boot binary. Modifying theenvironment from User Space with the env tools requires that the toolsare always built together with the bootloader to be sure that theycontain the initial environment in case no environment is stored intopersistent storage or when a board boots with just the defaultenvironment. This makes difficult for distros to provide a generalpackage to access the environment. A simpler way is if the tools aregeneric for all boards and a configuration file is given to provide theinitial environment.The patch just generates the initial environment by extracting it fromthe compiled object. This file can then be used for tools in user spaceto initialize the environment.Signed-off-by: Stefano Babic &lt;sbabic@denx.de&gt;(cherry picked from commit bdaa73a5b3923257add182b4ab8058dbfa33421b)Change-Id: I0968346510f814a12cb357c40c7785473a7aabfcSigned-off-by: Jeffy Chen &lt;jeffy.chen@rock-chips.com&gt;

            List of files:
            /rk3399_rockchip-uboot/Makefile</description>
        <pubDate>Wed, 13 Mar 2019 08:46:45 +0000</pubDate>
        <dc:creator>Stefano Babic &lt;sbabic@denx.de&gt;</dc:creator>
    </item>
<item>
        <title>cc9b5ddaecd28ad8e29a8d4cbeff51f749335dcf - envtools: make sure version/timestamp header file are available</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/Makefile#cc9b5ddaecd28ad8e29a8d4cbeff51f749335dcf</link>
        <description>envtools: make sure version/timestamp header file are availableWith commit 84d46e7e8948 (&quot;tools: env: allow to print U-Boot version&quot;)the fw_env utilities need the version.h header file. Building onlythe envtools in a pristine build directory will fail due to missingheader files.Make sure the header files are a dependency of the envtools target.Fixes: 84d46e7e8948 (&quot;tools: env: allow to print U-Boot version&quot;)Signed-off-by: Stefan Agner &lt;stefan.agner@toradex.com&gt;Tested-by: Peter Robinson &lt;pbrobinson@gmail.com&gt;Reviewed-by: Simon Glass &lt;sjg@chromium.org&gt;(cherry picked from commit ded84f90a1066eef5f34daa4539273de64f7b811)Change-Id: I9b019f1e757271fe19f8ef789d41a849619d699bSigned-off-by: Jeffy Chen &lt;jeffy.chen@rock-chips.com&gt;

            List of files:
            /rk3399_rockchip-uboot/Makefile</description>
        <pubDate>Tue, 14 Nov 2017 14:47:18 +0000</pubDate>
        <dc:creator>Stefan Agner &lt;stefan.agner@toradex.com&gt;</dc:creator>
    </item>
<item>
        <title>6e95faaf7feae4a81470dfdcb057034e140876de - Makefile: Clean more files</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/Makefile#6e95faaf7feae4a81470dfdcb057034e140876de</link>
        <description>Makefile: Clean more filesSigned-off-by: Joseph Chen &lt;chenjh@rock-chips.com&gt;Change-Id: I4c29022d66d54e5c1f11cf0388e00026aa341c29

            List of files:
            /rk3399_rockchip-uboot/Makefile</description>
        <pubDate>Thu, 26 Aug 2021 06:43:12 +0000</pubDate>
        <dc:creator>Joseph Chen &lt;chenjh@rock-chips.com&gt;</dc:creator>
    </item>
<item>
        <title>e863c94ad7e2434ae4504c1a67e2799bbc99224d - [BACKPORT]: gcc-9: silence &apos;address-of-packed-member&apos; warning</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/Makefile#e863c94ad7e2434ae4504c1a67e2799bbc99224d</link>
        <description>[BACKPORT]: gcc-9: silence &apos;address-of-packed-member&apos; warningGCC 9.x starts complaining about potential misalignment of the pointer tothe array (in this case alignment=2) in the packed (alignment=1) structures.Repeating Linus&apos; Torvalds commit 6f303d60534c in the Linux kernel.Original commit message:  We already did this for clang, but now gcc has that warning too.  Yes, yes, the address may be unaligned.  And that&apos;s kind of the point.This in particular hides the warnings likedrivers/usb/gadget/composite.c:545:23: warning: taking address of packed member of &#8216;struct usb_string_descriptor&#8217; may result in an unaligned pointer value [-Waddress-of-packed-member]  545 |    collect_langs(sp, s-&gt;wData);drivers/usb/gadget/composite.c:550:24: warning: taking address of packed member of &#8216;struct usb_string_descriptor&#8217; may result in an unaligned pointer value [-Waddress-of-packed-member]  550 |     collect_langs(sp, s-&gt;wData);drivers/usb/gadget/composite.c:555:25: warning: taking address of packed member of &#8216;struct usb_string_descriptor&#8217; may result in an unaligned pointer value [-Waddress-of-packed-member]  555 |      collect_langs(sp, s-&gt;wData);Signed-off-by: Andy Shevchenko &lt;andriy.shevchenko@linux.intel.com&gt;Change-Id: I49fd82d88be4974f38ce78bf2193ee296a19c87f

            List of files:
            /rk3399_rockchip-uboot/Makefile</description>
        <pubDate>Fri, 29 Nov 2019 17:47:59 +0000</pubDate>
        <dc:creator>Andy Shevchenko &lt;andriy.shevchenko@linux.intel.com&gt;</dc:creator>
    </item>
<item>
        <title>03781805684cf20c4d80fa0790a64f1f35170c66 - rockchip: kernel dtb: support always use embed kernel dtb</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/Makefile#03781805684cf20c4d80fa0790a64f1f35170c66</link>
        <description>rockchip: kernel dtb: support always use embed kernel dtbSigned-off-by: Joseph Chen &lt;chenjh@rock-chips.com&gt;Change-Id: I7197c65dc315eb513f072a325cf57c2a079c0674

            List of files:
            /rk3399_rockchip-uboot/Makefile</description>
        <pubDate>Wed, 10 Mar 2021 03:15:40 +0000</pubDate>
        <dc:creator>Joseph Chen &lt;chenjh@rock-chips.com&gt;</dc:creator>
    </item>
<item>
        <title>abfd1c5e3dc976f81a24bf2f58246e413aada4b2 - rockchip: support assign kernel dtb name which is build-in</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/Makefile#abfd1c5e3dc976f81a24bf2f58246e413aada4b2</link>
        <description>rockchip: support assign kernel dtb name which is build-inSigned-off-by: Joseph Chen &lt;chenjh@rock-chips.com&gt;Change-Id: I708b8b41ef5cda59bca78eafb4ecacd568528e75

            List of files:
            /rk3399_rockchip-uboot/Makefile</description>
        <pubDate>Tue, 02 Feb 2021 08:59:59 +0000</pubDate>
        <dc:creator>Joseph Chen &lt;chenjh@rock-chips.com&gt;</dc:creator>
    </item>
<item>
        <title>4a2b8db466479ddec6ee85f9fe9d7f934016be9a - common: add usbplug support</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/Makefile#4a2b8db466479ddec6ee85f9fe9d7f934016be9a</link>
        <description>common: add usbplug support- disable some message- add &quot;usbplug.bin&quot; generation- add minimum usbplug dtb support- add individual board_init_r() init sequence.Signed-off-by: Joseph Chen &lt;chenjh@rock-chips.com&gt;Change-Id: If48ee49247fca6108db3a1fbab3b403241b3a8eb

            List of files:
            /rk3399_rockchip-uboot/Makefile</description>
        <pubDate>Tue, 19 May 2020 03:16:07 +0000</pubDate>
        <dc:creator>Joseph Chen &lt;chenjh@rock-chips.com&gt;</dc:creator>
    </item>
<item>
        <title>1a4f6af8bfd44c8ae6e87a81ff125eed47042cc5 - Merge branch &apos;next-dev&apos; into thunder-boot</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/Makefile#1a4f6af8bfd44c8ae6e87a81ff125eed47042cc5</link>
        <description>Merge branch &apos;next-dev&apos; into thunder-boot

            List of files:
            /rk3399_rockchip-uboot/Makefile</description>
        <pubDate>Mon, 02 Mar 2020 01:43:23 +0000</pubDate>
        <dc:creator>Joseph Chen &lt;chenjh@rock-chips.com&gt;</dc:creator>
    </item>
<item>
        <title>fcdd83d4455871c49a93236c3f1cb964727f8c0c - dts: Makefile: simplify the logic of kernel dtb feature</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/Makefile#fcdd83d4455871c49a93236c3f1cb964727f8c0c</link>
        <description>dts: Makefile: simplify the logic of kernel dtb featureOur purpose is replacing the u-boot.dtb with u-boot-spl.dtbwhen kernel dtb feature is enabled. The current logic is toocomplicated and not easy to extend new features.The best way is to generate but not replace a u-boot.dtb thesame as u-boot-spl.dtb during DTB compile process.Signed-off-by: Joseph Chen &lt;chenjh@rock-chips.com&gt;Change-Id: I678ec7c60c91ecc6f6f0a935e50a691c52c94162

            List of files:
            /rk3399_rockchip-uboot/Makefile</description>
        <pubDate>Mon, 17 Feb 2020 10:13:28 +0000</pubDate>
        <dc:creator>Joseph Chen &lt;chenjh@rock-chips.com&gt;</dc:creator>
    </item>
<item>
        <title>f6ce6072be71a99f76b5c32d3c202f9330d66da6 - UPSTREAM: usb: Add Cadence USB3 host and gadget driver</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/Makefile#f6ce6072be71a99f76b5c32d3c202f9330d66da6</link>
        <description>UPSTREAM: usb: Add Cadence USB3 host and gadget driverAdd support for USB3 host and gadget driver. This is a direct sync ofLinux kernel Cadence USB stack that from v5.4-rc1 release.Driver has been modified so that it compiles without errors againstU-Boot code base.Features not required for U-Boot such as scatter-gather DMA and OTGinterrupt handling has been dropped.Change-Id: I168e032f35d259ad1bb7a7f9f3c066bd13f129d4Signed-off-by: Jean-Jacques Hiblot &lt;jjhiblot@ti.com&gt;[jjhiblot@ti.com: Add PHY support]Signed-off-by: Vignesh Raghavendra &lt;vigneshr@ti.com&gt;Signed-off-by: Frank Wang &lt;frank.wang@rock-chips.com&gt;(cherry picked from commit 7e91f6ccdc84fe5952e5c26769e65d12e5fc4733)

            List of files:
            /rk3399_rockchip-uboot/Makefile</description>
        <pubDate>Tue, 01 Oct 2019 11:56:33 +0000</pubDate>
        <dc:creator>Vignesh Raghavendra &lt;vigneshr@ti.com&gt;</dc:creator>
    </item>
<item>
        <title>369e944c844f783508b7839ae86a3418e2f63bc7 - fdt/Makefile: make u-boot-dtb.bin 8-byte aligned</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/Makefile#369e944c844f783508b7839ae86a3418e2f63bc7</link>
        <description>fdt/Makefile: make u-boot-dtb.bin 8-byte alignedThe dts/kern.dtb is appended after u-boot-dtb.bin for U-disk boot.Make sure u-boot-dtb.bin is 8-byte aligned to avoid data-abort oncalling: fdt_check_header(gd-&gt;fdt_blob_kern).Signed-off-by: Joseph Chen &lt;chenjh@rock-chips.com&gt;Change-Id: Id5f2daf0c5446e7ea828cb970d3d4879e3acda86

            List of files:
            /rk3399_rockchip-uboot/Makefile</description>
        <pubDate>Thu, 12 Dec 2019 10:07:07 +0000</pubDate>
        <dc:creator>Joseph Chen &lt;chenjh@rock-chips.com&gt;</dc:creator>
    </item>
<item>
        <title>b8dc613cbc483a8abfcf4203e4fa0e18f60b1d27 - Merge branch &apos;next-dev&apos; into thunder-boot</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/Makefile#b8dc613cbc483a8abfcf4203e4fa0e18f60b1d27</link>
        <description>Merge branch &apos;next-dev&apos; into thunder-boot

            List of files:
            /rk3399_rockchip-uboot/Makefile</description>
        <pubDate>Tue, 19 Nov 2019 08:15:43 +0000</pubDate>
        <dc:creator>Joseph Chen &lt;chenjh@rock-chips.com&gt;</dc:creator>
    </item>
<item>
        <title>5704c899ed54eefefdadfcb769555812e347da46 - fdtdec: support pack &quot;kern.dtb&quot; to the end of u-boot.bin</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/Makefile#5704c899ed54eefefdadfcb769555812e347da46</link>
        <description>fdtdec: support pack &quot;kern.dtb&quot; to the end of u-boot.bin- It provides a way to promise kernel dtb can be loaded successfully  even when the image is damaged.- This makes developers easily to add what they what just like a &quot;U-Boot&quot; dtb.- The kern.dtb file is pack into the end of u-boot.bin while ./dts/kern.dtb  is exist.Change-Id: I93a36a9c65ea8719e5610cdcbcc7708e5337c53fSigned-off-by: Joseph Chen &lt;chenjh@rock-chips.com&gt;

            List of files:
            /rk3399_rockchip-uboot/Makefile</description>
        <pubDate>Mon, 21 Oct 2019 01:08:50 +0000</pubDate>
        <dc:creator>Joseph Chen &lt;chenjh@rock-chips.com&gt;</dc:creator>
    </item>
<item>
        <title>cfcc706c901d603707657919484e4f65467be9ff - UPSTREAM: mtd: move NAND files into a raw/ subdirectory</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/Makefile#cfcc706c901d603707657919484e4f65467be9ff</link>
        <description>UPSTREAM: mtd: move NAND files into a raw/ subdirectoryNAND flavors, like serial and parallel, have a lot in common and wouldbenefit to share code. Let&apos;s move raw (parallel) NAND specific code in araw/ subdirectory, to ease the addition of a core file in nand/ and theintroduction of a spi/ subdirectory specific to SPI NANDs.Signed-off-by: Miquel Raynal &lt;miquel.raynal@bootlin.com&gt;Change-Id: Ibb56f85620c4798fb579be3e4e30438963b7c48bSigned-off-by: Jon Lin &lt;jon.lin@rock-chips.com&gt;(cherry picked from commit a430fa06a4ac50e785fdbfb7f43c3cb14b35619c)

            List of files:
            /rk3399_rockchip-uboot/Makefile</description>
        <pubDate>Thu, 16 Aug 2018 15:30:07 +0000</pubDate>
        <dc:creator>Miquel Raynal &lt;miquel.raynal@bootlin.com&gt;</dc:creator>
    </item>
<item>
        <title>d3992738952fd9a61e3dc6834fe99087d5203738 - Makefile: u-boot.itb: call &quot;mkfitimage&quot; when kernel dtb enabled</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/Makefile#d3992738952fd9a61e3dc6834fe99087d5203738</link>
        <description>Makefile: u-boot.itb: call &quot;mkfitimage&quot; when kernel dtb enabledThis was a careless mistake.fixes: 510e4046a63fe6607bf328aeeb06ec2e36b56b0d(Makefile: u-boot.itb: use dt-spl.dtb if using kernel dtb)Change-Id: Ifc8ad908356db55007ddd8e125543a6501cbe5daSigned-off-by: Joseph Chen &lt;chenjh@rock-chips.com&gt;

            List of files:
            /rk3399_rockchip-uboot/Makefile</description>
        <pubDate>Thu, 13 Jun 2019 03:21:23 +0000</pubDate>
        <dc:creator>Joseph Chen &lt;chenjh@rock-chips.com&gt;</dc:creator>
    </item>
<item>
        <title>d19b8cd2ae304387e7a53319e817b11949fe40b8 - power: charge: add bq25700 support</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/Makefile#d19b8cd2ae304387e7a53319e817b11949fe40b8</link>
        <description>power: charge: add bq25700 supportChange-Id: I49c2e60ac94cea35e6a1e9ca1f713551a75e6265Signed-off-by: Shunqing Chen &lt;csq@rock-chips.com&gt;

            List of files:
            /rk3399_rockchip-uboot/Makefile</description>
        <pubDate>Thu, 16 May 2019 01:19:59 +0000</pubDate>
        <dc:creator>Shunqing Chen &lt;csq@rock-chips.com&gt;</dc:creator>
    </item>
</channel>
</rss>
