Re: [U-Boot] [PATCHv2 1/3] arm: socfpga: add reset manager defines for Arria10

2016-02-05 Thread Marek Vasut
On Thursday, February 04, 2016 at 09:59:28 PM, Dinh Nguyen wrote: > On 02/04/2016 05:46 AM, Marek Vasut wrote: > > A10 branch is now u-boot-socfpga/01-arria10 . > > Thanks for carrying this. > > > What is the current status of Arria10 please ? > > I haven't had time to work on Arria10 in the las

[U-Boot] [PULL] Please pull u-boot-nios/master

2016-02-05 Thread Thomas Chou
The following changes since commit 94985cc9d3d7ed991ca8b2627d5894df5ea68f49: Merge branch 'master' of git://git.denx.de/u-boot-usb (2016-02-04 06:56:23 -0500) are available in the git repository at: git://git.denx.de/u-boot-nios.git master for you to fetch changes up to e4f348ba6f070789e65

Re: [U-Boot] [PATCH] nios2: set up the debug UART early

2016-02-05 Thread Thomas Chou
On 2015年12月30日 20:32, Thomas Chou wrote: Set up the debug UART early if enabled, so that it is ready to use. Signed-off-by: Thomas Chou --- arch/nios2/cpu/start.S | 7 +++ 1 file changed, 7 insertions(+) Applied to u-boot-nios. ___ U-Boot

[U-Boot] [PATCH 5/5] s3c24xx: serial: Remove dead code

2016-02-05 Thread David Müller
Signed-off-by: David Müller --- drivers/serial/serial_s3c24x0.c | 6 -- 1 file changed, 6 deletions(-) diff --git a/drivers/serial/serial_s3c24x0.c b/drivers/serial/serial_s3c24x0.c index fb895fd..d4e7df2 100644 --- a/drivers/serial/serial_s3c24x0.c +++ b/drivers/serial/serial_s3c24x0.c @@ -

[U-Boot] [PATCH 1/5] Remove unused CONFIG_MODEM_SUPPORT option and associated dead code.

2016-02-05 Thread David Müller
Signed-off-by: David Müller --- arch/powerpc/cpu/mpc8xx/serial.c | 22 - common/Makefile | 1 - common/board_f.c | 3 -- common/main.c | 14 -- common/modem.c| 100 --

[U-Boot] [PATCH 3/5] Remove unused CONFIG_HWFLOW option and associated dead code.

2016-02-05 Thread David Müller
Signed-off-by: David Müller --- drivers/serial/serial_imx.c | 7 --- drivers/serial/serial_s3c24x0.c | 35 --- 2 files changed, 42 deletions(-) diff --git a/drivers/serial/serial_imx.c b/drivers/serial/serial_imx.c index d43a5fe..8d9166b 100644 --- a/driv

[U-Boot] [PATCH 4/5] doc: Remove any reference to CONFIG_MODEM_SUPPORT, CONFIG_CMD_HWFLOW, CONFIG_HWFLOW and friends from the documentation.

2016-02-05 Thread David Müller
Signed-off-by: David Müller --- README | 28 -- doc/README.Modem | 72 2 files changed, 100 deletions(-) delete mode 100644 doc/README.Modem diff --git a/README b/README index c7c9e0a..9a5be6c 100644 --- a/RE

[U-Boot] [PATCH 2/5] Remove unused CONFIG_CMD_HWFLOW option and associated dead code.

