Re: [U-Boot] [RFC PATCH] spl: Add option SPL_PAYLOAD

2018-07-09 Thread Tom Rini
On Mon, Jul 09, 2018 at 03:26:14PM +, York Sun wrote: > On 06/14/2018 02:39 PM, York Sun wrote: > > Some legacy boards use RAW image for SPL boot. Add Kconfig option > > SPL_PAYLOAD to set alternative image. > > > > Signed-off-by: York Sun > > > > --- > > > > Makefile | 4 ++--

Re: [U-Boot] [PATCH v2 1/8] Enable CONFIG_BLK and CONFIG_DM_MMC to Kconfig

2018-07-09 Thread York Sun
On 07/08/2018 09:46 PM, Yinbo Zhu wrote: > This enables the folowing to Kconfig: > CONFIG_BLK > CONFIG_DM_MMC The order of patches seems wrong. Don't you need patch 2 & 3 before enabling these options? York ___ U-Boot mailing list

[U-Boot] [PATCH v2 0/2] Fix USB and enable ADC on Khadas VIM

2018-07-09 Thread Loic Devulder
This patch series add power supply entry for P212 like meson-gx boards. It also enable ADC support for Khadas VIM board. Based on the Neil Armstrong's patches. Note: it's my first (small!) patch for U-Boot, I tried to add all needed and useful informations :-) Changes since v1: - remove

[U-Boot] [PATCH v2 1/2] ARM64: meson: Add 'usb2_phy0' in P212 DT file

2018-07-09 Thread Loic Devulder
Enable power supply for USB Amlogic Meson GXL P212 based boards. Signed-off-by: Loic Devulder --- arch/arm/dts/meson-gxl-s905x-p212.dtsi | 8 1 file changed, 8 insertions(+) diff --git a/arch/arm/dts/meson-gxl-s905x-p212.dtsi b/arch/arm/dts/meson-gxl-s905x-p212.dtsi index

[U-Boot] [PATCH v2 2/2] configs: Update Meson GX configs

2018-07-09 Thread Loic Devulder
Enable ADC support on the Khadas VIM board. Signed-off-by: Loic Devulder --- configs/khadas-vim_defconfig | 3 +++ 1 file changed, 3 insertions(+) diff --git a/configs/khadas-vim_defconfig b/configs/khadas-vim_defconfig index 1eb13df4b4..fd1ec8157b 100644 --- a/configs/khadas-vim_defconfig +++

Re: [U-Boot] [PATCH 1/1] avb2.0: add get_size_of_partition()

2018-07-09 Thread Eugeniu Rosca
On Mon, Jul 09, 2018 at 03:15:54PM +0300, Igor Opaniuk wrote: > Implement get_size_of_partition() operation, > which is required by the latest upstream libavb [1]. > > [1] https://android.googlesource.com/platform/external/avb/+/master/README.md > > Signed-off-by: Igor Opaniuk > --- >

Re: [U-Boot] [RFC PATCH] spl: Add option SPL_PAYLOAD

2018-07-09 Thread York Sun
On 06/14/2018 02:39 PM, York Sun wrote: > Some legacy boards use RAW image for SPL boot. Add Kconfig option > SPL_PAYLOAD to set alternative image. > > Signed-off-by: York Sun > > --- > > Makefile | 4 ++-- > common/spl/Kconfig | 10 ++ > 2 files changed, 12 insertions(+),

Re: [U-Boot] [PATCH 1/1] avb2.0: add get_size_of_partition()

2018-07-09 Thread Andrew F. Davis
On 07/09/2018 09:52 AM, Sam Protsenko wrote: > On Mon, Jul 9, 2018 at 3:15 PM, Igor Opaniuk wrote: >> Implement get_size_of_partition() operation, >> which is required by the latest upstream libavb [1]. >> >> [1] https://android.googlesource.com/platform/external/avb/+/master/README.md >> I may

[U-Boot] [PATCH 2/2] configs: Update Meson GX configs

