<?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/compulab/trimslice/Makefile#9597494ebfb60418e8a0e7565cca2b7d25512bf5</link>
        <description>Merge branch &apos;master&apos; of git://git.denx.de/u-boot-tegra

            List of files:
            /rk3399_rockchip-uboot/board/compulab/trimslice/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/compulab/trimslice/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/compulab/trimslice/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/compulab/trimslice/Makefile#1ad6364eeb4f578e423081d1748e8a3fdf1ab01d</link>
        <description>Merge branch &apos;master&apos; of git://git.denx.de/u-boot-arm

            List of files:
            /rk3399_rockchip-uboot/board/compulab/trimslice/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/compulab/trimslice/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/compulab/trimslice/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/compulab/trimslice/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/compulab/trimslice/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/compulab/trimslice/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/compulab/trimslice/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/compulab/trimslice/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/compulab/trimslice/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/compulab/trimslice/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/compulab/trimslice/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/compulab/trimslice/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/compulab/trimslice/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/compulab/trimslice/Makefile#8b485ba12b0defa0c4ed3559789250238f8331a8</link>
        <description>Merge branch &apos;u-boot/master&apos; into u-boot-arm/master

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

            List of files:
            /rk3399_rockchip-uboot/board/compulab/trimslice/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/compulab/trimslice/Makefile#6acc7c3cbc05873d62118640cf964e9c9665804c</link>
        <description>Merge branch &apos;master&apos; of git://git.denx.de/u-boot-arm

            List of files:
            /rk3399_rockchip-uboot/board/compulab/trimslice/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/compulab/trimslice/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/compulab/trimslice/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/compulab/trimslice/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/compulab/trimslice/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>50cd93b25033764dcda9bb47aa68be778f94d36e - 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/compulab/trimslice/Makefile#50cd93b25033764dcda9bb47aa68be778f94d36e</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: (212 commits)  ARM: cache: Move the cp15 CR register read before flushing the cache.  ARM: introduce arch_early_init_r()  PXA: Enable CONFIG_PREBOOT on zipitz2  ARM: mx28: Remove CONFIG_ARCH_CPU_INIT  No need to define CONFIG_ARCH_CPU_INIT.  add new board vl_ma2sc  MTD: SPEAr SMI: Add write support for length &lt; 4 bytes  i2c: designware_i2c.c: Add support for the &quot;i2c probe&quot; command  rtc/m41t62: Add support for M41T82 with HT (Halt Update)  SPL: ARM: spear: Add SPL support for SPEAr600 platform  Makefile: Add u-boot.spr build target (SPEAr)  SPL: ARM: spear: Remove some objects from SPL build  SPL: lib/Makefile: Add crc32.c to SPL build  SPL: common/Makefile: Add image.c to SPL build  arm: Don&apos;t use printf() in SPL builds  GPIO: Add SPEAr GPIO driver  net: Multiple updates/enhancements to designware.c  cleanup/SPEAr: Define configuration flags more elegantly  cleanup/SPEAr: Remove unnecessary parenthesis  SPEAr: Correct SoC ID offset in misc configuration space  SPEAr: explicitly select clk src for UART  SPEAr: Remove CONFIG_MTD_NAND_VERIFY_WRITE to speed up NAND access  SPEAr: Enable ONFI nand flash detection for spear3xx and 6xx and evb  SPEAr: Enable CONFIG_SYS_FLASH_EMPTY_INFO macro  SPEAr: Correct the definition of CONFIG_SYS_MONITOR_BASE  SPEAr: Enable CONFIG_SYS_FLASH_PROTECTION  SPEAr: Enable dcache for fast file transfer  SPEAr: Enable autoneg for ethernet  SPEAr: Enable udc and usb-console support only for usbtty configuration  SPEAr: Enable usb device high speed support  SPEAr: Initialize SNOR in early_board_init_f  SPEAr: Change the default environment variables  SPEAr: Remove unused flag (CONFIG_SYS_HZ_CLOCK)  SPEAr: Add configuration options for spear3xx and spear6xx boards  SPEAr: Add basic arch related support for SPEAr SoCs  SPEAr: Add interface information in initialization  SPEAr: Add macb driver support for spear310 and spear320  SPEAr: Configure network support for spear SoCs  SPEAr: Place ethaddr write and read within CONFIG_CMD_NET  SPEAr: Eliminate dependency on Xloader table  SPEAr: Fix ARM relocation support  st_smi: Fixed page size for Winbond W25Q128FV flash  st_smi: Change timeout loop implementation  st_smi: Fix bug in flash_print_info()  st_smi: Change the flash probing method  st_smi: Removed no needed dependency on ST_M25Pxx_ID  st_smi: Fix smi read status  st_smi: Move status register read before modifying ctrl register  st_smi: Read status until timeout happens  st_smi: Enhance the error handling  st_smi: Change SMI timeout values  st_smi: Return error in case TFF is not set  st_smi: Add support for SPEAr SMI driver  mtd/NAND: Remove obsolete SPEAr specific NAND drivers  SPEAr: Configure FSMC driver for NAND interface  mtd/NAND: Add FSMC driver support  arm/km: remove calls to kw_gpio_* in board_early_init_f  arm/km: add implementation for read_dip_switch  arm/km: support the 2 PCIe fpga resets  arm/km: skip FPGA config when already configured  arm/km: redefine piggy 4 reg names to avoid conflicts  arm/km: cleanup km_kirkwood boards  arm/km: enable BOCO2 FPGA download support  arm/km: remove portl2.h and use km_kirkwood instead  arm/km: convert mgcoge3un target to km_kirkwood  arm/km: add kmcoge5un board support  arm/km: add kmnusa board support  arm: bugfix: save_boot_params_default accesses uninitalized stack when -O0  cm-t35: fix incorrect NAND_ECC layout selection  ARM: OMAP4/5: Do not configure non essential pads, clocks, dplls.  ARM: OMAP4/5: Move USB pads to essential list.  ARM: OMAP4/5: Move USB clocks to essential group.  ARM: OMAP4/5: Move gpmc clocks to essential group.  ARM: OMAP4+: Move external phy initialisations to arch specific place.  omap4: Use a smaller M,N couple for IVA DPLL  da850/omap-l138: Enable auto negotiation in RMII mode  omap: am33xx: accomodate input clocks other than 24 Mhz  omap: emif: fix bug in manufacturer code test  omap: emif: deal with rams that return duplicate mr data on all byte lanes  OMAP4+: Force DDR in self-refresh after warm reset  OMAP4+: Handle sdram init after warm reset  ARM: OMAP3+: Detect reset type  arm: bugfix: Move vector table before jumping relocated code  Kirkwood: Add support for Ka-Ro TK71  arm/km: use spi claim bus to switch between SPI and NAND  arm/kirkwood: protect the ENV_SPI #defines  ARM: don&apos;t probe PHY address for LaCie boards  lacie_kw: fix CONFIG_SYS_KWD_CONFIG for inetspace_v2  lacie_kw: fix SDRAM banks number for net2big_v2  Kirkwood: add lschlv2 and lsxhl board support  net: add helper to generate random mac address  net: use common rand()/srand() functions  lib: add rand() function  kwboot: boot kirkwood SoCs over a serial link  kw_spi: add weak functions board_spi_claim/release_bus  kw_spi: support spi_claim/release_bus functions  kw_spi: backup and reset the MPP of the chosen CS pin  kirkwood: fix calls to kirkwood_mpp_conf  kirkwood: add save functionality kirkwood_mpp_conf function  km_arm: use filesize for erase in update command  arm/km: enable mii cmd  arm/km: remove CONFIG_RESET_PHY_R  arm/km: change maintainer for mgcoge3un  arm/km: fix wrong comment in SDRAM config for mgcoge3un  arm/km: use ARRAY_SIZE macro  arm/km: rename CONFIG option CONFIG_KM_DEF_ENV_UPDATE  arm/km: add piggy mac adress offset for mgcoge3un  arm/km: add board type to boards.cfg  AT91SAM9*: Change kernel address in dataflash to match u-boot&apos;s size  ATMEL/PIO: Enable new feature of PIO on Atmel device  ehci-atmel: fix compiler warning  AT91: at91sam9m10g45ek : Enable EHCI instead OHCI  Atmel : usb : add EHCI driver for Atmel SoC  Fix: AT91SAM9263 nor flash usage  Fix: broken boot message at serial line on AT91SAM9263-EK board  i.MX6 USDHC: Use the ESDHC clock  mx28evk: Fix boot by adjusting HW_DRAM_CTL29 register  i.MX28: Add function to adjust memory parameters  mx28evk: Fix PSWITCH key position  mx53smd: Remove CONFIG_SYS_I2C_SLAVE definition  mx53loco: Remove CONFIG_SYS_I2C_SLAVE definition  mx53evk: Remove CONFIG_SYS_I2C_SLAVE definition  mx53ard: Remove CONFIG_SYS_I2C_SLAVE definition  mx35pdk: Remove CONFIG_SYS_I2C_SLAVE definition  imx31_phycore: Remove CONFIG_SYS_I2C_SLAVE definition  mx53ard: Remove unused CONFIG_MII_GASKET  mx6: Avoid writing to read-only bits in imximage.cfg  m28evk: use same notation to alloc the 128kB stack  ...Signed-off-by: Wolfgang Denk &lt;wd@denx.de&gt;

            List of files:
            /rk3399_rockchip-uboot/board/compulab/trimslice/Makefile</description>
        <pubDate>Sun, 08 Jul 2012 17:26:33 +0000</pubDate>
        <dc:creator>Wolfgang Denk &lt;wd@denx.de&gt;</dc:creator>
    </item>
<item>
        <title>39e37118398158d98f0e9b926d69af289ae7e7b8 - tegra: Compulab TrimSlice board support</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/board/compulab/trimslice/Makefile#39e37118398158d98f0e9b926d69af289ae7e7b8</link>
        <description>tegra: Compulab TrimSlice board supportSigned-off-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/compulab/trimslice/Makefile</description>
        <pubDate>Wed, 16 May 2012 13:54:07 +0000</pubDate>
        <dc:creator>Stephen Warren &lt;swarren@nvidia.com&gt;</dc:creator>
    </item>
</channel>
</rss>
