> -Original Message-
> From: Scott Wood
> Sent: Friday, September 09, 2016 7:30 AM
> To: Prabhakar Kushwaha ; york sun
> ; u-boot@lists.denx.de
> Subject: Re: [PATCH] arch: ifc: update the IFC IP input clock
>
> On 09/08/2016 08:46 PM, Prabhakar Kushwaha wrote:
> >
> >> -Original Mess
On 09/09/16 04:15, Masahiro Yamada wrote:
> 2016-09-08 15:47 GMT+09:00 Paul Burton :
>> The implementations of clk_get_by_index & clk_get_by_name are only
>> available when CONFIG_CLK is enabled.
>
> Unless I am missing something,
> I think this statement also applies to other clk API functions
>
This bug appears in b6396403 which makes u-boot unable to pass
arguments via bootm to a standalone application without this patch.
Steps to reproduce.
Compile a u-boot. Use mkimage to package the standalone hello_world.bin
file.
e.g. For the MIPS Boston platform
mkimage -n "hello" -A mips -O u-
In both DOS and ISO partition tables the same code to create partition name
like "hda1" was repeated.
Code moved to into a new function part_set_generic_name() in part.c and
optimized.
Added recognition of MMC and SD types, name is like "mmcsda1".
Signed-off-by: Petr Kulhavy
Reviewed-by: Tom Ri
So far partition search by name has been supported only on the EFI partition
table. This patch extends the search to all partition tables.
Rename part_get_info_efi_by_name() to part_get_info_by_name(), move it from
part_efi.c into part.c and make it a generic function which traverses all part
driv
Move FASTBOOT_MBR_NAME and FASTBOOT_GPT_NAME into Kconfig.
Add dependency on the FASTBOOT_FLASH setting (also for FASTBOOT_MBR_NAME).
Remove the now redundant GPT_ENTRY_NAME.
Signed-off-by: Petr Kulhavy
---
v2: initial
README | 2 +-
cmd/fastboot/Kconfig | 24
This set extends the Fastboot implementation from GPT-only to any partition
support. Further it adds a special target "mbr" (configurable) to write the
DOS MBR.
Version 2:
Add a fourth patch into the set to move CONFIG_FASTBOOT_GPT_NAME and
CONFIG_FASTBOOT_MBR_NAME into cmd/fastboot/Kconfig
Pet
Add special target "mbr" (otherwise configurable via CONFIG_FASTBOOT_MBR_NAME)
to write MBR partition table.
Partitions are now searched using the generic function which finds any
partiiton by name. For MBR the partition names hda1, sda1, etc. are used.
Signed-off-by: Petr Kulhavy
Reviewed-by: To
This patch support the driver model for s5p_sdhci controller.
To support the legacy model, maintained the existing code.
Note: If use the Driver Model, it needs to modify the device-tree.
In future, will update the Device-tree and enable the configuratioin.
(CONFIG_BLK, CONFIG_DM_MMC and CONFING_D
To support loading a 32-bit OS, the execution state will change from
AArch64 to AArch32 when jumping to kernel.
The architecture information will be got through checking FIT image,
then U-Boot will load 32-bit OS or 64-bit OS automatically.
Signed-off-by: Ebony Zhu
Signed-off-by: Alison Wang
Si
This series is to support loading a 32-bit OS, the execution state will change
from
AArch64 to AArch32 when jumping to kernel. The architecture information will be
got
through checking FIT image, then U-Boot will load 32-bit OS or 64-bit OS
automatically.
Spin-table method is used for secondary
This patch is to use the the generic lowlevel_init instead of the
specific one.
Signed-off-by: Alison Wang
---
arch/arm/mach-exynos/soc.c | 8
1 file changed, 8 deletions(-)
diff --git a/arch/arm/mach-exynos/soc.c b/arch/arm/mach-exynos/soc.c
index f9c7468..737a8dd 100644
--- a/arch/ar
Hi,
On 08-09-16 13:58, Ian Campbell wrote:
On Sat, 2016-09-03 at 13:12 +0200, Hans de Goede wrote:
This adds an emac node to the orangepi-2 dts (not yet merged
upstream,
but in u-boot we already have emac support); fixes the alphetically
sorting of nodes in sun8i-h3-orangepi-plus.dts and disabl
If USB is stopped, just run 'usb start' instead of printing message.
Then user didn't consider whether usb is started or stopped.
Signed-off-by: Jaehoon Chung
---
cmd/usb.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/cmd/usb.c b/cmd/usb.c
index 455127c..4970851 100644
Tweaks (no functional changes) to include/search.h, including:
* use standard multiple inclusion check
* fix spelling mistakes
* have comments match actual names in function prototypes
* remove obsolete reference to "do_apply"
* replace "hashing table" with "hash table"
Signed-off-by: Rober
Spin-table method is used for secondary cores to load 32-bit OS. The
architecture information will be got through checking FIT image and
saved in the os_arch element of spin-table, then the secondary cores
will check os_arch and jump to 32-bit OS or 64-bit OS automatically.
Signed-off-by: Alison W
writes:
>> "Robert" == Robert P J Day writes:
>
> Robert> from lib/hashtable.c:
>
> Robert> typedef struct _ENTRY { int used; ENTRY entry; } _ENTRY;
>
> Robert> ok, that's just kind of creepy ... defining a typedef over top
> Robert> of a struct of the same name. does anyone else find th
We only need the function found in cmd/disk.c when we have IDE, SCSI or
USB_STORAGE enabled. While the first two are easy to get right, in the
3rd case we assume that the set of cases where we do have USB and do not
enable USB_STORAGE are small enough that we can take the small bloat of
un-discard
Hi Tom,
On Wed, Sep 7, 2016 at 2:57 PM, Tom Rini wrote:
> Applied to u-boot/master, thanks!
Still don't appear at http://git.denx.de/?p=u-boot.git;a=summary
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot
a matter of picky terminology, but i'm reading the docs on FIT
images, and in doc/uImage.FIT/source_file_format.txt, early on, i
read:
"U-Boot new uImage source file format (bindings definition)
...
This document defines new uImage structure ..."
and so on and so on ... a number of refer
move VERSION_VARIABLE from board config file into a
Kconfig option.
Signed-off-by: Heiko Schocher
---
Tested with tbot:
http://lists.denx.de/pipermail/u-boot/2016-June/258119.html
result from first run:
Boards : 1193
compile err : 60
not checked : 1
U-Boot good : 1129 bad 3
SPL good: 4
The exact SoC revsion number can be recognized from U-Boot log.
Signed-off-by: Wenbin Song
Signed-off-by: Mingkai Hu
---
arch/arm/cpu/armv8/fsl-layerscape/cpu.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/arch/arm/cpu/armv8/fsl-layerscape/cpu.c
b/arch/arm/cpu/armv8/fsl-layerscape/cpu
Hi,
i'm trying to boot a classic A33 q8 clone with uboot copied in sdcard
but nothing happen (not backlight on)
dd if=u-boot-sunxi-with-spl.bin of=/dev/sdb bs=1024 seek=8 on the partitioned
sdcard for reference
if i compile with configuration for A13 based tablet on A13 based tablet it
wor
Hi,
On 09-09-16 14:10, far5893 wrote:
Hi,
i'm trying to boot a classic A33 q8 clone with uboot copied in sdcard
but nothing happen (not backlight on)
dd if=u-boot-sunxi-with-spl.bin of=/dev/sdb bs=1024 seek=8 on the partitioned
sdcard for reference
In my experience the A33 can be a bit picky
This series introduces support for initialising & maintaining L2 caches
on MIPS systems. This allows U-Boot to function correctly on systems
where such caches are present, whereas without performing L2 maintenance
it is likely to fail with cache coherence issues when writing code or
performing DMA
The latest rk3288-miniarm board doesn't have eMMC device, so remove it.
Signed-off-by: Ziyuan Xu
---
arch/arm/dts/rk3288-miniarm.dtsi | 12
board/rockchip/miniarm_rk3288/miniarm-rk3288.c | 8
include/configs/miniarm_rk3288.h | 7 ++-
3 fil
Currently we have a mismash of architectures which use arch_cpu_init
from architecture-wide code (arc, avr32, blackfin, mips, nios2, xtensa)
and architectures which use arch_cpu_init from machine/SoC level code
(arm, x86).
In order to clean this mess up & allow for both use cases, introduce a
new
In order to prepare for MIPS arch code making use of arch_cpu_init in a
later patch, stop using it from ath79 SoC code & instead use the new
mach_cpu_init which is provided for this purpose.
Signed-off-by: Paul Burton
---
Changes in v2:
- Rebase atop changes in patch 1
arch/mips/mach-ath79/cp
Rather than probing the cache line sizes on every call of any cache
maintenance function, probe them once during boot & store the values in
the global data structure for later use. This will reduce the overhead
of the cache maintenance functions, which isn't a big deal yet but
becomes more importan
The coprocessor 0 Config register includes 9 implementation defined
bits, which in some processors do things like enable write combining or
other functionality. We ought not to wipe them to 0 during boot. Rather
than doing so, preserve their value & only clear the bits standardised
by the MIPS arch
Enable use of the instruction cache immediately after it has been
initialised. This will only take effect if U-Boot was linked to run from
kseg0 rather than kseg1, but when this is the case the data cache
initialisation code will run cached & thus significantly faster.
Signed-off-by: Paul Burton
Define names for registers holding cache sizes throughout
mips_cache_reset, in order to make the code easier to read & allow for
changing register assignments more easily.
Signed-off-by: Paul Burton
---
Changes in v2: None
arch/mips/lib/cache_init.S | 42 +++
Map the Global Control Registers (GCRs) provided by the MIPS Coherence
Manager (CM) in preparation for using some of them in later patches.
Signed-off-by: Paul Burton
---
Changes in v2: None
arch/mips/Kconfig | 16
arch/mips/cpu/Makefile | 2 ++
arch/mips/cpu/cm_
This patch adds support for initialising & maintaining L2 caches on MIPS
systems. The L2 cache configuration may be advertised through either
coprocessor 0 or the MIPS Coherence Manager depending upon the system,
and support for both is included.
If the L2 can be bypassed then we bypass it early i
Enable support for the MIPS Coherence Manager & L2 caches on the MIPS
Malta board, removing the need for us to attempt to bypass the L2 during
boot (which would fail with recent CPUs that expose L2 config via the CM
anyway).
Signed-off-by: Paul Burton
---
Changes in v2: None
arch/mips/Kconfig
On Fri, Sep 09, 2016 at 09:34:23AM -0300, Fabio Estevam wrote:
> Hi Tom,
>
> On Wed, Sep 7, 2016 at 2:57 PM, Tom Rini wrote:
>
> > Applied to u-boot/master, thanks!
>
> Still don't appear at http://git.denx.de/?p=u-boot.git;a=summary
Gah. Git annoys me every once in a while, fixed now. Than
On systems where cache initialisation doesn't require zeroed memory (ie.
systems where CONFIG_SYS_MIPS_CACHE_INIT_RAM_LOAD is not defined)
perform cache initialisation prior to lowlevel_init & DDR
initialisation. This allows for DDR initialisation code to run cached &
thus significantly faster.
Si
On Fri, Sep 09, 2016 at 01:52:34PM +0900, Masahiro Yamada wrote:
[snip]
> BTW,
>
> $ git grep CONFIG_USB=y configs/*_defconfig | wc
> 669 669 30938
> $ git grep CONFIG_USB_STORAGE=y configs/*_defconfig | wc
> 650 650 35349
>
>
> With this series, we will have 669 boards with
On Fri, Sep 09, 2016 at 10:27:18AM +0200, Petr Kulhavy wrote:
> Move FASTBOOT_MBR_NAME and FASTBOOT_GPT_NAME into Kconfig.
> Add dependency on the FASTBOOT_FLASH setting (also for FASTBOOT_MBR_NAME).
> Remove the now redundant GPT_ENTRY_NAME.
>
> Signed-off-by: Petr Kulhavy
Reviewed-by: Tom Rin
On Fri, Sep 09, 2016 at 08:12:49AM +0200, Heiko Schocher wrote:
[snip]
> One remark:
> define CONFIG_SPL_NET_VCI_STRING="..." is removed from
> some defconfigs, but not again added to the defconfig.
> This is for all boards, which use this define ... but as
> the resulting images are not changes,
On Fri, 9 Sep 2016 18:10:38 +0200
Marcel Ziswiler marcel.ziswi...@toradex.com wrote:
> Fix spelling of debug message from cnnot to cannot.
>
> Signed-off-by: Marcel Ziswiler
Acked-by: Anatolij Gustschin
___
U-Boot mailing list
U-Boot@lists.denx.de
h
On 09/08/2016 07:19 PM, Tom Rini wrote:
Signed-off-by: Tom Rini
diff --git a/configs/harmony_defconfig b/configs/harmony_defconfig
-CONFIG_USE_PRIVATE_LIBGCC=y
I assume that's because =y is the default for that now?
diff --git a/configs/p2771--000_defconfig b/configs/p2771--000
Hi,
I am trying to activate bootstage on ARMV7 architecture.
My platform use the generic armv7 timer defined in file
./arch/arm/cpu/armv7m/timer.c:
For me the get_timer function should not used before timer_init (which
initialize gd->arch.timer_rate_hz) at least for the ARMV7 timer.
But in the i
On Sonntag, 14. August 2016 00:57:38 CEST Benoît Thébaudeau wrote:
> Hi,
>
> On Tue, Aug 2, 2016 at 9:35 PM, Benoît Thébaudeau
>
> wrote:
> > On Tue, Aug 2, 2016 at 8:53 PM, Stephen Warren
wrote:
> >> On 07/28/2016 12:11 AM, Tien Fong Chee wrote:
> >>> Single 64KB get_contents_vfatname_block g
On Freitag, 2. September 2016 10:53:08 CEST you wrote:
> >
> > Adding this to the current test script is somewhat problematic. The test
> > runs all tests for fat and ext4, so each testcase should be file system
> > agnostic. Unfortunately fat and ext4 (at least as implemented in U-Boot)
> > have
On 09/08/2016 05:07 PM, Prabhakar Kushwaha wrote:
>>> UART: supports two UARTs up to 115200 bps for console
>>
>> The board specification doesn't belong to commit message. Instead, you
>> can add what features have been supported, such as boot source, any
>> important commands, special care to p
Hi Tom,
A few last minute fixes. Turns out I broke NFS.
The following changes since commit 16f416661ec5ffa46b3f879a0b83907bbec13714:
Merge branch 'master' of git://www.denx.de/git/u-boot-imx (2016-09-09
09:45:32 -0400)
are available in the git repository at:
git://git.denx.de/u-boot-net.
Hi Joshua,
https://patchwork.ozlabs.org/patch/666191/ was applied to u-boot-net.git.
Thanks!
-Joe
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot
On Fri, Sep 09, 2016 at 10:21:45AM -0600, Stephen Warren wrote:
> On 09/08/2016 07:19 PM, Tom Rini wrote:
> >Signed-off-by: Tom Rini
/bin/bash: ess: command not found
> >diff --git a/configs/harmony_defconfig b/configs/harmony_defconfig
>
> >-CONFIG_USE_PRIVATE_LIBGCC=y
>
> I assume that's becau
Without this patch the following error will be shown:
Colibri T20 # usb start
starting USB...
No controllers found
This patch fixes USB operation and also the controller order as the
CI UDC driver may only be instantiated on the first aka OTG port.
Signed-off-by: Marcel Ziswiler
---
arch/arm/
Without this patch the following error will be shown:
stdio_add_devices: Video device failed (ret=-22)
As commit ec5507707a1d1e84056a6c864338f95f6118d3ca (video: tegra: Move
to using simple-panel and pwm-backlight) states the Colibri T20 needs
updating too which this patch finally attempts doing.
This series addresses various issues as seen on Colibri T20. Please
note that for successful Ethernet operation not only on Colibri T20
but also on Colibri T30 the following patch will still need applying
as well:
[PATCH] net: asix: Fix ASIX 88772B with driver model
https://www.mail-archive.com/u
The Tegra 2 aka T20 is not host PC capable. Therefore move the define
CONFIG_CI_UDC_HAS_HOSTPC from the generic tegra-common-usb-gadget.h
header file into resp. SoC type specific ones.
Signed-off-by: Marcel Ziswiler
---
include/configs/tegra-common-usb-gadget.h | 1 -
include/configs/tegra114-c
Enable USB gadget DFU functionality for NAND as well.
Signed-off-by: Marcel Ziswiler
---
include/configs/colibri_t20.h | 6 ++
1 file changed, 6 insertions(+)
diff --git a/include/configs/colibri_t20.h b/include/configs/colibri_t20.h
index c15f0cb..33e1ef5 100644
--- a/include/configs/col
Fix spelling of debug message from cnnot to cannot.
Signed-off-by: Marcel Ziswiler
---
drivers/video/simple_panel.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/video/simple_panel.c b/drivers/video/simple_panel.c
index b2fe345..baa95f6 100644
--- a/drivers/video/s
On 09/09/2016 01:02 PM, Tom Rini wrote:
On Fri, Sep 09, 2016 at 10:21:45AM -0600, Stephen Warren wrote:
On 09/08/2016 07:19 PM, Tom Rini wrote:
Signed-off-by: Tom Rini
/bin/bash: ess: command not found
diff --git a/configs/harmony_defconfig b/configs/harmony_defconfig
-CONFIG_USE_PRIVATE_
On Fri, Sep 09, 2016 at 01:09:43PM -0600, Stephen Warren wrote:
> On 09/09/2016 01:02 PM, Tom Rini wrote:
> >On Fri, Sep 09, 2016 at 10:21:45AM -0600, Stephen Warren wrote:
> >>On 09/08/2016 07:19 PM, Tom Rini wrote:
> >>>Signed-off-by: Tom Rini
> >/bin/bash: ess: command not found
> >>>diff --git
On Thu, Sep 08, 2016 at 09:19:04PM -0400, Tom Rini wrote:
> Signed-off-by: Tom Rini
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/list
On Thu, Sep 08, 2016 at 09:19:05PM -0400, Tom Rini wrote:
> In some cases we were missing CONFIG_USB=y so enable that when needed.
>
> Signed-off-by: Tom Rini
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digital signature
__
On Fri, Sep 09, 2016 at 01:52:41PM -0500, Joe Hershberger wrote:
> Hi Tom,
>
> A few last minute fixes. Turns out I broke NFS.
>
> The following changes since commit 16f416661ec5ffa46b3f879a0b83907bbec13714:
>
> Merge branch 'master' of git://www.denx.de/git/u-boot-imx (2016-09-09
> 09:45:32
On Fri, Sep 09, 2016 at 07:26:45AM -0400, Tom Rini wrote:
> We only need the function found in cmd/disk.c when we have IDE, SCSI or
> USB_STORAGE enabled. While the first two are easy to get right, in the
> 3rd case we assume that the set of cases where we do have USB and do not
> enable USB_STOR
On 09/09/2016 01:11 PM, Tom Rini wrote:
On Fri, Sep 09, 2016 at 01:09:43PM -0600, Stephen Warren wrote:
On 09/09/2016 01:02 PM, Tom Rini wrote:
On Fri, Sep 09, 2016 at 10:21:45AM -0600, Stephen Warren wrote:
On 09/08/2016 07:19 PM, Tom Rini wrote:
Signed-off-by: Tom Rini
/bin/bash: ess: com
As discussed before rather than Joshua's patch the one from Alban
should long since have been applied:
https://www.mail-archive.com/u-boot@lists.denx.de/msg221455.html
This reverts commit 41d1258aceb45b45f9e68f67a9c40f0afbc09dc9.
Signed-off-by: Marcel Ziswiler
---
drivers/usb/eth/asix.c | 5
On Fri, Sep 09, 2016 at 03:06:01PM -0600, Stephen Warren wrote:
> On 09/09/2016 01:11 PM, Tom Rini wrote:
> >On Fri, Sep 09, 2016 at 01:09:43PM -0600, Stephen Warren wrote:
> >>On 09/09/2016 01:02 PM, Tom Rini wrote:
> >>>On Fri, Sep 09, 2016 at 10:21:45AM -0600, Stephen Warren wrote:
> On 09/0
Hi Marcel,
On Fri, Sep 9, 2016 at 4:12 PM, Marcel Ziswiler
wrote:
> As discussed before rather than Joshua's patch the one from Alban
> should long since have been applied:
>
> https://www.mail-archive.com/u-boot@lists.denx.de/msg221455.html
>
> This reverts commit 41d1258aceb45b45f9e68f67a9c40f0
Hi,
On Fri, Sep 9, 2016 at 6:34 PM, Brüns, Stefan
wrote:
> On Sonntag, 14. August 2016 00:57:38 CEST Benoît Thébaudeau wrote:
>> On Tue, Aug 2, 2016 at 9:35 PM, Benoît Thébaudeau
>>
>> wrote:
>> > On Tue, Aug 2, 2016 at 8:53 PM, Stephen Warren
> wrote:
>> >> On 07/28/2016 12:11 AM, Tien Fong Ch
On 09/09/2016 03:14 PM, Tom Rini wrote:
On Fri, Sep 09, 2016 at 03:06:01PM -0600, Stephen Warren wrote:
On 09/09/2016 01:11 PM, Tom Rini wrote:
On Fri, Sep 09, 2016 at 01:09:43PM -0600, Stephen Warren wrote:
On 09/09/2016 01:02 PM, Tom Rini wrote:
On Fri, Sep 09, 2016 at 10:21:45AM -0600, Ste
On 09/09/2016 11:24 PM, Marcel Ziswiler wrote:
> On Fri, 2016-09-09 at 16:16 -0500, Joe Hershberger wrote:
>> Hi Marcel,
>>
>> On Fri, Sep 9, 2016 at 4:12 PM, Marcel Ziswiler
>> wrote:
>>>
>>> As discussed before rather than Joshua's patch the one from Alban
>>> should long since have been applied
On 09/09/2016 11:06 PM, Marcel Ziswiler wrote:
> On Fri, 2016-09-09 at 13:57 -0500, Joe Hershberger wrote:
>> Hi Joshua,
>>
>> https://patchwork.ozlabs.org/patch/666191/ was applied to u-boot-
>> net.git.
>>
>> Thanks!
>> -Joe
>
> No, sorry, but this is really the wrong approach! As discussed befo
Hi Maxim,
On 9 September 2016 at 15:53, Maxim Sloyko wrote:
>
> Hi all,
>
> First, disclaimer: this is the first time I'm doing something with U-Boot or
> the part (ast2500), so any claim I make below can be false or just plain
> nonsense.
Welcome!
>
> I'm working on expanding support of Aspe
On 09/10/2016 01:13 AM, Marcel Ziswiler wrote:
> On Sat, 2016-09-10 at 01:04 +0200, Marek Vasut wrote:
>> On 09/09/2016 11:06 PM, Marcel Ziswiler wrote:
>>>
>>> On Fri, 2016-09-09 at 13:57 -0500, Joe Hershberger wrote:
Hi Joshua,
https://patchwork.ozlabs.org/patch/666191/ was ap
On Fri, 2016-09-09 at 13:57 -0500, Joe Hershberger wrote:
> Hi Joshua,
>
> https://patchwork.ozlabs.org/patch/666191/ was applied to u-boot-
> net.git.
>
> Thanks!
> -Joe
No, sorry, but this is really the wrong approach! As discussed before
rather than Joshua's patch the one from Alban should lo
From: Alban Bedel
Commit 147271209a9d ("net: asix: fix operation without eeprom")
added a special handling for ASIX 88772B that enable another
type of header. This break the driver in DM mode as the extra handling
needed in the receive path is missing.
However this new header mode is not require
Since commit aa7a648747d8c704a9a81c9e493d386930724e9d
("net: Stop including NFS overhead in defragment max") the following
has been reproducibly observed while trying to transfer data over TFTP:
Load address: 0x80408000
Loading: EHCI timed out on TD - token=0x8008d80
T EHCI timed out on TD - token
On Sat, 2016-09-10 at 01:04 +0200, Marek Vasut wrote:
> On 09/09/2016 11:06 PM, Marcel Ziswiler wrote:
> >
> > On Fri, 2016-09-09 at 13:57 -0500, Joe Hershberger wrote:
> > >
> > > Hi Joshua,
> > >
> > > https://patchwork.ozlabs.org/patch/666191/ was applied to u-boot-
> > > net.git.
> > >
> >
On Fri, 2016-09-09 at 16:16 -0500, Joe Hershberger wrote:
> Hi Marcel,
>
> On Fri, Sep 9, 2016 at 4:12 PM, Marcel Ziswiler
> wrote:
> >
> > As discussed before rather than Joshua's patch the one from Alban
> > should long since have been applied:
> >
> > https://www.mail-archive.com/u-boot@list
On Sat, 2016-09-10 at 02:18 +0200, Marcel Ziswiler wrote:
> On Sat, 2016-09-10 at 01:23 +0200, Marek Vasut wrote:
> >
> > On 09/10/2016 01:13 AM, Marcel Ziswiler wrote:
> > >
> > >
> > > On Sat, 2016-09-10 at 01:04 +0200, Marek Vasut wrote:
> > > >
> > > >
> > > > On 09/09/2016 11:06 PM, Marce
77 matches
Mail list logo