2018-07-09 Thread Loic Devulder
Enable ADC support on the Khadas VIM board. Signed-off-by: Loic Devulder --- configs/khadas-vim_defconfig | 5 + 1 file changed, 5 insertions(+) diff --git a/configs/khadas-vim_defconfig b/configs/khadas-vim_defconfig index 1eb13df4b4..116acb5507 100644 --- a/configs/khadas-vim_defconfig

[U-Boot] [PATCH 1/2] ARM64: meson: Add 'usb2_phy0' in P212 DT file

2018-07-09 Thread Loic Devulder
Enable power supply for USB Amlogic Meson GXL P212 based boards. Signed-off-by: Loic Devulder --- arch/arm/dts/meson-gxl-s905x-p212.dtsi | 8 1 file changed, 8 insertions(+) diff --git a/arch/arm/dts/meson-gxl-s905x-p212.dtsi b/arch/arm/dts/meson-gxl-s905x-p212.dtsi index

[U-Boot] [PATCH 0/2] Fix USB and enable ADC on Khadas VIM

2018-07-09 Thread Loic Devulder
This patch series add power supply entry for P212 like meson-gx boards. It also enable ADC support for Khadas VIM board. Based on the Neil Armstrong's patches. Note: it's my first (small!) patch for U-Boot, I tried to add all needed and useful informations :-) Loic Devulder (2): ARM64: meson:

Re: [U-Boot] [PATCH 1/1] avb2.0: add get_size_of_partition()

2018-07-09 Thread Sam Protsenko
On Mon, Jul 9, 2018 at 3:15 PM, Igor Opaniuk wrote: > Implement get_size_of_partition() operation, > which is required by the latest upstream libavb [1]. > > [1] https://android.googlesource.com/platform/external/avb/+/master/README.md > > Signed-off-by: Igor Opaniuk > --- Reviewed-by: Sam

[U-Boot] [PATCH] m68k: m5253evbe: Remove this board

2018-07-09 Thread Tom Rini
The m5253evbe board has been marked as orphan since June of 2014 and should have been dropped a while ago. Do so now. Signed-off-by: Tom Rini --- arch/m68k/Kconfig | 5 -- board/freescale/m5253evbe/Kconfig | 15 board/freescale/m5253evbe/MAINTAINERS | 6 --

Re: [U-Boot] [PATCH v3 7/7] cmd: Add bind/unbind commands to bind a device to a driver from the command line

2018-07-09 Thread Tom Rini
On Mon, Jul 09, 2018 at 08:19:44AM +0200, Michal Simek wrote: > On 30.6.2018 06:19, Simon Glass wrote: > > On 27 June 2018 at 07:13, Michal Simek wrote: > >> On 22.6.2018 14:25, Jean-Jacques Hiblot wrote: > >>> In some cases it can be useful to be able to bind a device to a driver > >>> from >

Re: [U-Boot] u-boot serial uart command?

2018-07-09 Thread Lukasz Majewski
Hi Dell, > Hi Guys, > > Brand new to this mailing list. > > I have a Dart-MX6 imx6 Module that has a number of uarts. I have one > of the uarts connected to an external micro controller that excepts > commands via a basic binary messaging protocol. In linux I can > communicate with it using

[U-Boot] [GIT] Pull request: u-boot-dfu (09.07.2018)

2018-07-09 Thread Lukasz Majewski
Dear Marek, The following changes since commit 3f0492f20755b9cd3b32ea7253169655489bab63: Merge branch 'master' of git://git.denx.de/u-boot-video (2018-07-08 18:56:07 -0400) are available in the git repository at: git://git.denx.de/u-boot-dfu.git for you to fetch changes up to

[U-Boot] [ANN] U-Boot v2018.07 released

2018-07-09 Thread Tom Rini
Hey all, It's release day, and here we are doing the release. It's live on git and FTP and ACD (along with the PGP sig file). Looking over the release email for v2018.05, I see I had a lot to say then. This time? Not quite so much. On the ARM side of things, we have the framework in, and in

