Re: [U-Boot] [PATCH v3 2/2] xilinx_xiic: Fix transfer initialisation

2019-06-30 Thread Heiko Schocher
Hello Tomas, Am 01.07.2019 um 08:04 schrieb Melin Tomas: Hello Heiko, On 6/28/19 3:43 PM, Heiko Schocher wrote: I fixed that, also this and patch 1/2 has some style issues: ERROR: Please use git commit description style 'commit <12+ chars of sha1> ("")' - ie: 'commit fatal: mehrd ("1': unbek

[U-Boot] [PATCH V2 1/2] watchdog: Split WDT from SPL_WDT

2019-06-30 Thread Suniel Mahesh
Hi Marek, May I know if this patch series is still under review ? I have converted OMAP3 watchdog driver into driver model for TI AM33XX based SOC and tested corresponding patches on BeagleBone Black board. Because of SPL size constraints, I have to disable driver model for watchdog in SPL. So

Re: [U-Boot] [PATCH 1/2] tools: mkenvimage: Fix reading from slow pipe

2019-06-30 Thread Alexander Dahl
Hello Andre, Am Sonntag, 30. Juni 2019, 02:45:00 CEST schrieb Andre Przywara: > It is perfectly fine for the read(2) syscall to return with less than > the requested number of bytes read (short read, see the "RETURN VALUE" > section of the man page). This typically happens with slow input > (keybo

Re: [U-Boot] [PATCH v3 2/2] xilinx_xiic: Fix transfer initialisation

2019-06-30 Thread Melin Tomas
Hello Heiko, On 6/28/19 3:43 PM, Heiko Schocher wrote: > > I fixed that, also this and patch 1/2 has some style issues: > > ERROR: Please use git commit description style 'commit <12+ chars of > sha1> ("")' - ie: 'commit fatal: mehrd ("1': unbekannter > Commit oder Pfad existiert nicht")' > #127

[U-Boot] [PATCH v4 8/8] rockchip: rk3288: enable TPL for tinker-board

2019-06-30 Thread Kever Yang
All the config for TPL has been update, we can enable the TPL. Signed-off-by: Kever Yang --- Changes in v4: None Changes in v2: None arch/arm/mach-rockchip/rk3288/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/mach-rockchip/rk3288/Kconfig b/arch/arm/mach-rockchip/rk3288/

[U-Boot] [PATCH v4 7/8] rockchip: config: tiner-rk3288: extend CONFIG_SYS_MONITOR_LEN to 600KB

2019-06-30 Thread Kever Yang
The raw u-boot.bin for tinker board has been about 450KB without debug option, and 550KB with all debug on, and the default value is 200KB, which is not enough for run raw u-boot.bin. Signed-off-by: Kever Yang --- Changes in v4: - add blank line back Changes in v2: None include/configs/tinker

[U-Boot] [PATCH v4 6/8] rockchip: config: update config for TPL support on tinker-rk3288

2019-06-30 Thread Kever Yang
We need to update TEXT BASE for TPL/SPL/U-Boot; SPL no need relocate STACK after enable TPL, so remove it; Don't enable pinctrl names so that SPL can get pinctrl dts; Signed-off-by: Kever Yang --- Changes in v4: None Changes in v2: None configs/tinker-rk3288_defconfig | 13 + 1 fil

[U-Boot] [PATCH v4 4/8] rockchip: dts: tinker: migrate the dm-pre-reloc tag into -u-boot dts

2019-06-30 Thread Kever Yang
Migrate all the "u-boot,dm-pre-reloc" tag from rk3288-tinker.dts into rk3288-tinker-u-boot.dtsi. When both board level and soc level '-u-boot.dtsi' files exist, we need to include the soc level 'rk3288-u-boot.dtsi' manually. Signed-off-by: Kever Yang --- Changes in v4: - include "rk3288-u-boot.d

[U-Boot] [PATCH v4 5/8] rockchip: dts: rk3288-tinker: enable sdmmc pinctrl node in spl

2019-06-30 Thread Kever Yang
rockchip pinctrl driver has update to use dts, so we need to add the pinctrl config in SPL for sdmmc. Signed-off-by: Kever Yang --- Changes in v4: None Changes in v2: - update the tags in -u-boot.dtsi arch/arm/dts/rk3288-tinker-u-boot.dtsi | 24 1 file changed, 24 inse

[U-Boot] [PATCH v4 2/8] rockchip: rk3288: add separate TPL STACK address

2019-06-30 Thread Kever Yang
TPL is at SRAM while other stage is at SDRAM, so it needs separate STACK. Signed-off-by: Kever Yang Reviewed-by: Jagan Teki --- Changes in v4: None Changes in v2: None arch/arm/mach-rockchip/Kconfig | 4 1 file changed, 4 insertions(+) diff --git a/arch/arm/mach-rockchip/Kconfig b/arch/

[U-Boot] [PATCH v4 1/8] rockchip: rk3288: enable TPL configs to chip level

2019-06-30 Thread Kever Yang
More boards other than vyasa needs TPL, so enable the TPL configs at chip level instead of board level. Signed-off-by: Kever Yang Reviewed-by: Jagan Teki --- Changes in v4: None Changes in v2: None arch/arm/mach-rockchip/Kconfig| 14 ++ arch/arm/mach-rockchip/rk3288/Kconfi

[U-Boot] [PATCH v4 3/8] rockchip: dts: rk3288: move reloc tag into -u-boot dts

2019-06-30 Thread Kever Yang
Move all the tag "u-boot,dm-pre-reloc" from rk3288.dtsi into rk3288-u-boot.dtsi. Signed-off-by: Kever Yang --- Changes in v4: - include "rk3288-u-boot.dtsi" in board '-u-boot.dtsi' and not touch dts file. Series-changes: 3 - include "rk3288-u-boot.dtsi" for board already have board level -u-

[U-Boot] [PATCH v4 0/8] rockchip: enable TPL for tinker-rk3288

2019-06-30 Thread Kever Yang
Tinker board has overflow the SRAM size limit, enable TPL for it so that there will be no size limit for SPL. Also some other fix to bring up Tinker board: - enabel sdmmc pinctrl with dts in SPL - extend raw u-boot.bin size limit Version 2 move related "u-boot,dm-pre-reloc" into -u-boot.dtsi C

Re: [U-Boot] [PATCH v3 3/8] rockchip: dts: rk3288: move reloc tag into -u-boot dts

2019-06-30 Thread Kever Yang
Hi Jagan, On 06/30/2019 09:52 PM, Jagan Teki wrote: > On Fri, Jun 28, 2019 at 3:38 PM Kever Yang wrote: >> Move all the tag "u-boot,dm-pre-reloc" from rk3288.dtsi >> into rk3288-u-boot.dtsi. >> >> Signed-off-by: Kever Yang >> --- >> >> Changes in v3: >> - include "rk3288-u-boot.dtsi" for board

[U-Boot] [PATCH 1/2] ARM: omap3_logic: Enable OMAP EHCI support for SOM-LV Boards

2019-06-30 Thread Adam Ford
The SOM-LV boards support the OMAP EHCI driver using port 2. With the driver updated to support device tree, this patch sets the corresponding pin muxing for the tranceiver as well as the reset pin. Signed-off-by: Adam Ford diff --git a/board/logicpd/omap3som/omap3logic.h b/board/logicpd/omap3s

[U-Boot] [PATCH 2/2] ARM: omap3_logic & omap35_logic: Disable OMAP EHCI for Torpedo

2019-06-30 Thread Adam Ford
The OMAP35 and AM/DM37 Torpedo boards do not have a USB tranceiver connected to the USB host port, so this patch removes it from the defconfig files. Signed-off-by: Adam Ford diff --git a/configs/omap35_logic_defconfig b/configs/omap35_logic_defconfig index 3a529e8836..055a1bf489 100644 --- a/co

[U-Boot] [PATCH] usb: ehci-omap: Add Support DM_USB and OF_CONTROL

2019-06-30 Thread Adam Ford
The omap3.dtsi file shows the usbhshost node with two sub-nodes for ohci and ehci. This patch file creates the usbhshost, and pulls the portX-mode information. It then locates the EHCI sub-node, and initializes the EHCI controller with the info pulled from the usbhshost node. There is still more

Re: [U-Boot] [RFC] env: ti: Handle reboot reason from BCB

2019-06-30 Thread Eugeniu Rosca
Hi Sam, All below is my 2 cents and FWIW, so feel free to just skip it. On Fri, Jun 21, 2019 at 12:25:44AM +0300, Sam Protsenko wrote: > *** PLEASE DO NOT MERGE. > *** This is only RFC, a discussion thread. Patch is only for the > *** reference here right now, to create a discussion context. > >

Re: [U-Boot] [PATCH 3/4] usb: xhci-dwc3: Add USB2 PHY configuration

2019-06-30 Thread Marek Vasut
On 6/30/19 6:07 PM, Mark Kettenis wrote: >> From: Marek Vasut >> Date: Sun, 30 Jun 2019 16:31:41 +0200 >> >> On 6/30/19 4:25 PM, Mark Kettenis wrote: From: Marek Vasut Date: Sun, 30 Jun 2019 15:36:03 +0200 On 6/30/19 3:31 PM, Kever Yang wrote: > Hi Mark, > >     I

Re: [U-Boot] [PATCH 3/4] usb: xhci-dwc3: Add USB2 PHY configuration

2019-06-30 Thread Mark Kettenis
> From: Marek Vasut > Date: Sun, 30 Jun 2019 16:31:41 +0200 > > On 6/30/19 4:25 PM, Mark Kettenis wrote: > >> From: Marek Vasut > >> Date: Sun, 30 Jun 2019 15:36:03 +0200 > >> > >> On 6/30/19 3:31 PM, Kever Yang wrote: > >>> Hi Mark, > >>> > >>>     I add Marek and Bin Meng for this patch, I'm n

[U-Boot] [PATCH v2 3/4] usb: xhci-dwc3: Add USB2 PHY configuration

2019-06-30 Thread Mark Kettenis
Configure USB2 PHY register based on "phy_type" property and handle all the quirks that are relevant for Rockchip RK3399 SoCs. Signed-off-by: Mark Kettenis --- drivers/usb/host/xhci-dwc3.c | 20 1 file changed, 20 insertions(+) diff --git a/drivers/usb/host/xhci-dwc3.c b/dr

[U-Boot] [PATCH v2 1/4] rockchip: clk: rk3399: handle clk_enable requests for USB3

2019-06-30 Thread Mark Kettenis
The "simple" OF glue layer for the Designware USB3 core enables all refernced clocks. These need to be need to be implemented otherwise the driver fails to probe. A dummy implementation that simply returns success is sufficient since the RK3399 comes out of reset with all clock gates open. Signe

[U-Boot] [PATCH v2 4/4] rockchip: xhci: Remove RK3399 support

2019-06-30 Thread Mark Kettenis
Remove RK3399 compatible strings as this driver is no longer used on that SoC. Signed-off-by: Mark Kettenis Reviewed-by: Kever Yang --- drivers/usb/host/xhci-rockchip.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/drivers/usb/host/xhci-rockchip.c b/drivers/usb/host/xhci-rockchip.c index

[U-Boot] [PATCH v2 0/4] rockchip: rk3399: Fix USB3 support

2019-06-30 Thread Mark Kettenis
Ever since the dts files were synchronized in commit 0a09f2f1173d ("rockchip: Adjust rk3399 device tree to be closer to linux") USB3 support on Rockchip RK3399 boards has been broken. This series restores the functionality by adopting the dwc3-of-simple glue driver. Changes in v2: - fix spelling

[U-Boot] [PATCH v2 2/4] usb: dwc3-of-simple: Add support for RK3399

2019-06-30 Thread Mark Kettenis
Add compatible string for RK3399 and enable it by default on Rockchip platforms with USB3 support. Signed-off-by: Mark Kettenis Reviewed-by: Kever Yang --- drivers/usb/host/Kconfig | 1 + drivers/usb/host/dwc3-of-simple.c | 1 + 2 files changed, 2 insertions(+) diff --git a/drivers/us

[U-Boot] efi_loader: test_efi_grub_net()

2019-06-30 Thread Heinrich Schuchardt
Hello Alex, the test/py/tests/test_efi_loader.py test for GRUB is failing for me. I get the following output: => tftpboot 4000 orangepi-pc/grubarm.efi Using ethernet@1c3 device TFTP from server 192.168.123.3; our IP address is 192.168.123.85 Filename 'orangepi-pc/grubarm.efi'. Load addre

Re: [U-Boot] What if ATF can be part of U-Boot source, like SPL?

2019-06-30 Thread Marek Vasut
On 6/30/19 4:29 PM, Tom Rini wrote: > On Sun, Jun 30, 2019 at 04:20:41PM +0200, Marek Vasut wrote: >> On 6/30/19 4:17 PM, Tom Rini wrote: >>> On Sun, Jun 30, 2019 at 04:03:52PM +0200, Marek Vasut wrote: On 6/30/19 3:57 PM, Tom Rini wrote: > On Sat, Jun 29, 2019 at 08:32:00PM +0530, Jagan T

Re: [U-Boot] [PATCH 3/4] usb: xhci-dwc3: Add USB2 PHY configuration

2019-06-30 Thread Marek Vasut
On 6/30/19 4:25 PM, Mark Kettenis wrote: >> From: Marek Vasut >> Date: Sun, 30 Jun 2019 15:36:03 +0200 >> >> On 6/30/19 3:31 PM, Kever Yang wrote: >>> Hi Mark, >>> >>>     I add Marek and Bin Meng for this patch, I'm not sure where >>> >>> are these phy setting should go. >>> >>> Thanks, >>> - Kev

Re: [U-Boot] [GIT PULL] ARM: uniphier: UniPhier SoC update for v2019.07

2019-06-30 Thread Tom Rini
On Sat, Jun 29, 2019 at 11:01:52PM +0900, Masahiro Yamada wrote: > Hi Tom, > > Please pull some updates before the release. > All of them are trivial enough. > Thanks. > > > The following changes since commit 69492fb4c56d82142e0312474369d8da97d5182d: > > ARM: uniphier: move sg_set_{pinsel, i

Re: [U-Boot] [PATCH 0/2] tools: mkenvimage: Fixes for reading from pipes

2019-06-30 Thread Tom Rini
On Sun, Jun 30, 2019 at 02:44:59AM +0100, Andre Przywara wrote: > This fixes two issues I had when trying to create an envimage from a > more complex pipe: > - The read process stops when the read(2) syscall returns less bytes > than requested. > - Specifying an input filename expects this to be

Re: [U-Boot] Resent: Pull request for UEFI sub-system for v2019.07-rc5 (4)

2019-06-30 Thread Tom Rini
On Sat, Jun 29, 2019 at 12:19:11PM +0200, Heinrich Schuchardt wrote: > The following changes since commit 0352e878d2b80b2575e02310e891e936251b3992: > > Merge tag 'u-boot-imx-20190628' of > https://gitlab.denx.de/u-boot/custodians/u-boot-imx (2019-06-28 08:00:22 > -0400) > > are available in th

Re: [U-Boot] [PATCH 1/4] rockchip: clk: rk3399: handle clk_enable requests for USB3

2019-06-30 Thread Mark Kettenis
> From: Kever Yang > Date: Sun, 30 Jun 2019 21:24:59 +0800 > > Hi Mark, > >     Thanks for your patches, and see comments below. > > On 06/30/2019 12:29 AM, Mark Kettenis wrote: > > The "simple" OF glue layer for the Designware USB3 core enables > > all refernced clocks. These need to be need

[U-Boot] [PATCH] AM33xx: Fix bad addressing in PLL dividers setting

2019-06-30 Thread Martin Devera
Original code aborts always. The bug was unnoticed probably because 'if' condition was never met. when using xtal frequency 25MHz, it blows up. Signed-off-by: Martin Devera --- arch/arm/mach-omap2/am33xx/clock.c | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/arch/

Re: [U-Boot] What if ATF can be part of U-Boot source, like SPL?

2019-06-30 Thread Tom Rini
On Sun, Jun 30, 2019 at 04:20:41PM +0200, Marek Vasut wrote: > On 6/30/19 4:17 PM, Tom Rini wrote: > > On Sun, Jun 30, 2019 at 04:03:52PM +0200, Marek Vasut wrote: > >> On 6/30/19 3:57 PM, Tom Rini wrote: > >>> On Sat, Jun 29, 2019 at 08:32:00PM +0530, Jagan Teki wrote: > >>> > In terms of cod

Re: [U-Boot] [PATCH 3/4] usb: xhci-dwc3: Add USB2 PHY configuration

2019-06-30 Thread Mark Kettenis
> From: Marek Vasut > Date: Sun, 30 Jun 2019 15:36:03 +0200 > > On 6/30/19 3:31 PM, Kever Yang wrote: > > Hi Mark, > > > >     I add Marek and Bin Meng for this patch, I'm not sure where > > > > are these phy setting should go. > > > > Thanks, > > - Kever > > On 06/30/2019 12:29 AM, Mark Kette

Re: [U-Boot] What if ATF can be part of U-Boot source, like SPL?

2019-06-30 Thread Marek Vasut
On 6/30/19 4:17 PM, Tom Rini wrote: > On Sun, Jun 30, 2019 at 04:03:52PM +0200, Marek Vasut wrote: >> On 6/30/19 3:57 PM, Tom Rini wrote: >>> On Sat, Jun 29, 2019 at 08:32:00PM +0530, Jagan Teki wrote: >>> In terms of code maintenance and development feasibility it is always a better appr

Re: [U-Boot] What if ATF can be part of U-Boot source, like SPL?

2019-06-30 Thread Tom Rini
On Sun, Jun 30, 2019 at 04:03:52PM +0200, Marek Vasut wrote: > On 6/30/19 3:57 PM, Tom Rini wrote: > > On Sat, Jun 29, 2019 at 08:32:00PM +0530, Jagan Teki wrote: > > > >> In terms of code maintenance and development feasibility it is always > >> a better approach to have out-of-tree code or binar

Re: [U-Boot] What if ATF can be part of U-Boot source, like SPL?

2019-06-30 Thread Michael Nazzareno Trimarchi
On Sun, Jun 30, 2019 at 4:03 PM Marek Vasut wrote: > > On 6/30/19 3:57 PM, Tom Rini wrote: > > On Sat, Jun 29, 2019 at 08:32:00PM +0530, Jagan Teki wrote: > > > >> In terms of code maintenance and development feasibility it is always > >> a better approach to have out-of-tree code or binary to be

Re: [U-Boot] What if ATF can be part of U-Boot source, like SPL?

2019-06-30 Thread Marek Vasut
On 6/30/19 3:57 PM, Tom Rini wrote: > On Sat, Jun 29, 2019 at 08:32:00PM +0530, Jagan Teki wrote: > >> In terms of code maintenance and development feasibility it is always >> a better approach to have out-of-tree code or binary to be part of >> in-house source tree. >> >> This is what exactly it

Re: [U-Boot] What if ATF can be part of U-Boot source, like SPL?

2019-06-30 Thread Tom Rini
On Sat, Jun 29, 2019 at 08:32:00PM +0530, Jagan Teki wrote: > In terms of code maintenance and development feasibility it is always > a better approach to have out-of-tree code or binary to be part of > in-house source tree. > > This is what exactly it was done for SPL, if I'm not wrong. So can w

Re: [U-Boot] [PATCH v3 7/8] rockchip: config: tiner-rk3288: extend CONFIG_SYS_MONITOR_LEN to 600KB

2019-06-30 Thread Jagan Teki
On Fri, Jun 28, 2019 at 3:38 PM Kever Yang wrote: > > The raw u-boot.bin for tinker board has been about 450KB without > debug option, and 550KB with all debug on, and the default value is 200KB, > which is not enough for run raw u-boot.bin. > > Signed-off-by: Kever Yang > --- > > Changes in v3:

Re: [U-Boot] [PATCH v3 3/8] rockchip: dts: rk3288: move reloc tag into -u-boot dts

2019-06-30 Thread Jagan Teki
On Fri, Jun 28, 2019 at 3:38 PM Kever Yang wrote: > > Move all the tag "u-boot,dm-pre-reloc" from rk3288.dtsi > into rk3288-u-boot.dtsi. > > Signed-off-by: Kever Yang > --- > > Changes in v3: > - include "rk3288-u-boot.dtsi" for board already have board > level -u-boot.dtsi > > Changes in v2: N

Re: [U-Boot] [PATCH 3/4] usb: xhci-dwc3: Add USB2 PHY configuration

2019-06-30 Thread Marek Vasut
On 6/30/19 3:31 PM, Kever Yang wrote: > Hi Mark, > >     I add Marek and Bin Meng for this patch, I'm not sure where > > are these phy setting should go. > > Thanks, > - Kever > On 06/30/2019 12:29 AM, Mark Kettenis wrote: >> Configure USB2 PHY register based on "phy_type" property and >> handle

Re: [U-Boot] [PATCH 3/4] usb: xhci-dwc3: Add USB2 PHY configuration

2019-06-30 Thread Kever Yang
Hi Mark,     I add Marek and Bin Meng for this patch, I'm not sure where are these phy setting should go. Thanks, - Kever On 06/30/2019 12:29 AM, Mark Kettenis wrote: > Configure USB2 PHY register based on "phy_type" property and > handle all the quirks that are relevant for Rockchip RK3399 SoCs

Re: [U-Boot] [PATCH 4/4] rockchip: xhci: Remove RK3399 support

2019-06-30 Thread Kever Yang
Hi Mark, On 06/30/2019 12:29 AM, Mark Kettenis wrote: > Remove RK3399 compatible strings as this driver is no longer > used on that SoC. > > Signed-off-by: Mark Kettenis Reviewed-by: Kever Yang Thanks, - Kever > --- > drivers/usb/host/xhci-rockchip.c | 2 -- > 1 file changed, 2 deletions(-)

Re: [U-Boot] [PATCH 2/4] usb: dwc3-of-simple: Add support for RK3399

2019-06-30 Thread Kever Yang
Hi Mark, On 06/30/2019 12:29 AM, Mark Kettenis wrote: > Add compatible string for RK3399 and enable it by default on > Rockchip platforms with USB3 support. > > Signed-off-by: Mark Kettenis Reviewed-by: Kever Yang Thanks, - Kever > --- > drivers/usb/host/Kconfig | 1 + > drivers/usb

Re: [U-Boot] [PATCH 1/4] rockchip: clk: rk3399: handle clk_enable requests for USB3

2019-06-30 Thread Kever Yang
Hi Mark,     Thanks for your patches, and see comments below. On 06/30/2019 12:29 AM, Mark Kettenis wrote: > The "simple" OF glue layer for the Designware USB3 core enables > all refernced clocks. These need to be need to be implemented > otherwise the driver fails to probe. A dummy implementat

Re: [U-Boot] [PATCH v2 2/3] spl: add relocation support

2019-06-30 Thread Kever Yang
Hi Simon, Andy,     I think you are mixing up two different topic, they should be separate: 1. re-use API in BootRom in SPL to make SPL have a small enough size; 2. Enable relocation feature so that we can use the space in low address freely; The 1st topic about re-use API in BootRom is depends

Re: [U-Boot] What if ATF can be part of U-Boot source, like SPL?

2019-06-30 Thread Wolfgang Denk
Dear Jagan, In message you wrote: > In terms of code maintenance and development feasibility it is always > a better approach to have out-of-tree code or binary to be part of > in-house source tree. > > This is what exactly it was done for SPL, if I'm not wrong. So can we > do the same thing for

Re: [U-Boot] [U-Boot-Board-Maintainers] [U-Boot-Custodians] [ANN] U-Boot v2019.07-rc4 released

2019-06-30 Thread Matwey V. Kornilov
25.06.2019 15:04, Tom Rini пишет: > On Tue, Jun 25, 2019 at 01:10:26PM +0200, Neil Armstrong wrote: >> On 24/06/2019 17:29, Tom Rini wrote: >>> On Sat, Jun 22, 2019 at 09:43:42PM +0200, Marek Vasut wrote: On 6/22/19 9:12 PM, Heinrich Schuchardt wrote: > On 6/22/19 8:15 PM, Simon Glass wrot

Re: [U-Boot] [U-Boot-Custodians] [U-Boot-Board-Maintainers] [ANN] U-Boot v2019.07-rc4 released

2019-06-30 Thread Matwey V. Kornilov
22.06.2019 22:12, Heinrich Schuchardt пишет: > On 6/22/19 8:15 PM, Simon Glass wrote: >> Hi, >> >> On Sat, 22 Jun 2019 at 16:10, Andreas Färber wrote: >>> >>> Hi Simon, >>> >>> Am 22.06.19 um 16:55 schrieb Simon Glass: I'd like to better understand the benefits of the 3-month timeline. >>> >>

Re: [U-Boot] [PATCH] tools: buildman: add gcc-8.1.0 support

2019-06-30 Thread Bin Meng
Hi Thomas, On Sun, Jun 30, 2019 at 10:07 AM Thomas Chou wrote: > > Add gcc-8.1.0 support to buildman toolchain. > > The old gcc-7.3.0 has shared libraries issues on Ubuntu 18.04 and 19.04. > We should fix all issues before we turn on the 8.1 for buildman, otherwise the travis-ci will break. > S

Re: [U-Boot] (no subject)

2019-06-30 Thread Bin Meng
On Sun, Jun 30, 2019 at 10:07 AM Thomas Chou wrote: > > > Add gcc-8.1.0 support to buildman toolchain. > > The old gcc-7.3.0 has shared libraries issues on Ubuntu 18.04LTS and > 19.04. > > Though both 7.3.0 and 8.1.0 have arc and nds32 compilers, the following > errors were generated on Ubuntu 19.