<?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-ng/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-ng/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-ng/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-ng/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-ng/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-ng/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-ng/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-ng/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-ng/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-ng/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>17998eff9021b7b579c0387e934d8c52603fe247 - 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-ng/Makefile#17998eff9021b7b579c0387e934d8c52603fe247</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-ng/Makefile</description>
        <pubDate>Tue, 11 Feb 2014 11:55:32 +0000</pubDate>
        <dc:creator>Stefano Babic &lt;sbabic@denx.de&gt;</dc:creator>
    </item>
<item>
        <title>c4928c34b0de43e507f6e7287faff1bf02d8427c - board: tec-ng: Do not make directories in a board Makefile</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/board/avionic-design/tec-ng/Makefile#c4928c34b0de43e507f6e7287faff1bf02d8427c</link>
        <description>board: tec-ng: Do not make directories in a board MakefileCommit e5c5301f refactored the build system not to makedirectories in board makefiles.But commit 8f380381 create directories again inboard/avionic-design/tec-ng/Makefile.Signed-off-by: Masahiro Yamada &lt;yamada.m@jp.panasonic.com&gt;Cc: Alban Bedel &lt;alban.bedel@avionic-design.de&gt;

            List of files:
            /rk3399_rockchip-uboot/board/avionic-design/tec-ng/Makefile</description>
        <pubDate>Tue, 14 Jan 2014 01:55:02 +0000</pubDate>
        <dc:creator>Masahiro Yamada &lt;yamada.m@jp.panasonic.com&gt;</dc:creator>
    </item>
<item>
        <title>7f673c99c2d8d1aa21996c5b914f06d784b080ca - 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-ng/Makefile#7f673c99c2d8d1aa21996c5b914f06d784b080ca</link>
        <description>Merge branch &apos;master&apos; of git://git.denx.de/u-boot-armBringing in the MMC tree means that CONFIG_BOUNCE_BUFFER needed to beadded to include/configs/exynos5-dt.h now.Conflicts:	include/configs/exynos5250-dt.hSigned-off-by: Tom Rini &lt;trini@ti.com&gt;

            List of files:
            /rk3399_rockchip-uboot/board/avionic-design/tec-ng/Makefile</description>
        <pubDate>Fri, 10 Jan 2014 15:56:00 +0000</pubDate>
        <dc:creator>Tom Rini &lt;trini@ti.com&gt;</dc:creator>
    </item>
<item>
        <title>fe7f0810ddf41939bbdd22fe39b0b80fdfe0636b - Merge branch &apos;u-boot-tegra/master&apos; into &apos;u-boot-arm/master&apos;</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/board/avionic-design/tec-ng/Makefile#fe7f0810ddf41939bbdd22fe39b0b80fdfe0636b</link>
        <description>Merge branch &apos;u-boot-tegra/master&apos; into &apos;u-boot-arm/master&apos;

            List of files:
            /rk3399_rockchip-uboot/board/avionic-design/tec-ng/Makefile</description>
        <pubDate>Wed, 18 Dec 2013 20:45:34 +0000</pubDate>
        <dc:creator>Albert ARIBAUD &lt;albert.u.boot@aribaud.net&gt;</dc:creator>
    </item>
<item>
        <title>8f38038193752d3719f39ccd562f7ffdf83989d5 - ARM: tegra: Add the Tamonten&#8482; NG Evaluation Carrier board</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/board/avionic-design/tec-ng/Makefile#8f38038193752d3719f39ccd562f7ffdf83989d5</link>
        <description>ARM: tegra: Add the Tamonten&#8482; NG Evaluation Carrier boardAdd support for the new Tamonten&#8482; NG platform from Avionic Design.Currently only I2C, MMC, USB and ethernet have been tested.Signed-off-by: Alban Bedel &lt;alban.bedel@avionic-design.de&gt;Reviewed-by: Stephen Warren &lt;swarren@nvidia.com&gt;Signed-off-by: Tom Warren &lt;twarren@nvidia.com&gt;

            List of files:
            /rk3399_rockchip-uboot/board/avionic-design/tec-ng/Makefile</description>
        <pubDate>Thu, 14 Nov 2013 09:58:30 +0000</pubDate>
        <dc:creator>Alban Bedel &lt;alban.bedel@avionic-design.de&gt;</dc:creator>
    </item>
</channel>
</rss>