Re: [U-Boot] [PATCH v3 6/7] armv8: ls1046a: add icid setup for qman portals

2018-07-09 Thread Laurentiu Tudor
Hi Bharat, On 09.07.2018 15:21, Bharat Bhushan wrote: > > >> -Original Message- >> From: Laurentiu Tudor [mailto:laurentiu.tu...@nxp.com] >> Sent: Wednesday, July 4, 2018 7:44 PM >> To: York Sun ; Prabhakar Kushwaha >> ; u-boot@lists.denx.de >> Cc: Bharat Bhushan ; Laurentiu Tudor >>

[U-Boot] [PATCH v1 1/2] spi: stm32_qspi: assign functional operation mode in _stm32_qspi_gen_ccr

2018-07-09 Thread Patrice Chotard
From: Christophe Kerello This patch assigns the functional operation mode in _stm32_qspi_gen_ccr function. Signed-off-by: Christophe Kerello Signed-off-by: Patrice Chotard --- drivers/spi/stm32_qspi.c | 17 - 1 file changed, 8 insertions(+), 9 deletions(-) diff --git

[U-Boot] [PATCH v1 2/2] spi: stm32_qspi: rework mode management

2018-07-09 Thread Patrice Chotard
From: Christophe Kerello This patch solves quad read issue with Macronix/Micron spi nor. Signed-off-by: Christophe Kerello Signed-off-by: Patrice Chotard --- drivers/spi/stm32_qspi.c | 28 ++-- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git

[U-Boot] [PATCH v1 0/2] Update STM32 QSPI driver

2018-07-09 Thread Patrice Chotard
This series : _ assign operation mode in _stm32_qspi_gen_ccr() _ rework mode management to solve quad read issue with Macronix/Micron spi nor. Christophe Kerello (2): spi: stm32_qspi: assign functional operation mode in _stm32_qspi_gen_ccr spi: stm32_qspi: rework mode management

[U-Boot] login-password.

2018-07-09 Thread Mehmet Ali İPİN
Dear Fabio, I hope you and all members of denx are good and wish you healthy life.. After studying and testing too many things, I managed our i.mx6dl board to boot rootfs with nfs. Then I see the login/password queries at the terminal as following lines. I entered the ROOT/root as login and

[U-Boot] [PATCH 6/6] stm32mp1: clock tree update

2018-07-09 Thread Patrick Delaunay
Configure clock tree for all the devices. Signed-off-by: Patrick Delaunay --- arch/arm/dts/stm32mp157c-ed1-u-boot.dtsi | 46 1 file changed, 35 insertions(+), 11 deletions(-) diff --git a/arch/arm/dts/stm32mp157c-ed1-u-boot.dtsi

[U-Boot] [PATCH 5/6] stm32mp1: activate FIXED regulator

2018-07-09 Thread Patrick Delaunay
Signed-off-by: Patrick Delaunay --- configs/stm32mp15_basic_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/configs/stm32mp15_basic_defconfig b/configs/stm32mp15_basic_defconfig index 87f60be..c72a440 100644 --- a/configs/stm32mp15_basic_defconfig +++

[U-Boot] [PATCH 4/6] stm32mp1: add support for stm32mp157c-ev1 board

2018-07-09 Thread Patrick Delaunay
Add support of stm32mp157c-ev1, the evaluation board with pmic stpmu1 (ev1 = mother board + daughter ed1) with device tree. EV1 is the selected board by default in basic defconfig. PS: CONFIG_PINCTRL_FULL activation avoid to increase SYS_MALLOC_F_LEN (Early malloc usage: 2034) Signed-off-by:

[U-Boot] [PATCH 2/6] misc: stm32: Add STM32MP1 support

2018-07-09 Thread Patrick Delaunay
Following next kernel rcc bindings, we must use a MFD RCC driver which is able to bind both clock and reset drivers. We can reuse and adapt RCC MFD driver already available for MCU SoCs (F4/F7/H7). Signed-off-by: Patrice Chotard Signed-off-by: Patrick Delaunay ---

