<?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>9597494ebfb60418e8a0e7565cca2b7d25512bf5 - Merge branch &apos;master&apos; of git://git.denx.de/u-boot-tegra</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/board/avionic-design/tec/Makefile#9597494ebfb60418e8a0e7565cca2b7d25512bf5</link>
        <description>Merge branch &apos;master&apos; of git://git.denx.de/u-boot-tegra

            List of files:
            /rk3399_rockchip-uboot/board/avionic-design/tec/Makefile</description>
        <pubDate>Thu, 14 May 2015 11:01:11 +0000</pubDate>
        <dc:creator>Tom Rini &lt;trini@konsulko.com&gt;</dc:creator>
    </item>
<item>
        <title>237c36379c76f7f6647bb11c03aa9c5cb9a4972f - ARM: tegra: move NVIDIA common files to arch/arm/mach-tegra</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/board/avionic-design/tec/Makefile#237c36379c76f7f6647bb11c03aa9c5cb9a4972f</link>
        <description>ARM: tegra: move NVIDIA common files to arch/arm/mach-tegraAll the Tegra boards borrow the files from board/nvidia/common/directory, i.e., board/nvidia/common/* are not vendor-common files,but SoC-common files.Move NVIDIA common files to arch/arm/mach-tegra/ to clean upMakefiles.As arch/arm/mach-tegra/board.c already exists, this commit renamesboard/nvidia/common/board.c to arch/arm/mach-tegra/board2.c,expecting they will be consolidated as a second step.Signed-off-by: Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;Acked-by: Marcel Ziswiler &lt;marcel.ziswiler@toradex.com&gt;Cc: Stephen Warren &lt;swarren@nvidia.com&gt;Cc: Tom Warren &lt;twarren@nvidia.com&gt;Cc: Simon Glass &lt;sjg@chromium.org&gt;Acked-by: Simon Glass &lt;sjg@chromium.org&gt;Signed-off-by: Tom Warren &lt;twarren@nvidia.com&gt;

            List of files:
            /rk3399_rockchip-uboot/board/avionic-design/tec/Makefile</description>
        <pubDate>Mon, 13 Apr 2015 01:51:14 +0000</pubDate>
        <dc:creator>Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;</dc:creator>
    </item>
<item>
        <title>1ad6364eeb4f578e423081d1748e8a3fdf1ab01d - Merge branch &apos;master&apos; of git://git.denx.de/u-boot-arm</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/board/avionic-design/tec/Makefile#1ad6364eeb4f578e423081d1748e8a3fdf1ab01d</link>
        <description>Merge branch &apos;master&apos; of git://git.denx.de/u-boot-arm

            List of files:
            /rk3399_rockchip-uboot/board/avionic-design/tec/Makefile</description>
        <pubDate>Wed, 05 Mar 2014 11:51:26 +0000</pubDate>
        <dc:creator>Stefano Babic &lt;sbabic@denx.de&gt;</dc:creator>
    </item>
<item>
        <title>3e11350255d9c5d4bd03c2a65769da84c05d3294 - Merge branch &apos;u-boot/master&apos; into &apos;u-boot-arm/master&apos;</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/board/avionic-design/tec/Makefile#3e11350255d9c5d4bd03c2a65769da84c05d3294</link>
        <description>Merge branch &apos;u-boot/master&apos; into &apos;u-boot-arm/master&apos;Conflicts:	Makefile	drivers/net/npe/MakefileThese two conflicts arise from commit 0b2d3f20(&quot;ARM: NET: Remove the IXP NPE ethernet driver&quot;) and areresolved by deleting the drivers/net/npe/Makefile fileand removing the CONFIG_IXP4XX_NPE line from Makefile.

            List of files:
            /rk3399_rockchip-uboot/board/avionic-design/tec/Makefile</description>
        <pubDate>Thu, 20 Feb 2014 12:16:05 +0000</pubDate>
        <dc:creator>Albert ARIBAUD &lt;albert.u.boot@aribaud.net&gt;</dc:creator>
    </item>
<item>
        <title>9e4140329ee9a787d0f96ac2829d618d47f7973f - kbuild: change out-of-tree build</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/board/avionic-design/tec/Makefile#9e4140329ee9a787d0f96ac2829d618d47f7973f</link>
        <description>kbuild: change out-of-tree buildThis commit changes the working directorywhere the build process occurs.Before this commit, build process occurred under the sourcetree for both in-tree and out-of-tree build.That&apos;s why we needed to add $(obj) prefix to all generatedfiles in makefiles like follows:  $(obj)u-boot.bin:  $(obj)u-bootHere, $(obj) is empty for in-tree build, whereas it pointsto the output directory for out-of-tree build.And our old build system changes the current working directorywith &quot;make -C &lt;sub-dir&gt;&quot; syntax when descending into thesub-directories.On the other hand, Kbuild uses a different ideato handle out-of-tree build and directory descending.The build process of Kbuild always occurs under the output tree.When &quot;O=dir/to/store/output/files&quot; is given, the build systemchanges the current working directory to that directory andrestarts the make.Kbuild uses &quot;make -f $(srctree)/scripts/Makefile.build obj=&lt;sub-dir&gt;&quot;syntax for descending into sub-directories.(We can write it like &quot;make $(obj)=&lt;sub-dir&gt;&quot; with a shorthand.)This means the current working directory is always the topof the output directory.Signed-off-by: Masahiro Yamada &lt;yamada.m@jp.panasonic.com&gt;Tested-by: Gerhard Sittig &lt;gsi@denx.de&gt;

            List of files:
            /rk3399_rockchip-uboot/board/avionic-design/tec/Makefile</description>
        <pubDate>Tue, 04 Feb 2014 08:24:24 +0000</pubDate>
        <dc:creator>Masahiro Yamada &lt;yamada.m@jp.panasonic.com&gt;</dc:creator>
    </item>
<item>
        <title>f15ea6e1d67782a1626d4a4922b6c20e380085e5 - Merge branch &apos;u-boot/master&apos; into &apos;u-boot-arm/master&apos;</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/board/avionic-design/tec/Makefile#f15ea6e1d67782a1626d4a4922b6c20e380085e5</link>
        <description>Merge branch &apos;u-boot/master&apos; into &apos;u-boot-arm/master&apos;Conflicts:	arch/arm/cpu/armv7/rmobile/Makefile	doc/README.scrapyardNeeded manual fix:	arch/arm/cpu/armv7/omap-common/Makefile	board/compulab/cm_t335/u-boot.lds

            List of files:
            /rk3399_rockchip-uboot/board/avionic-design/tec/Makefile</description>
        <pubDate>Tue, 10 Dec 2013 13:31:56 +0000</pubDate>
        <dc:creator>Albert ARIBAUD &lt;albert.u.boot@aribaud.net&gt;</dc:creator>
    </item>
<item>
        <title>e5c5301f1444ea454d17a368bb5138e0f3a59247 - Makefile: make directories by Makefile.build</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/board/avionic-design/tec/Makefile#e5c5301f1444ea454d17a368bb5138e0f3a59247</link>
        <description>Makefile: make directories by Makefile.buildSigned-off-by: Masahiro Yamada &lt;yamada.m@jp.panasonic.com&gt;

            List of files:
            /rk3399_rockchip-uboot/board/avionic-design/tec/Makefile</description>
        <pubDate>Mon, 11 Nov 2013 05:35:54 +0000</pubDate>
        <dc:creator>Masahiro Yamada &lt;yamada.m@jp.panasonic.com&gt;</dc:creator>
    </item>
<item>
        <title>3bddafaab42af50f2a6ae080c425e157906d9387 - Makefile: convert makefiles to Kbuild style and delete grep switch</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/board/avionic-design/tec/Makefile#3bddafaab42af50f2a6ae080c425e157906d9387</link>
        <description>Makefile: convert makefiles to Kbuild style and delete grep switchWe have converted all makefiles needed to build $(LIBS).Until this commit we used to grep switch so that U-Boot styleand Kbuild style makefiles coexist.But we do not need any more.Goint forward, use always Kbuild style Makefile when addinga new MakefileSigned-off-by: Masahiro Yamada &lt;yamada.m@jp.panasonic.com&gt;

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

            List of files:
            /rk3399_rockchip-uboot/board/avionic-design/tec/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/avionic-design/tec/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/avionic-design/tec/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/board/avionic-design/tec/Makefile#3e4d27b06d7484040355e22eec2cbce7335d6dab</link>
        <description>Merge git://git.denx.de/u-boot

            List of files:
            /rk3399_rockchip-uboot/board/avionic-design/tec/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>6acc7c3cbc05873d62118640cf964e9c9665804c - Merge branch &apos;master&apos; of git://git.denx.de/u-boot-arm</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/board/avionic-design/tec/Makefile#6acc7c3cbc05873d62118640cf964e9c9665804c</link>
        <description>Merge branch &apos;master&apos; of git://git.denx.de/u-boot-arm

            List of files:
            /rk3399_rockchip-uboot/board/avionic-design/tec/Makefile</description>
        <pubDate>Mon, 05 Nov 2012 14:42:00 +0000</pubDate>
        <dc:creator>Tom Rini &lt;trini@ti.com&gt;</dc:creator>
    </item>
<item>
        <title>73286d8729c0a2325911719492218477caa2c58e - tegra: move common features to a common makefile</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/board/avionic-design/tec/Makefile#73286d8729c0a2325911719492218477caa2c58e</link>
        <description>tegra: move common features to a common makefileFor Non-Nvidia boards to include newly added features (like emc clockscaling) it would be necessary to add each feature to their own boardMakefile. This is because currently the top Makefile automaticly includesthese features only for Nvidia boards.This patch adds a simple Makefile include so all new features becomeavailable for non-Nvidia board vendors.Cc: Stephen Warren &lt;swarren@wwwdotorg.org&gt;Cc: Tom Warren &lt;twarren@nvidia.com&gt;Cc: Thierry Reding &lt;thierry.reding@avionic-design.de&gt;Cc: Lucas Stach &lt;dev@lynxeye.de&gt;Signed-off-by: Marc Dietrich &lt;marvin24@gmx.de&gt;Acked-by: Stephen Warren &lt;swarren@nvidia.com&gt;Acked-by: Thierry Reding &lt;thierry.reding@avionic-design.de&gt;Signed-off-by: Tom Warren &lt;twarren@nvidia.com&gt;

            List of files:
            /rk3399_rockchip-uboot/board/avionic-design/tec/Makefile</description>
        <pubDate>Wed, 03 Oct 2012 04:26:28 +0000</pubDate>
        <dc:creator>Marc Dietrich &lt;marvin24@gmx.de&gt;</dc:creator>
    </item>
<item>
        <title>e3e5dac412b1b4c75050705be039c5c3bef877b6 - tegra20: make board mkdir commands unconditional</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/board/avionic-design/tec/Makefile#e3e5dac412b1b4c75050705be039c5c3bef877b6</link>
        <description>tegra20: make board mkdir commands unconditionalChange the mkdir commands for the object directories to beunconditional.  This fixes an issue when building for SPL whereSRCTREE and OBJTREE are the same, but $(obj) is under SPLTREE.Signed-off-by: Allen Martin &lt;amartin@nvidia.com&gt;Acked-by: Stephen Warren &lt;swarren@wwwdotorg.org&gt;Tested-by: Thierry Reding &lt;thierry.reding@avionic-design.de&gt;Signed-off-by: Tom Warren &lt;twarren@nvidia.com&gt;

            List of files:
            /rk3399_rockchip-uboot/board/avionic-design/tec/Makefile</description>
        <pubDate>Fri, 31 Aug 2012 08:30:04 +0000</pubDate>
        <dc:creator>Allen Martin &lt;amartin@nvidia.com&gt;</dc:creator>
    </item>
<item>
        <title>895f3e0542015b347298c8b501e63d5f32002c04 - Merge branch &apos;master&apos; of git://git.denx.de/u-boot-arm</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/board/avionic-design/tec/Makefile#895f3e0542015b347298c8b501e63d5f32002c04</link>
        <description>Merge branch &apos;master&apos; of git://git.denx.de/u-boot-arm* &apos;master&apos; of git://git.denx.de/u-boot-arm:  tegra: define fdt_load/fdt_high variables  tegra: enable bootz command  tegra: usb: Fix device enumeration problem of USB1  tegra: trimslice: set up serial flash pinmux  tegra: add pin_mux_spi() board initialization function  tegra: add GMC/GMD funcmux entry for SFLASH  tegra: bootcmd: start USB only when needed  tegra: bootcmd enhancements  tegra: add enterrcm command  tegra: enable CONFIG_ENV_VARS_UBOOT_CONFIG  Add env vars describing U-Boot target board  tegra: usb: fix wrong error check  tegra: add ULPI on USB2 funcmux entry  tegra: fix leftover CONFIG_TEGRA2_MMC &amp; _SPI build switches  tegra: Add Tamonten Evaluation Carrier support  tegra: Use SD write-protect GPIO on Tamonten  tegra: Implement gpio_early_init() on Tamonten  tegra: Allow boards to perform early GPIO setup  tegra: plutux: Add device tree support  tegra: medcom: Add device tree support  tegra: Rework Tamonten support  beagle: add eeprom expansion board info for bct brettl4Signed-off-by: Wolfgang Denk &lt;wd@denx.de&gt;

            List of files:
            /rk3399_rockchip-uboot/board/avionic-design/tec/Makefile</description>
        <pubDate>Tue, 10 Jul 2012 06:54:41 +0000</pubDate>
        <dc:creator>Wolfgang Denk &lt;wd@denx.de&gt;</dc:creator>
    </item>
<item>
        <title>d70575b6d0d53492c0920b9a3d4479964909dc9b - tegra: Add Tamonten Evaluation Carrier support</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/board/avionic-design/tec/Makefile#d70575b6d0d53492c0920b9a3d4479964909dc9b</link>
        <description>tegra: Add Tamonten Evaluation Carrier supportThe Tamonten Evaluation Carrier is an evaluation board for the Tamontenprocessor board. More information is available here:	http://www.avionic-design.de/en/products/nvidia-tegra-tamonten-system-en/nvidia-tegra-tamonten-evboard-en.htmlSigned-off-by: Thierry Reding &lt;thierry.reding@avionic-design.de&gt;Acked-by: Stephen Warren &lt;swarren@wwwdotorg.org&gt;Signed-off-by: Tom Warren &lt;twarren@nvidia.com&gt;

            List of files:
            /rk3399_rockchip-uboot/board/avionic-design/tec/Makefile</description>
        <pubDate>Mon, 04 Jun 2012 20:02:30 +0000</pubDate>
        <dc:creator>Thierry Reding &lt;thierry.reding@avionic-design.de&gt;</dc:creator>
    </item>
</channel>
</rss>