2016-02-05 Thread David Müller
Signed-off-by: David Müller --- cmd/load.c | 30 -- include/config_cmd_all.h | 1 - 2 files changed, 31 deletions(-) diff --git a/cmd/load.c b/cmd/load.c index 0aa7937..65557e4 100644 --- a/cmd/load.c +++ b/cmd/load.c @@ -1081,33 +1081,3 @@ U_BOOT_CMD(

[U-Boot] [PATCH 0/5] s3c24xx serial driver cleanup patches

2016-02-05 Thread David Müller
This is a serie of cleanup patches: Patch 1-3 remove 3 unused config options and the related dead code from several drivers and U-Boot main code. Patch 4 removes any reference for the 3 unused config options from the documentation. Patch 5 removes another pi

[U-Boot] [PATCH v2 5/5] x86: Add Intel Cougar Canyon 2 board

2016-02-05 Thread Bin Meng
This adds basic support to Intel Cougar Canyon 2 board, a board based on Chief River platform with an Ivy Bridge processor and a Panther Point chipset. Signed-off-by: Bin Meng Acked-by: Simon Glass --- Changes in v2: - Change include order - go after the normal includes - Use PCH uclass drive

[U-Boot] [PATCH v2 3/5] x86: fsp: Make sure HOB list is not overwritten by U-Boot

2016-02-05 Thread Bin Meng
Intel IvyBridge FSP seems to be buggy that it does not report memory used by FSP itself as reserved in the resource descriptor HOB. The FSP specification does not describe how resource descriptor HOBs are generated by the FSP to describe what memory regions. It looks newer FSPs like Queensbay and B

[U-Boot] [PATCH v2 4/5] x86: ivybridge: bd82x6x: Support FSP enabled configuration

2016-02-05 Thread Bin Meng
Wrap initialization codes with #ifndef CONFIG_HAVE_FSP #endif, and enable the build for both FSP and non-FSP configurations. Signed-off-by: Bin Meng --- Changes in v2: None arch/x86/cpu/ivybridge/Makefile | 2 +- arch/x86/cpu/ivybridge/bd82x6x.c | 4 2 files changed, 5 insertions(+), 1 d

[U-Boot] [PATCH v2 2/5] superio: Add SMSC SIO1007 driver

2016-02-05 Thread Bin Meng
The SMSC SIO1007 superio chipset integrates two ns16550 compatible serial ports for legacy applications, 16 GPIO pins and some other functionalities like power management. This adds a simple driver to enable serial port and handle GPIO. Signed-off-by: Bin Meng --- Changes in v2: None drivers/

[U-Boot] [PATCH v2 0/5] x86: ivybridge: Add Intel FSP support

2016-02-05 Thread Bin Meng
This series adds Intel FSP support to IvyBridge processor and Panther Point chipset (aka Chief River platform), and is validated on Intel Cougar Canyon 2 board. This only adds basic features like serial, keyboard, RTC, timer, SPI, GPIO, PCI, SATA, USB. Other features will be enabled in future patc

[U-Boot] [PATCH v2 1/5] x86: ivybridge: Add FSP support

2016-02-05 Thread Bin Meng
IvyBridge FSP package is built with a base address at 0xfff8, and does not use UPD data region. This adds basic FSP support. Signed-off-by: Bin Meng Acked-by: Simon Glass Tested on link (ivybridge non-FSP) Tested-by: Simon Glass --- Changes in v2: - Drop patches which were already applied

[U-Boot] [PATCH 2/2] ARM: rpi: set fdt_high in the default environment

2016-02-05 Thread Stephen Warren
The ARM Linux kernel requires the DT to be in memory accessible early during the boot process. This always happens naturally on the RPi 1, since the maximum memory size of 512MiB, and additionally some of that is reserved for use by the GPU. The RPi 2 has 1GiB of RAM (minus some GPU usage), and so

[U-Boot] [PATCH 1/2] ARM: rpi: update memory layout env. var. documentation

2016-02-05 Thread Stephen Warren
Update rpi-common.h's documentation that describes the rationale for choosing various addresses for standardized variables used by boot scripts. This comment was correct when written, but not updated when some of the values were changed. Fixes: 14006a567105 ("rpi: set fdt_addr_r to 0x0100 to m

Re: [U-Boot] [PATCH 01/10] fdtdec: Add compatible string for Intel IvyBridge FSP

2016-02-05 Thread Bin Meng
Hi Simon, On Mon, Dec 21, 2015 at 10:33 AM, Bin Meng wrote: > Hi Simon, > > On Sat, Dec 19, 2015 at 10:51 AM, Simon Glass wrote: >> Hi Bin, >> >> On 11 December 2015 at 03:55, Bin Meng wrote: >>> Use "intel,ivybridge-fsp" for Intel IvyBridge FSP compatible string. >>> >>> Signed-off-by: Bin Men

Re: [U-Boot] [PATCH] serial: pl01x: Add support for devices with the rate pre-configured.

2016-02-05 Thread Stephen Warren
On 02/05/2016 02:43 PM, Eric Anholt wrote: > For Raspberry Pi, we had the input clock rate to the pl011 fixed in > the rpi.c file, but it may be changed by firmware due to user changes > to config.txt. Since the firmware always sets up the uart (default > 115200 output unless the user changes it),

Re: [U-Boot] [PATCH] x86: Clean up SPI flash drivers in defconfig

2016-02-05 Thread Bin Meng
Hi Jagan, Simon, On Thu, Jan 21, 2016 at 1:53 PM, Bin Meng wrote: > Hi, > > On Tue, Dec 15, 2015 at 2:27 PM, Jagan Teki wrote: >> >> On 15 December 2015 at 11:48, Bin Meng wrote: >> > Hi Jagan, >> > >> > On Tue, Dec 15, 2015 at 2:15 PM, Jagan Teki wrote: >> >> Hi Bin, >> >> >> >> >> >> On Tues

Re: [U-Boot] [PATCH] openrisc: updating build tools naming convention

2016-02-05 Thread Bin Meng
Hi Guillaume, On Fri, Feb 5, 2016 at 9:04 PM, Guillaume REMBERT wrote: > Hi Bin, > > Please use following repository with all needed software: linux / gcc / ... > https://github.com/openrisc Is that https://github.com/openrisc/or1k-gcc you are using? > > The current toolchain is called or1k-too

Re: [U-Boot] rpi: set ethaddr as well

2016-02-05 Thread Stephen Warren
On 02/03/2016 08:08 AM, Lubomir Rintel wrote: > Let's set "ethaddr" when we get the ethernet address too, so that > fdt_fixup_ethernet() sets the address in the device tree and the Linux > driver can pick it up. You need to Cc the maintainer who will apply this (Tom Rini). This seems OK, but ...

Re: [U-Boot] Maintainers' email address not valid

2016-02-05 Thread Bin Meng
On Sat, Feb 6, 2016 at 11:30 AM, Bin Meng wrote: > Hi Tom, > > The following U-Boot maintainers' email address seem no longer valid. > > vipin.ku...@st.com > martin.kra...@tq-systems.de > kim.phill...@freescale.com > Ah, one more: fgret...@spaceteq.co.za > I believe we should remove them and up

[U-Boot] Maintainers' email address not valid

2016-02-05 Thread Bin Meng
Hi Tom, The following U-Boot maintainers' email address seem no longer valid. vipin.ku...@st.com martin.kra...@tq-systems.de kim.phill...@freescale.com I believe we should remove them and update the MAINTAINTERS. Regards, Bin ___ U-Boot mailing list U

[U-Boot] [PATCH V2 1/2] test/py: fix off-by-one error in spawn matching code

2016-02-05 Thread Stephen Warren
From: Stephen Warren A regex match object's .end() value is already the index after the match, not the index of the last character in the match, so there's no need to add 1 to point past the match. Signed-off-by: Stephen Warren --- v2: New patch. --- test/py/u_boot_spawn.py | 2 +- 1 file chan

[U-Boot] [PATCH V2 2/2] test/py: capture the entire U-Boot version at boot

2016-02-05 Thread Stephen Warren
From: Stephen Warren The existing regex simply ensures that the captured version string doesn't go past the end of a line. We really want to grab as much as possible. Do this by explicitly including a ) character at the end of the regex to match the last character of the version test. Signed-off

Re: [U-Boot] [PATCH] test/py: capture the entire U-Boot version at boot

2016-02-05 Thread Stephen Warren
On 02/05/2016 05:11 PM, Stephen Warren wrote: From: Stephen Warren The existing regex simply ensures that the captured version string doesn't go past the end of a line. We really want to grab as much as possible. Do this by explicitly including a ) character at the end of the regex to match the

[U-Boot] [PATCH] test/py: capture the entire U-Boot version at boot

2016-02-05 Thread Stephen Warren
From: Stephen Warren The existing regex simply ensures that the captured version string doesn't go past the end of a line. We really want to grab as much as possible. Do this by explicitly including a ) character at the end of the regex to match the last character of the version test. Signed-off

Re: [U-Boot] [PATCH] board_r: fix a typo in comment block

2016-02-05 Thread Simon Glass
On 5 February 2016 at 05:03, Bin Meng wrote: > On Fri, Feb 5, 2016 at 7:49 PM, Masahiro Yamada > wrote: >> Signed-off-by: Masahiro Yamada >> --- >> >> common/board_r.c | 2 +- >> 1 file changed, 1 insertion(+), 1 deletion(-) >> > > Reviewed-by: Bin Meng Reviewed-by: Simon Glass _

Re: [U-Boot] [PATCH v3 1/3] kbuild: remove unneeded ifdef conditionals around build rules

2016-02-05 Thread Simon Glass
On 5 February 2016 at 01:55, Masahiro Yamada wrote: > These rules are only used for SOCFPGA, SUNXI, but no need to hide > them from other SoCs. > > Signed-off-by: Masahiro Yamada > --- > > scripts/Makefile.spl | 4 > 1 file changed, 4 deletions(-) Reviewed-by: Simon Glass

Re: [U-Boot] [PATCH v3 2/3] kbuild: add missing FORCE where $(call if_changed, ) is used

2016-02-05 Thread Simon Glass
On 5 February 2016 at 01:55, Masahiro Yamada wrote: > FORCE is needed for $(call if_changed,...) to be evaluated every time. > Otherwise, the command is not executed when the command line has > changed but any prerequisite has not been updated. > > Signed-off-by: Masahiro Yamada > --- > > Changes

Re: [U-Boot] [PATCH v3 3/3] kbuild: fix build rule of u-boot-spl.dtb

2016-02-05 Thread Simon Glass
On 5 February 2016 at 01:55, Masahiro Yamada wrote: > The build command of u-boot-spl.dtb is not constant, but dependent > on CONFIG_OF_SPL_REMOVE_PROPS. Use $(call if_changed,...) so that > the change of CONFIG_OF_SPL_REMOVE_PROPS is detected. > > Also, add tools/fdtgrep to the dependency to mak

Re: [U-Boot] CONFIG_MODEM_SUPPORT / CONFIG_HWFLOW still in use?

2016-02-05 Thread Wolfgang Denk
Dear David, In message <56b48085.2050...@elsoft.ch> you wrote: > > While trying to convert the serial_s3c24x0.c driver to DM, I noticed > that no offical U-Boot configuration seems to be using the > CONFIG_MODEM_SUPPORT or CONFIG_HWFLOW option. > > Do you know if these two options are still in u

Re: [U-Boot] [PATCH] imx: imx7 Support for Manufacturing Protection

2016-02-05 Thread Fabio Estevam
On Wed, Feb 3, 2016 at 8:56 AM, Ulises Cardenas wrote: > +/** > +* generate_mppubk() - Generates a Public for Manufacturing Protection > +* > +* Returns zero on success,and negative on error. > +*/ > +static int genenerate_mppubk(void) > +{ > + int ret = 0; > + > + ret = gen_mppubk();

[U-Boot] [PATCH v3] arm: use common instructions applicable to armv7m & other arm archs

2016-02-05 Thread Vikas Manocha
This patch cleans the code by using instructions allowed for armv7m as well as other Arm archs. Signed-off-by: Vikas Manocha Reviewed-by: Simon Glass Reviewed-by: Heiko Schocher --- Changes in v3: moved the comment to right location. Changes in v2: reword message commit. Removed info regarding

Re: [U-Boot] [PATCH v2] arm: use common instructions applicable to armv7m & other arm archs

2016-02-05 Thread Vikas MANOCHA
Thanks Heiko, > -Original Message- > From: Heiko Schocher [mailto:h...@denx.de] > Sent: Thursday, February 04, 2016 9:39 PM > To: Vikas MANOCHA > Cc: albert.u.b...@aribaud.net; Simon Glass; Przemyslaw Marczak; Heiko > Schocher; re...@wp.pl; open list > Subject: Re: [PATCH v2] arm: use comm

Re: [U-Boot] [PATCH] armv8/ls2080ardb: Enable VID support

2016-02-05 Thread Harninder Rai
> > > > > #include > > > > > #ifdef CONFIG_LS1043A > > Also isn't it good to use CONFIG_FSL_LSCH2 instead of CONFIG_LS1043A? I agree. Let me check. But that would probably be in a separate patch. Is that correct? ___ U-Boot mailing list U-Boot@lists.

Re: [U-Boot] [PATCH] armv8/ls2080ardb: Enable VID support

2016-02-05 Thread Calvin Johnson
> -Original Message- > From: U-Boot [mailto:u-boot-boun...@lists.denx.de] On Behalf Of Prabhakar > Kushwaha > Sent: Friday, February 05, 2016 12:34 PM > To: york sun ; Harninder Rai ; > u-boot@lists.denx.de > Subject: Re: [U-Boot] [PATCH] armv8/ls2080ardb: Enable VID support > > > -Ori

Re: [U-Boot] CONFIG_MODEM_SUPPORT / CONFIG_HWFLOW still in use?

2016-02-05 Thread Tom Rini
On Fri, Feb 05, 2016 at 11:59:17AM +0100, David Müller (ELSOFT AG) wrote: > Hello > > While trying to convert the serial_s3c24x0.c driver to DM, I noticed > that no offical U-Boot configuration seems to be using the > CONFIG_MODEM_SUPPORT or CONFIG_HWFLOW option. > > Do you know if these two opt

Re: [U-Boot] [PATCH v2 1/3] imx: mx6quq7: fix USDHC4 declaration

2016-02-05 Thread Boris Brezillon
On Fri, 5 Feb 2016 16:19:31 +0100 Julien Corjon wrote: > USDHC2 does not exist on mx6quq7 board, as USDHC4 was already been > declared this is probably a typo. > > Signed-off-by: Julien Corjon For the whole series: Acked-by: Boris Brezillon Thanks, Boris > --- > v1 -> v2 > - Split patc

[U-Boot] [PATCH v2 1/3] imx: mx6quq7: fix USDHC4 declaration

2016-02-05 Thread Julien Corjon
USDHC2 does not exist on mx6quq7 board, as USDHC4 was already been declared this is probably a typo. Signed-off-by: Julien Corjon --- v1 -> v2 - Split patch (suggested by Boris) - Replace spaces with tab (suggested by Boris) board/seco/mx6quq7/mx6quq7.c | 2 +- 1 file changed, 1 insertion(+

[U-Boot] [PATCH v2 2/3] imx: mx6quq7: specify max_bus_witdh directly in usdhc_cfg

2016-02-05 Thread Julien Corjon
Specify max_bus_width directly in usdhc_cfg static definition instead of tweaking it in the board_mmc_init() function. Signed-off-by: Julien Corjon --- v1 -> v2 - Split patch (suggested by Boris) - Replace spaces with tab (suggested by Boris) board/seco/mx6quq7/mx6quq7.c | 6 ++ 1 file

[U-Boot] [PATCH v2 3/3] imx: mx6quq7: add sd card detection

2016-02-05 Thread Julien Corjon
Add board_mmc_getcd function and declare CD_GPIO for SDCard. Signed-off-by: Julien Corjon --- v1 -> v2 - Split patch (suggested by Boris) - Replace spaces with tab (suggested by Boris) board/seco/mx6quq7/mx6quq7.c | 19 +++ 1 file changed, 19 insertions(+) diff --git a/boar

Re: [U-Boot] [PATCH] imx: mx6quq7: add sd card detection

2016-02-05 Thread Boris Brezillon
Hi Julien, On Fri, 5 Feb 2016 13:41:29 +0100 Julien Corjon wrote: > Add board_mmc_getcd function and declare CD_GPIO for > SDCard. This looks good to me, but can you split the changes in 3 different patches: 1/ remove USDHC2 2/ specify max_bus_width directly in usdhc_cfg static definition i

Re: [U-Boot] [PATCH] openrisc: updating build tools naming convention

2016-02-05 Thread Guillaume REMBERT
Hi Bin, Please use following repository with all needed software: linux / gcc / ... https://github.com/openrisc The current toolchain is called or1k-toolchain (or32-toolchain is the old name). I used the toolchain from there (and I also used latest gcc from that time). My version: # /home/or1k-

[U-Boot] [PATCH] imx: mx6quq7: add sd card detection

2016-02-05 Thread Julien Corjon
Add board_mmc_getcd function and declare CD_GPIO for SDCard. Signed-off-by: Julien Corjon --- board/seco/mx6quq7/mx6quq7.c | 27 ++- 1 file changed, 22 insertions(+), 5 deletions(-) diff --git a/board/seco/mx6quq7/mx6quq7.c b/board/seco/mx6quq7/mx6quq7.c index ea1d4b8..d

Re: [U-Boot] 9c11135 breaks bootz

2016-02-05 Thread Masahiro Yamada
Hi Adam, 2016-02-05 20:58 GMT+09:00 Adam Ford : > I have the same problem on a TI DM3730 Did you see this? http://lists.denx.de/pipermail/u-boot/2016-February/244788.html -- Best Regards Masahiro Yamada ___ U-Boot mailing list U-Boot@lists.denx.de

Re: [U-Boot] [PATCH] board_r: fix a typo in comment block

2016-02-05 Thread Bin Meng
On Fri, Feb 5, 2016 at 7:49 PM, Masahiro Yamada wrote: > Signed-off-by: Masahiro Yamada > --- > > common/board_r.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > Reviewed-by: Bin Meng ___ U-Boot mailing list U-Boot@lists.denx.de http://lis

Re: [U-Boot] 9c11135 breaks bootz

2016-02-05 Thread Adam Ford
I have the same problem on a TI DM3730 On Thu, Feb 4, 2016 at 11:41 AM, Tom Rini wrote: > On Tue, Feb 02, 2016 at 03:49:07PM +0100, Matthias Weißer wrote: > >> Hi >> >> 9c11135 image: fix getenv_bootm_size() function breaks the bootz >> command for me on a custom hardware (very similar to mx6sxsa

[U-Boot] [PATCH] board_r: fix a typo in comment block

2016-02-05 Thread Masahiro Yamada
Signed-off-by: Masahiro Yamada --- common/board_r.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/board_r.c b/common/board_r.c index 75ee43e..6c23865 100644 --- a/common/board_r.c +++ b/common/board_r.c @@ -456,7 +456,7 @@ static int initr_dataflash(void) /* * Tel

[U-Boot] CONFIG_MODEM_SUPPORT / CONFIG_HWFLOW still in use?

2016-02-05 Thread ELSOFT AG
Hello While trying to convert the serial_s3c24x0.c driver to DM, I noticed that no offical U-Boot configuration seems to be using the CONFIG_MODEM_SUPPORT or CONFIG_HWFLOW option. Do you know if these two options are still in use somewhere else? Or can all the references to these options be remov

Re: [U-Boot] [PATCH] image: fix getenv_bootm_size() function again

2016-02-05 Thread Matthias Weißer
Hi Masahiro 2016-02-05 8:12 GMT+01:00 Masahiro Yamada : > Commit 9c11135ce053 ("image: fix getenv_bootm_size() function") fixed > the case where "bootm_low" is defined, but "bootm_size" is not. > Instead, it broke the case where neither "bootm_low" nor "bootm_size" > is defined. Fix this function

[U-Boot] looking to get u-boot running on (old) MPC8280-based Mitel IP 3300 AX controller

2016-02-05 Thread Robert P. J. Day
rather than ask maddeningly vague questions about support for older MPC processors, here's what a small group of us are trying to do -- get u-boot up and running on a MPC8280-based Mitel AX 3300 IP controller, in preparation to (not surprisingly) putting linux on it. i realize that there's pr

[U-Boot] [PATCH v3 0/3] Kbuild fixes

2016-02-05 Thread Masahiro Yamada
Changes in v3: - Drop 2/4 ("kbuild: sunxi: fix build rule of sunxi-spl.bin") as well Changes in v2: - Drop 3/5 ("kbuild: use $(call cmd, ) rather than $(call if_changed, ) where possible") - add tools/fdtgrep to the dependency Masahiro Yamada (3): kbuild: remove unneeded ifdef condition

[U-Boot] [PATCH v3 2/3] kbuild: add missing FORCE where $(call if_changed, ) is used

2016-02-05 Thread Masahiro Yamada
FORCE is needed for $(call if_changed,...) to be evaluated every time. Otherwise, the command is not executed when the command line has changed but any prerequisite has not been updated. Signed-off-by: Masahiro Yamada --- Changes in v3: None Changes in v2: None Makefile | 12 ++

[U-Boot] [PATCH v3 1/3] kbuild: remove unneeded ifdef conditionals around build rules

2016-02-05 Thread Masahiro Yamada
These rules are only used for SOCFPGA, SUNXI, but no need to hide them from other SoCs. Signed-off-by: Masahiro Yamada --- scripts/Makefile.spl | 4 1 file changed, 4 deletions(-) diff --git a/scripts/Makefile.spl b/scripts/Makefile.spl index f486feb..adabfcf 100644 --- a/scripts/Makefile

[U-Boot] [PATCH v3 3/3] kbuild: fix build rule of u-boot-spl.dtb

2016-02-05 Thread Masahiro Yamada
The build command of u-boot-spl.dtb is not constant, but dependent on CONFIG_OF_SPL_REMOVE_PROPS. Use $(call if_changed,...) so that the change of CONFIG_OF_SPL_REMOVE_PROPS is detected. Also, add tools/fdtgrep to the dependency to make sure u-boot-spl.dtb is generated by the up-to-date fdtgrep i

Re: [U-Boot] [PATCH 3/5] kbuild: use $(call cmd, ) rather than $(call if_changed, ) where possible

2016-02-05 Thread Ian Campbell
On Fri, 2016-02-05 at 14:33 +0900, Masahiro Yamada wrote: > >> These build commands are constant (mostly, just concatenating > images, > >> or just copying). No need to use $(call if_changed,...) for them. > > > > > > I disagree, since I believe this change means that if someone /does/ change > >