[U-Boot] [PATCH 3/6] stm32mp1: activate MISC support in SPL

2018-07-09 Thread Patrick Delaunay
needed for RCC MISC driver and sysreset with syscon in SPL Signed-off-by: Patrick Delaunay --- arch/arm/mach-stm32mp/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/mach-stm32mp/Kconfig b/arch/arm/mach-stm32mp/Kconfig index aa26999..5b24235 100644 ---

[U-Boot] [PATCH 1/6] dts: import stm32mp1 device tree from linux kernel

2018-07-09 Thread Patrick Delaunay
This patch rebase the stm32mp1 device tree source from linux kernel v4.18-rc1. Signed-off-by: Patrick Delaunay --- arch/arm/dts/stm32mp15-ddr.dtsi| 12 +- arch/arm/dts/stm32mp157-pinctrl.dtsi | 359 arch/arm/dts/stm32mp157-u-boot.dtsi

Re: [U-Boot] [PATCH v3 5/7] armv8: ls1046a: initial icid setup support

2018-07-09 Thread Laurentiu Tudor
Hi Bharat, On 09.07.2018 15:13, Bharat Bhushan wrote: > > >> -Original Message- >> From: Laurentiu Tudor [mailto:laurentiu.tu...@nxp.com] >> Sent: Wednesday, July 4, 2018 7:44 PM >> To: York Sun ; Prabhakar Kushwaha >> ; u-boot@lists.denx.de >> Cc: Bharat Bhushan ; Laurentiu Tudor >>

Re: [U-Boot] [PATCH] cmd: ubi: change 'default y' for SUNXI to 'imply' in Kconfig

2018-07-09 Thread Tom Rini
On Mon, Jul 09, 2018 at 08:14:28PM +0900, Masahiro Yamada wrote: > 2018-07-09 16:20 GMT+09:00 Maxime Ripard : > > On Mon, Jul 09, 2018 at 03:12:37PM +0900, Masahiro Yamada wrote: > >> It is not preferred to put SUNXI-specific code in the common place. > > > > I think Tom has been saying the exact

[U-Boot] [PATCH] sysreset: syscon: update regmap access to syscon

2018-07-09 Thread Patrick Delaunay
Use new API syscon_node_to_regmap in sysreset_syscon driver for compatible "syscon-reboot"; that's avoid the need of explicit syscon binding for "regmap" handle. Signed-off-by: Patrick Delaunay --- drivers/sysreset/sysreset_syscon.c | 16 +--- 1 file changed, 9 insertions(+), 7

Re: [U-Boot] [PATCH v3 3/7] misc: fsl_portals: setup QMAN_BAR{E} also on ARM platforms

2018-07-09 Thread Bharat Bhushan
> -Original Message- > From: Laurentiu Tudor > Sent: Monday, July 9, 2018 6:10 PM > To: Bharat Bhushan ; York Sun > ; Prabhakar Kushwaha > ; u-boot@lists.denx.de > Subject: Re: [PATCH v3 3/7] misc: fsl_portals: setup QMAN_BAR{E} also on > ARM platforms > > Hi Bharat, > > On 09.07.2018

Re: [U-Boot] [PATCH v3 3/7] misc: fsl_portals: setup QMAN_BAR{E} also on ARM platforms

2018-07-09 Thread Laurentiu Tudor
Hi Bharat, On 09.07.2018 15:06, Bharat Bhushan wrote: > > >> -Original Message- >> From: Laurentiu Tudor [mailto:laurentiu.tu...@nxp.com] >> Sent: Wednesday, July 4, 2018 7:44 PM >> To: York Sun ; Prabhakar Kushwaha >> ; u-boot@lists.denx.de >> Cc: Bharat Bhushan ; Laurentiu Tudor >>

Re: [U-Boot] [PATCH v3 7/7] armv8: ls1046a: setup fman ports ICIDs and device tree

2018-07-09 Thread Bharat Bhushan
> -Original Message- > From: Laurentiu Tudor [mailto:laurentiu.tu...@nxp.com] > Sent: Wednesday, July 4, 2018 7:44 PM > To: York Sun ; Prabhakar Kushwaha > ; u-boot@lists.denx.de > Cc: Bharat Bhushan ; Laurentiu Tudor > > Subject: [PATCH v3 7/7] armv8: ls1046a: setup fman ports ICIDs

Re: [U-Boot] [PATCH v3 6/7] armv8: ls1046a: add icid setup for qman portals

2018-07-09 Thread Bharat Bhushan
> -Original Message- > From: Laurentiu Tudor [mailto:laurentiu.tu...@nxp.com] > Sent: Wednesday, July 4, 2018 7:44 PM > To: York Sun ; Prabhakar Kushwaha > ; u-boot@lists.denx.de > Cc: Bharat Bhushan ; Laurentiu Tudor > > Subject: [PATCH v3 6/7] armv8: ls1046a: add icid setup for qman

[U-Boot] [PATCH 1/1] avb2.0: add get_size_of_partition()

2018-07-09 Thread Igor Opaniuk
Implement get_size_of_partition() operation, which is required by the latest upstream libavb [1]. [1] https://android.googlesource.com/platform/external/avb/+/master/README.md Signed-off-by: Igor Opaniuk --- common/avb_verify.c | 33 - 1 file changed, 32

Re: [U-Boot] [PATCH v3 5/7] armv8: ls1046a: initial icid setup support

2018-07-09 Thread Bharat Bhushan
> -Original Message- > From: Laurentiu Tudor [mailto:laurentiu.tu...@nxp.com] > Sent: Wednesday, July 4, 2018 7:44 PM > To: York Sun ; Prabhakar Kushwaha > ; u-boot@lists.denx.de > Cc: Bharat Bhushan ; Laurentiu Tudor > > Subject: [PATCH v3 5/7] armv8: ls1046a: initial icid setup

Re: [U-Boot] [PATCH v3 3/7] misc: fsl_portals: setup QMAN_BAR{E} also on ARM platforms

2018-07-09 Thread Bharat Bhushan
> -Original Message- > From: Laurentiu Tudor [mailto:laurentiu.tu...@nxp.com] > Sent: Wednesday, July 4, 2018 7:44 PM > To: York Sun ; Prabhakar Kushwaha > ; u-boot@lists.denx.de > Cc: Bharat Bhushan ; Laurentiu Tudor > > Subject: [PATCH v3 3/7] misc: fsl_portals: setup QMAN_BAR{E} also

[U-Boot] [PATCH 2/3] scsi: ceva: add ls1043a soc support

2018-07-09 Thread peng . ma
From: Peng Ma Add ahci compatible support for ls1043a soc. Signed-off-by: Peng Ma --- depend on: patchwork.ozlabs.org/patch/924896/ drivers/ata/sata_ceva.c | 16 +--- 1 files changed, 9 insertions(+), 7 deletions(-) diff --git a/drivers/ata/sata_ceva.c

[U-Boot] u-boot serial uart command?

2018-07-09 Thread Dell Green
Hi Guys, Brand new to this mailing list. I have a Dart-MX6 imx6 Module that has a number of uarts. I have one of the uarts connected to an external micro controller that excepts commands via a basic binary messaging protocol. In linux I can communicate with it using standard linux /dev/ttymxcN

Re: [U-Boot] [PATCH v2 1/6] drivers: rtc: resolve year 2038 problem in rtc_to_tm

2018-07-09 Thread Arnd Bergmann
On Sun, Jul 8, 2018 at 11:32 PM, Alexander Graf wrote: > > > On 07.07.18 23:39, Heinrich Schuchardt wrote: >> Our implementation of rtc_to_tm() cannot handle dates of more than >> 0x7fff seconds after 1970-01-01. >> >> Adopt the Linux kernel implementation. >> >> Signed-off-by: Heinrich

[U-Boot] [PATCH 1/4] armv8: dts: fsl-ls1046a: add sata node support

2018-07-09 Thread peng . ma
From: Peng Ma One ls1046a, there is one SATA 3.0 advanced host controller interface which is a high-performance SATA solution that delivers comprehensive and fully-compliant generation 3 (1.5 Gb/s - 6.0 Gb/s) serial ATA capabilities, in accordance with the serial ATA revision 3.0 of Serial ATA

[U-Boot] [PATCH 1/3] armv8: dts: fsl-ls1043a: add sata node support

2018-07-09 Thread peng . ma
From: Peng Ma Add sata node to support ls1043a. Signed-off-by: Peng Ma --- arch/arm/dts/fsl-ls1043a-qds.dtsi |4 arch/arm/dts/fsl-ls1043a.dtsi |8 2 files changed, 12 insertions(+), 0 deletions(-) diff --git a/arch/arm/dts/fsl-ls1043a-qds.dtsi

Re: [U-Boot] [PATCH] tools/imximage: get HAB information from header

2018-07-09 Thread Bryan O'Donoghue
On 06/07/18 15:10, Holger Dengler wrote: Signing parts of a u-boot imximage for image verification in High Assurance Boot (HAB) in a post-build process, requires some information from the imximage header. Currently, this information is only provided during the image build, which makes the

Re: [U-Boot] [PATCH] cmd: ubi: change 'default y' for SUNXI to 'imply' in Kconfig

2018-07-09 Thread Masahiro Yamada
2018-07-09 16:20 GMT+09:00 Maxime Ripard : > On Mon, Jul 09, 2018 at 03:12:37PM +0900, Masahiro Yamada wrote: >> It is not preferred to put SUNXI-specific code in the common place. > > I think Tom has been saying the exact opposite a number of times, > since there's some circular dependencies

[U-Boot] [PATCH v3 1/2] net: mvgbe: prepare for conversion to driver model

2018-07-09 Thread Chris Packham
Extract some function bodies to helper functions that can be reused in the DM/non-DM implementations. Signed-off-by: Chris Packham Acked-by: Joe Hershberger --- Changes in v3: None Changes in v2: None drivers/net/mvgbe.c | 109 1 file changed, 80

[U-Boot] [PATCH v3 2/2] net: mvgbe: convert to DM

2018-07-09 Thread Chris Packham
Add driver model support to the mvgbe driver. As a temporary measure both DM and non-DM uses are supported. Once all the users have been converted the non-DM support can be dropped. Signed-off-by: Chris Packham --- Changes in v3: - select PHYLIB (thanks Michael) - parse phy info from subnode

Re: [U-Boot] [PATCH 2/3] net: phy: xilinx_phy: Add suuport for livetree

2018-07-09 Thread Michal Simek
On 6.7.2018 12:10, Siva Durga Prasad Paladugu wrote: > This patch adds support for livetree by using dev_.. > calls instead of fdtdec_.. . > typo in subject. M > Signed-off-by: Siva Durga Prasad Paladugu > --- > drivers/net/phy/xilinx_phy.c | 4 ++-- > 1 file changed, 2 insertions(+), 2

Re: [U-Boot] build fail due to dependence error

2018-07-09 Thread Dr. Philipp Tomsich
> On 9 Jul 2018, at 09:18, Patrick DELAUNAY wrote: > >> From: U-Boot On Behalf Of Masahiro Yamada >> Sent: lundi 9 juillet 2018 07:27 >> Subject: Re: [U-Boot] build fail due to dependence error >> >> Hi. >> >> >> 2018-07-09 11:39 GMT+09:00 Simon Glass : >>> +Masahiro who might know >>> >>>

Re: [U-Boot] SoCFPGA PL330 DMA driver and ECC scrubbing

2018-07-09 Thread Marek Vasut
On 07/07/2018 12:56 AM, Jason Rush wrote: > On 7/5/2018 6:10 PM, Marek Vasut wrote: >> On 07/06/2018 01:11 AM, Jason Rush wrote: >>> On 7/4/2018 2:23 AM, Marek Vasut wrote: On 07/04/2018 01:45 AM, Jason Rush wrote: > On 7/3/2018 9:08 AM, Marek Vasut wrote: >> On 07/03/2018 03:58 PM,

Re: [U-Boot] [PATCH v4 1/2] dm: mdio: add a uclass for MDIO

2018-07-09 Thread Michal Simek
On 5.7.2018 09:34, m...@marvell.com wrote: > From: Ken Ma > > Add a uclass which provides access to MDIO busses and includes > operations required by MDIO. > The implementation is based on the existing mii/phy/mdio data > structures and APIs. > This patch also adds device tree binding for MDIO

Re: [U-Boot] [PATCH v2 2/2] net: mvgbe: convert to DM

2018-07-09 Thread Chris Packham
On Mon, Jul 9, 2018 at 9:05 AM Michael Walle wrote: > > > Hi Chris, > > thanks for your efforts. This basically works for me on my Kirkwood > LSCHLv2 board. So you may add > > Tested-by: Michael Walle > > But there are some issues. See below. > > > [snip] > > > -#if defined(CONFIG_PHYLIB) > >

Re: [U-Boot] [PATCH] cmd: ubi: change 'default y' for SUNXI to 'imply' in Kconfig

2018-07-09 Thread Maxime Ripard
On Mon, Jul 09, 2018 at 03:12:37PM +0900, Masahiro Yamada wrote: > It is not preferred to put SUNXI-specific code in the common place. I think Tom has been saying the exact opposite a number of times, since there's some circular dependencies issues that arise when using imply. Maxime > Change

Re: [U-Boot] build fail due to dependence error

2018-07-09 Thread Patrick DELAUNAY
> From: U-Boot On Behalf Of Masahiro Yamada > Sent: lundi 9 juillet 2018 07:27 > Subject: Re: [U-Boot] build fail due to dependence error > > Hi. > > > 2018-07-09 11:39 GMT+09:00 Simon Glass : > > +Masahiro who might know > > > > On 2 July 2018 at 01:23, Dr. Philipp Tomsich > > wrote: > >>

Re: [U-Boot] [PATCH v3 2/3] doc: dtbinding: Add file system firmware loader binding document

2018-07-09 Thread Chee, Tien Fong
On Sun, 2018-07-08 at 20:39 -0600, Simon Glass wrote: > Hi Tien Fong, > > On 2 July 2018 at 01:26, Chee, Tien Fong > wrote: > > > > On Fri, 2018-06-29 at 21:19 -0700, Simon Glass wrote: > > > > > > Hi Tien Fong, > > > > > > On 28 June 2018 at 01:58, Chee, Tien Fong > > om> > > > wrote: > > >

Re: [U-Boot] [PATCH v3 7/7] cmd: Add bind/unbind commands to bind a device to a driver from the command line

2018-07-09 Thread Michal Simek
On 30.6.2018 06:19, Simon Glass wrote: > On 27 June 2018 at 07:13, Michal Simek wrote: >> On 22.6.2018 14:25, Jean-Jacques Hiblot wrote: >>> In some cases it can be useful to be able to bind a device to a driver from >>> the command line. >>> The obvious example is for versatile devices such as

[U-Boot] [PATCH] cmd: ubi: change 'default y' for SUNXI to 'imply' in Kconfig

2018-07-09 Thread Masahiro Yamada
It is not preferred to put SUNXI-specific code in the common place. Change it to 'imply' property of ARCH_SUNXI. Signed-off-by: Masahiro Yamada --- arch/arm/Kconfig | 1 + cmd/Kconfig | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig

Re: [U-Boot] [PATCH v3 1/2] fs: fat: cannot write to subdirectories

2018-07-09 Thread Heinrich Schuchardt
On 07/09/2018 04:35 AM, Simon Glass wrote: > Hi Heinrich, > > On 1 July 2018 at 17:41, Heinrich Schuchardt wrote: >> fs_fat_write() is not able to write to subdirectories. >> >> Currently if a filepath with a leading slash is passed, the slash is >> treated as part of the filename to be created

<    1   2