At present this file is omitted. It is used to build up a binary device
tree. We plan to do this in mkimage, so include this file in the build.
Signed-off-by: Simon Glass
---
tools/Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/Makefile b/tools/Makefile
index
Since we now support data outside the FIT image, bring it into the FIT image
first before we do any processing. This avoids adding new functionality to
the core FIT code for now.
Signed-off-by: Simon Glass
---
tools/fit_image.c | 97 +++
1 fil
At present FIT images are set up by providing a device tree source file
which is a file with a .its extension. We want to support automatically
creating this file based on the image supplied to mkimage. This means that
even though the final file type is always IH_TYPE_FLATDT, the image inside
may b
It is useful to know which sunxi board you are booting. Display this on
start-up to avoid confusion.
Signed-off-by: Simon Glass
---
include/configs/sunxi-common.h | 1 +
1 file changed, 1 insertion(+)
diff --git a/include/configs/sunxi-common.h b/include/configs/sunxi-common.h
index 95035d8..7
Detect a FIT when loading from MMC and handle it using the new FIT SPL
support.
Signed-off-by: Simon Glass
---
common/spl/spl_mmc.c | 75 +++-
1 file changed, 57 insertions(+), 18 deletions(-)
diff --git a/common/spl/spl_mmc.c b/common/spl/spl_mm
To make the auto-FIT feature useful we need to be able to provide a list of
device tree files on the command line for mkimage to add into the FIT. Add
support for this feature.
So far there is no support for hashing or verified boot using this method.
For those cases, a .its file must still be pro
This will be used in mkimage when working out the required size of the FIT
based on the files to be placed into it.
Signed-off-by: Simon Glass
---
doc/mkimage.1 | 4 ++--
tools/imagetool.c | 22 ++
tools/imagetool.h | 12
3 files changed, 36 insertions(+),
Enable SPL FIT support for the Linksprite pcDuino3 as an example of how this
feature is used.
This is only for demonstration purposes and is not to be applied.
Signed-off-by: Simon Glass
---
arch/arm/cpu/armv7/sunxi/board.c | 5 +
configs/Linksprite_pcDuino3_defconfig | 3 +++
2 files
Sometimes it is useful to obtain the short name for an Operating System,
architecture or compression mechanism. Provide functions for this.
Signed-off-by: Simon Glass
---
common/image.c | 26 ++
include/image.h | 27 +++
2 files changed, 49 inser
SPL calls this function with each device tree it can find in the FIT. The
board should implement this function, using whatever hardware detection it
can muster to determine the correct device tree.
Signed-off-by: Simon Glass
---
include/image.h | 13 +
1 file changed, 13 insertions(
Those commits allow sending and storing large files (e.g. 26 MiB) on the Odroid
XU3 board.
On purpose they are sent together to shed light on the process of tunning board
to
be capable of large files transfer.
I would be _REALLY_ grateful for excessive testing, since I'm not able to test
this
This patch fixes situation when one would like to write large file into
medium with the file system (fat, ext4, etc).
This change sets file size limitation to the DFU internal buffer size.
Since u-boot is not supporting interrupts and seek on file systems, it
becomes challenging to store large fil
As tested on the Odroid XU3, large files to be stored on the file system
require considerable time to be physically written to the medium.
The default 300 ms is not enough to store large file (e.g. 26 MiB).
To fix this situation the DFU_MANIFEST_POLL_TIMEOUT has been defined.
It is used to cease
This is not used outside mkimage.c, so make this variable static.
Signed-off-by: Simon Glass
---
tools/mkimage.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/mkimage.c b/tools/mkimage.c
index 5aae748..b8293f6 100644
--- a/tools/mkimage.c
+++ b/tools/mkimage.c
@@ -15
Hi,
I've been trying for a few days now to get u-boot loaded onto NAND and
actually booting here on my Olinuxino A13 which is an Allwinner CPU so the
sunxi side of things. I've had no such luck using the 2016-01 RC2 nor the
CHIP u-Boot branch, which is based off the the R8. My understanding is SPL
OK. I was waiting to see if Simon's dm display driver changes would go in via
the Tegra repo (they apply / build OK now, but I've had no time for testing).
With the merge window closing, I'll send a PR with just this fix. Thanks.
Tom
> -Original Message-
> From: Stephen Warren [mailto:s
On 01/28/2016 05:22 AM, Saksham Jain wrote:
> In LS2080/LS2085, SFP is LE and Ver is 3.4
> The base address is 0x01e80200
> SFP will be used in Secure Boot to read fuses.
> Signed-off-by: Aneesh Bansal
> Signed-off-by: Saksham Jain
> ---
Please insert a blank line before your signature for futur
Tom,
Please pull u-boot-tegra/master into U-Boot/master. Thanks!
All tegra builds are OK (32-bit and 64-bit).
The following changes since commit b20c38a973a51bf3f663bd298c63ad1b8e0de445:
arm: mvebu: Add support for the Armada XP theadorable board (2016-01-27
07:45:43 +0100)
are available in
On 01/28/2016 09:46 AM, Lukasz Majewski wrote:
This patch fixes situation when one would like to write large file into
medium with the file system (fat, ext4, etc).
This change sets file size limitation to the DFU internal buffer size.
Tested-by: Stephen Warren
I tested this on NVIDIA's Jetso
This provides a way to load a FIT containing U-Boot and a selection of device
tree files. The board can select the correct device tree by probing the
hardware. Then U-Boot is started with the selected device tree.
Signed-off-by: Simon Glass
---
Kconfig | 11 +++
common/spl/Makefil
When building a FIT, more than one device tree can be included. The board
can select (at run-time) the one that it wants.
Add a Kconfig option to allow the list of devices trees (supported by the
board) to be specified.
When using SPL_LOAD_FIT, build u-boot.img in FIT format instead of the
legacy
At present, when generating a FIT, mkimage requires a .its file containing
the structure of the FIT and referring to the images to be included.
Creating the .its file is a separate step that makes it harder to use FIT.
This is not required for creating legacy images.
Often the FIT is pretty stand
One limitation of FIT is that all the data is 'inline' within it, using a
'data' property in each image node. This means that to find out what is in
the FIT it is necessary to scan the entire file. Once loaded it can be
scanned and then the images can be copied to the correct place in memory.
In S
On 01/18/2016 12:16 PM, Tom Warren wrote:
Stephen Warren wrotea tMonday, January 18, 2016 11:23 AM:
The PMIC is configured such that its GPIOs have the correct configuration at
power-up, so no programming is required.
In fact, the current programming is actively wrong, since:
(a) the AS3722 dr
From: Stephen Warren
s/updata/update/.
Signed-off-by: Stephen Warren
---
test/py/tests/test_env.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/test/py/tests/test_env.py b/test/py/tests/test_env.py
index 651303f8cd69..c41aa5a9d9c7 100644
--- a/test/py/tests/test_env.
From: Stephen Warren
Allow the env__dfu_configs boardenv data to specify the set of DFU
transfer sizes to test. Manually specifying test sizes is useful if you
wish to test multiple DFU configurations (e.g. SD card ext4 filesystem, SD
card whole raw partition, RAM, etc.), but don't want to test e
Hi Joe,
It turns out that commit f5fb734 "net: TFTP: variables cleanup and addition"
implements the same functionality as this patch.
Please disregard this patch.
Thanks!
> -Original Message-
> From: Joe Hershberger [mailto:joe.hershber...@gmail.com]
> Sent: January-22-16 2:29 PM
> To:
On Wed, Jan 27, 2016 at 07:58:00AM +0100, Stefan Roese wrote:
> Hi Tom,
>
> please pull the following patch.
>
> Thanks,
> Stefan
>
> The following changes since commit 9e4de7fd4acc8f99b6d383c711d21c0159849629:
>
> Merge branch 'master' of http://git.denx.de/u-boot-sunxi
> (2016-01-26 17:45:
On Wed, Jan 27, 2016 at 05:30:45PM +, york sun wrote:
> Tom,
>
> The following changes since commit 12f229ea8f6c8e20f8fd07906eafc853c4c354a9:
>
> Merge git://git.denx.de/u-boot-fdt (2016-01-22 17:01:22 -0500)
>
> are available in the git repository at:
>
>
> git://git.denx.de/u-boot-f
On Thu, Jan 28, 2016 at 03:13:18PM +0800, Bin Meng wrote:
> Hi Tom,
>
> The following changes since commit b20c38a973a51bf3f663bd298c63ad1b8e0de445:
>
> arm: mvebu: Add support for the Armada XP theadorable board
> (2016-01-27 07:45:43 +0100)
>
> are available in the git repository at:
>
>
On Wed, Jan 27, 2016 at 04:42:09PM +0100, Michal Simek wrote:
> Hi Tom,
>
> here is the branch with xilinx changes which are flying around.
> It is targeting PowerPC, Microblaze, ARM and ARM64.
> I can't see any build problem via buildman.
>
> Thanks,
> Michal
>
>
> The following changes since
On Thu, Jan 28, 2016 at 10:46:47AM -0700, Tom Warren wrote:
> Tom,
>
> Please pull u-boot-tegra/master into U-Boot/master. Thanks!
>
> All tegra builds are OK (32-bit and 64-bit).
>
> The following changes since commit b20c38a973a51bf3f663bd298c63ad1b8e0de445:
>
> arm: mvebu: Add support for
Hi Tom,
Here are the network patches for this round. Should be pretty basic stuff.
Thanks!
-Joe
The following changes since commit 077678eb0c226e52a1f90edabd3369ab26065b32:
Merge git://git.denx.de/u-boot-dm (2016-01-12 18:12:42 -0500)
are available in the git repository at:
git://git.den
From: Stephen Warren
A custom fixture named ut_subtest is implemented which is parametrized
with the names of all unit tests that the U-Boot binary supports. This
causes each U-Boot unit test to be exposes as a separate pytest. In turn,
this allows more fine-grained pass/fail counts and test sele
Hi Hans,
On 28 January 2016 at 01:25, Hans de Goede wrote:
> Hi,
>
> On 28-01-16 04:58, Simon Glass wrote:
>>
>> Hi Hans,
>>
>> On 25 January 2016 at 13:30, Simon Glass wrote:
>>>
>>>
>>> At present u-boot.bin holds the plain U-Boot binary without the device
>>> tree.
>>> This is somewhat annoyi
On 28 January 2016 at 10:18, Stephen Warren wrote:
> From: Stephen Warren
>
> s/updata/update/.
>
> Signed-off-by: Stephen Warren
> ---
> test/py/tests/test_env.py | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
Reviewed-by: Simon Glass
On 28 January 2016 at 09:34, Stefan Roese wrote:
>
> The x86 build target "efi-x86" has no TEXT_BASE configured. And with the
> introduction of CONFIG_BOOTDELAY for x86, this function is now called
> for this board as well. Resulting in compile errors for this target.
>
> Without TEXT_BASE it make
The case of memory of size 0 is not that different from a memory of any other
size, so we remove the duplicate code and treat the small differences when it
is the case.
Series-to: u-boot
Signed-off-by: Eddy Petrișor
---
common/memsize.c | 47 +--
1 fil
Hi,
are there any U-Boot examples/patches to boot Xen on an ARMv8/aarch64
system?
I've found
http://lists.denx.de/pipermail/u-boot/2015-October/230077.html
what might be helpful.
But maybe I missed anything else?
Many thanks
Dirk
___
U-Boot mail
On 27 January 2016 at 00:28, Bin Meng wrote:
> Correct spelling of "U-Boot" shall be used in all written text
> (documentation, comments in source files etc.).
>
> Signed-off-by: Bin Meng
>
> ---
> I cc'ed all maintainers, please help review in case I made any
> mistakes. Also we should keep an e
Hi Dirk,
On 28 January 2016 at 12:06, Dirk Behme wrote:
>
> Hi,
>
> are there any U-Boot examples/patches to boot Xen on an ARMv8/aarch64 system?
>
> I've found
>
> http://lists.denx.de/pipermail/u-boot/2015-October/230077.html
>
> what might be helpful.
>
> But maybe I missed anything else?
I'm
From: Ye Li
The BOOTCFG value used by bmode for SABRESD eMMC boot are actually for SD card.
Fixed the value to correct one.
The issue was fixed in 2014.04 u-boot, but that patch seems missed during
porting
to 2015.04.
Signed-off-by: Ye Li
Signed-off-by: Peng Fan
Cc: Stefano Babic
Cc: Fabio
Commit df48b23428e9 (".mailmap: Add all the mail alias for Ricardo
Ribalda") assigned two different proper names for the email address
"ricardo.riba...@uam.es". This is a completely wrong usage as the
mailmap feature exists for coalescing together commits by the same
person whose name is sometimes
Hi Ricardo,
2016-01-29 11:42 GMT+09:00 Masahiro Yamada :
> Commit df48b23428e9 (".mailmap: Add all the mail alias for Ricardo
> Ribalda") assigned two different proper names for the email address
> "ricardo.riba...@uam.es". This is a completely wrong usage as the
> mailmap feature exists for coal
use "#ifdef CONFIG_QE" to mask the codes
not used for micro QE
Signed-off-by: Zhao Qiang
---
drivers/qe/qe.c | 6 ++
1 file changed, 6 insertions(+)
diff --git a/drivers/qe/qe.c b/drivers/qe/qe.c
index 08620b2..2a9e61b 100644
--- a/drivers/qe/qe.c
+++ b/drivers/qe/qe.c
@@ -20,7 +20,9 @@
#d
Upload qe microcode on ls1043ardb
Signed-off-by: Zhao Qiang
---
board/freescale/ls1043ardb/ls1043ardb.c | 8
drivers/qe/qe.c | 6 ++
include/configs/ls1043ardb.h| 7 +++
3 files changed, 17 insertions(+), 4 deletions(-)
diff --git a/board/fre
*Changes in v3:
- split [PATCH v2 3/3] QE: assgin pins to QE-HDLC to two patches:
[PATCH v3 3/4] ls1043rdb: move USB mux config to config_board_mux
and [PATCH v3 4/4] qe: assgin pins to qe-hdlc.
*Changes in v2:
- Add new patch in patchset.QE: mask the codes not used for micro QE
- [PATCH v2 2/
USB pins are muxed with other feature, move USB mux config
to config_board_mux.
Signed-off-by: Zhao Qiang
---
board/freescale/ls1043ardb/ls1043ardb.c | 30 +++---
1 file changed, 15 insertions(+), 15 deletions(-)
diff --git a/board/freescale/ls1043ardb/ls1043ardb.c
b/bo
> -Original Message-
> From: Zhao Qiang [mailto:qiang.z...@nxp.com]
> Sent: Friday, January 29, 2016 10:51 AM
> To: Mingkai Hu
> Cc: tr...@konsulko.com; york sun; u-boot@lists.denx.de; Qiang Zhao
> Subject: [PATCH v3 4/4] qe: assgin pins to qe-hdlc
>
> qe-hdlc and usb multi-use the pins,
Hi Stephen,
On 25 January 2016 at 17:42, Stephen Warren wrote:
> On 01/25/2016 02:14 PM, Stephen Warren wrote:
>>
>> On 01/25/2016 01:30 PM, Simon Glass wrote:
>>>
>>> At present u-boot.bin holds the plain U-Boot binary without the device
>>> tree.
>>> This is somewhat annoying since you need eit
qe-hdlc and usb multi-use the pins, when set hwconfig=qe-hdlc,
assign the pins to qe-hdlc, if not, assgin it to usb
Signed-off-by: Zhao Qiang
---
board/freescale/ls1043ardb/ls1043ardb.c | 51 ++---
1 file changed, 41 insertions(+), 10 deletions(-)
diff --git a/board/
Hi Akshay,
CC i.MX maintainer Stefano for you.
On Wed, Jan 27, 2016 at 05:53:47PM -0500, Akshay Bhat wrote:
>Add support for GE B450v3, B650v3 and B850v3 boards. The boards
>are based on Advantech BA16 module which has a imx6 processor.
Which imx6 processor?
>The boards support:
> - FEC Etherne
At present u-boot.bin holds the plain U-Boot binary without the device tree.
This is somewhat annoying since you need either u-boot.bin or u-boot-dtb.bin
depending on whether device tree is used.
This series adjusts the build such that u-boot.bin includes a device tree if
enabled, and the plain bi
Adjust the Makefile to build u-boot-tegra.bin which contains a device tree
if OF_CONTROL is enabled, and does not if not. This mirrors U-Boot's new
approach of using u-boot.bin to handle both cases.
Signed-off-by: Simon Glass
---
Changes in v2:
- Update based on previous changes
Makefile | 11
When OF_CONTROL is enabled, u-boot-dtb.* files are the same as u-boot.*
files. So we can use the latter for simplicity.
Signed-off-by: Simon Glass
---
Changes in v2:
- Tweak the tegra rule slightly
Makefile | 15 +++
1 file changed, 7 insertions(+), 8 deletions(-)
diff --git a/Mak
At present u-boot-spl.bin holds the plain SPL binary without the device
tree. This is somewhat annoying since you need either u-boot-spl.bin or
u-boot-spl-dtb.bin depending on whether device tree is used.
Adjust the build such that u-boot-spl.bin includes a device tree
(if enabled), and the plain
Fix the ALL-y logic in the Makefile so that is clear that we always want
the -nodtb file.
Signed-off-by: Simon Glass
---
Changes in v2:
- Rewrite this commit based on tegra feedback
Makefile | 15 +--
1 file changed, 5 insertions(+), 10 deletions(-)
diff --git a/Makefile b/Makefil
We don't need the -dtb suffix anymore, so drop it.
Signed-off-by: Simon Glass
---
Changes in v2:
- Fix the update_filename in MCV
Makefile | 10 +-
include/configs/socfpga_mcvevk.h | 2 +-
scripts/Makefile.spl | 6 +++---
3 files changed, 9 inserti
When OF_CONTROL is enabled, u-boot.img has no purpose since it does not
include the required device tree binary. The correct image to use is
u-boot-dtb.img with OF_CONTROL but u-boot.img without OF_CONTROL.
Create u-boot.img even when OF_CONTROL is enabled, so that this file can be
used in both ca
At present u-boot.bin holds the plain U-Boot binary without the device tree.
This is somewhat annoying since you need either u-boot.bin or u-boot-dtb.bin
depending on whether device tree is used.
Adjust the build such that u-boot.bin includes a device tree (if enabled),
and the plain binary is in
On 27 January 2016 at 23:57, Stephen Warren wrote:
> From: Stephen Warren
>
> The ut command prints a test failure count each time it is executed.
> This is stored in a global variable which is never reset. Consequently,
> the printed failure count accumulates across runs. Fix this by clearing
>
On 27 January 2016 at 23:57, Stephen Warren wrote:
> From: Stephen Warren
>
> A future patch will use the bad_patterns array in multiple places. Rather
> than duplicating the code to calculate it, or even sharing it in a
> function and simply calling it redundantly when nothing has changed, only
On 27 January 2016 at 23:57, Stephen Warren wrote:
> From: Stephen Warren
>
> Multiple patterns may be passed to spawn.expect(). The pattern which
> matches at the earliest position should be designated as the match. This
> aspect works correctly. When multiple patterns match at the same position
On 27 January 2016 at 23:57, Stephen Warren wrote:
> From: Stephen Warren
>
> Currently, bad patterns are only honored when executing a shell command.
> Other cases, such as the initial boot-up of U-Boot or when interacting
> with command output rather than gathering all output prior to the shell
On 27 January 2016 at 23:57, Stephen Warren wrote:
> From: Stephen Warren
>
> Many error situations in U-Boot print the message:
> ### ERROR ### Please RESET the board ###
>
> Add this to the list of bad patterns the test system detects. One
> practical advantage of this change is to detect t
On 27 January 2016 at 23:57, Stephen Warren wrote:
> From: Stephen Warren
>
> Tests can complete in passed, skipped, xpass, xfailed, or failed, states.
> Currently the U-Boot log generation code doesn't handle the xfailed or
> xpass states since they aren't used. Add support for the remaining sta
On 27 January 2016 at 23:57, Stephen Warren wrote:
> From: Stephen Warren
>
> This is required for at least "ut dm" to operate correctly.
>
> Signed-off-by: Stephen Warren
> ---
> test/py/u_boot_console_sandbox.py | 7 ++-
> 1 file changed, 6 insertions(+), 1 deletion(-)
Acked-by: Simon Gl
On 27 January 2016 at 23:57, Stephen Warren wrote:
> From: Stephen Warren
>
> Some unit tests expect the cwd of the sandbox process to be the root
> of the source tree. Ensure that requirement is met.
>
> Signed-off-by: Stephen Warren
> ---
> test/py/u_boot_console_sandbox.py | 2 +-
> test/py/
Hi Stephen,
On 27 January 2016 at 23:57, Stephen Warren wrote:
> From: Stephen Warren
>
> Add tests that execute the existing C-based unit test commands. These
> simply run the command and validate the overall result. For now,
> fine-grained details are not mapped into separate pytest test resul
Hi Stephen,
On 28 January 2016 at 16:45, Stephen Warren wrote:
> From: Stephen Warren
>
> A custom fixture named ut_subtest is implemented which is parametrized
> with the names of all unit tests that the U-Boot binary supports. This
> causes each U-Boot unit test to be exposes as a separate pyt
On 28 January 2016 at 13:14, Stephen Warren wrote:
> From: Stephen Warren
>
> Allow the env__dfu_configs boardenv data to specify the set of DFU
> transfer sizes to test. Manually specifying test sizes is useful if you
> wish to test multiple DFU configurations (e.g. SD card ext4 filesystem, SD
>
On 25 January 2016 at 18:15, Bin Meng wrote:
> On Tue, Jan 26, 2016 at 5:58 AM, Simon Glass wrote:
>> This function is not used as the use case for it did not eventuate. Remove
>> it to avoid confusion.
>>
>> Signed-off-by: Simon Glass
>> ---
>>
>> drivers/core/device.c| 9 +
>>
On 26 January 2016 at 12:59, Simon Glass wrote:
> On 26 January 2016 at 10:59, Stephen Warren wrote:
>> From: Stephen Warren
>>
>> The DFU test requests U-Boot configure its USB controller in device mode,
>> then waits for the host machine to enumerate the USB device and create a
>> device node
On 26 January 2016 at 12:59, Simon Glass wrote:
> On 26 January 2016 at 10:59, Stephen Warren wrote:
>>
>> From: Stephen Warren
>>
>> When loading U-Boot into RAM over USB protocols using tools such as
>> tegrarcm or L4T's exec-uboot.sh/tegraflash.py, Tegra's USB device
>> mode controller is ini
On 25 January 2016 at 18:17, Simon Glass wrote:
> Hi Stephen,
>
> On 25 January 2016 at 18:11, Stephen Warren wrote:
>> On 01/25/2016 06:07 PM, Simon Glass wrote:
>>>
>>> Hi Stephen,
>>>
>>> On 25 January 2016 at 15:07, Stephen Warren wrote:
From: Stephen Warren
test/py cont
On 26 January 2016 at 23:17, Bin Meng wrote:
> On Wed, Jan 27, 2016 at 2:10 AM, Stephen Warren wrote:
>> From: Stephen Warren
>>
>> With CONFIG_DM_PCI enabled, PCI buses are not enumerated at boot, as they
>> are without that config option enabled. No command exists to enumerate the
>> PCI buses
On 26 January 2016 at 13:00, Simon Glass wrote:
> Hi Stephen,
>
> On 26 January 2016 at 11:10, Stephen Warren wrote:
>> From: Stephen Warren
>>
>> The PCI bus must be enumerated before PCI devices, such as Ethernet
>> devices, are known to U-Boot. Enhance the distro boot commands to perform
>> P
On 26 January 2016 at 12:59, Simon Glass wrote:
> On 26 January 2016 at 11:10, Stephen Warren wrote:
>> From: Stephen Warren
>>
>> Currently, the distro boot commands always enumerate USB devices before
>> performing network operations. However, depending on the board and end-
>> user configurat
On 26 January 2016 at 16:18, Stephen Warren wrote:
> On 01/26/2016 04:08 PM, Simon Glass wrote:
>>
>> Hi Stephen,
>>
>> On 26 January 2016 at 15:26, Stephen Warren wrote:
>>>
>>> From: Stephen Warren
>>>
>>> When pytest generates the name for parametrized tests, simple parameter
>>> values (ints
On 26 January 2016 at 13:00, Simon Glass wrote:
> On 26 January 2016 at 11:10, Stephen Warren wrote:
>> From: Stephen Warren
>>
>> The existing net test executes a list of commands supplied by boardenv
>> variable env__net_pre_commands. The idea was that boardenv would know
>> whether the Ethern
On 26 January 2016 at 16:08, Simon Glass wrote:
> On 26 January 2016 at 13:41, Stephen Warren wrote:
>> From: Stephen Warren
>>
>> Python's coding style docs indicate to use " not ' for docstrings.
>>
>> test/py has other violations of the coding style docs, since the docs
>> specify a stranger
On 26 January 2016 at 16:08, Simon Glass wrote:
> On 26 January 2016 at 13:41, Stephen Warren wrote:
>> From: Stephen Warren
>>
>> When converting test/py from " to ', I missed a few places (or added a
>> few inconsistencies later). Fix these.
>>
>> Note that only quotes in code are converted; d
On 28 January 2016 at 20:47, Simon Glass wrote:
> On 27 January 2016 at 23:57, Stephen Warren wrote:
>> From: Stephen Warren
>>
>> Currently, bad patterns are only honored when executing a shell command.
>> Other cases, such as the initial boot-up of U-Boot or when interacting
>> with command ou
On 28 January 2016 at 20:47, Simon Glass wrote:
> On 27 January 2016 at 23:57, Stephen Warren wrote:
>> From: Stephen Warren
>>
>> Tests can complete in passed, skipped, xpass, xfailed, or failed, states.
>> Currently the U-Boot log generation code doesn't handle the xfailed or
>> xpass states s
On 28 January 2016 at 20:47, Simon Glass wrote:
> On 27 January 2016 at 23:57, Stephen Warren wrote:
>> From: Stephen Warren
>>
>> A future patch will use the bad_patterns array in multiple places. Rather
>> than duplicating the code to calculate it, or even sharing it in a
>> function and simpl
On 28 January 2016 at 20:47, Simon Glass wrote:
> On 27 January 2016 at 23:57, Stephen Warren wrote:
>> From: Stephen Warren
>>
>> Many error situations in U-Boot print the message:
>> ### ERROR ### Please RESET the board ###
>>
>> Add this to the list of bad patterns the test system detects
On 28 January 2016 at 20:47, Simon Glass wrote:
> On 27 January 2016 at 23:57, Stephen Warren wrote:
>> From: Stephen Warren
>>
>> Some unit tests expect the cwd of the sandbox process to be the root
>> of the source tree. Ensure that requirement is met.
>>
>> Signed-off-by: Stephen Warren
>> -
On 28 January 2016 at 20:52, Simon Glass wrote:
> On 28 January 2016 at 13:14, Stephen Warren wrote:
>> From: Stephen Warren
>>
>> Allow the env__dfu_configs boardenv data to specify the set of DFU
>> transfer sizes to test. Manually specifying test sizes is useful if you
>> wish to test multipl
On 28 January 2016 at 20:46, Simon Glass wrote:
> On 27 January 2016 at 23:57, Stephen Warren wrote:
>> From: Stephen Warren
>>
>> The ut command prints a test failure count each time it is executed.
>> This is stored in a global variable which is never reset. Consequently,
>> the printed failur
On 28 January 2016 at 20:47, Simon Glass wrote:
> On 27 January 2016 at 23:57, Stephen Warren wrote:
>> From: Stephen Warren
>>
>> This is required for at least "ut dm" to operate correctly.
>>
>> Signed-off-by: Stephen Warren
>> ---
>> test/py/u_boot_console_sandbox.py | 7 ++-
>> 1 file
On 28 January 2016 at 17:18, Simon Glass wrote:
> On 28 January 2016 at 10:18, Stephen Warren wrote:
>> From: Stephen Warren
>>
>> s/updata/update/.
>>
>> Signed-off-by: Stephen Warren
>> ---
>> test/py/tests/test_env.py | 4 ++--
>> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> Reviewed
On 28 January 2016 at 20:47, Simon Glass wrote:
> On 27 January 2016 at 23:57, Stephen Warren wrote:
>> From: Stephen Warren
>>
>> Multiple patterns may be passed to spawn.expect(). The pattern which
>> matches at the earliest position should be designated as the match. This
>> aspect works corr
Hi Dirk,
Cc Ian xen experts.
On Thu, Jan 28, 2016 at 08:06:30PM +0100, Dirk Behme wrote:
>Hi,
>
>are there any U-Boot examples/patches to boot Xen on an ARMv8/aarch64 system?
>
>I've found
>
>http://lists.denx.de/pipermail/u-boot/2015-October/230077.html
>
>what might be helpful.
>
>But maybe I m
*Changes in v4:
-[PATCH v4 4/4] qe: assgin pins to qe-hdlc
- modify the format of multi-line comments
*Changes in v3:
-split [PATCH v2 3/3] QE: assgin pins to QE-HDLC to two patches:
[PATCH v3 3/4] ls1043rdb: move USB mux config to config_board_mux
and [PATCH v3 4/4] qe: assgin pins to
Upload qe microcode on ls1043ardb
Signed-off-by: Zhao Qiang
---
board/freescale/ls1043ardb/ls1043ardb.c | 8
drivers/qe/qe.c | 6 ++
include/configs/ls1043ardb.h| 7 +++
3 files changed, 17 insertions(+), 4 deletions(-)
diff --git a/board/fre
USB pins are muxed with other feature, move USB mux config
to config_board_mux.
Signed-off-by: Zhao Qiang
---
board/freescale/ls1043ardb/ls1043ardb.c | 30 +++---
1 file changed, 15 insertions(+), 15 deletions(-)
diff --git a/board/freescale/ls1043ardb/ls1043ardb.c
b/bo
use "#ifdef CONFIG_QE" to mask the codes
not used for micro QE
Signed-off-by: Zhao Qiang
---
drivers/qe/qe.c | 6 ++
1 file changed, 6 insertions(+)
diff --git a/drivers/qe/qe.c b/drivers/qe/qe.c
index 08620b2..2a9e61b 100644
--- a/drivers/qe/qe.c
+++ b/drivers/qe/qe.c
@@ -20,7 +20,9 @@
#d
qe-hdlc and usb multi-use the pins, when set hwconfig=qe-hdlc,
assign the pins to qe-hdlc, if not, assgin it to usb
Signed-off-by: Zhao Qiang
---
board/freescale/ls1043ardb/ls1043ardb.c | 53 ++---
1 file changed, 43 insertions(+), 10 deletions(-)
diff --git a/board/
> -Original Message-
> From: Mingkai Hu
> Sent: Friday, January 29, 2016 11:03 AM
> To: Qiang Zhao
> Cc: tr...@konsulko.com; york sun ; u-boot@lists.denx.de;
> Qiang Zhao
> Subject: RE: [PATCH v3 4/4] qe: assgin pins to qe-hdlc
>
> > -Original Message-
> > From: Zhao Qiang [ma
Hello Lukasz,
Am 28.01.2016 um 15:56 schrieb Lukasz Majewski:
Hi Heiko,
change the get_medium_size() function from
- long (*get_medium_size)(struct dfu_entity *dfu);
+ int (*get_medium_size)(struct dfu_entity *dfu, u64 *size);
so it can return bigger medium sizes than 2GiB, and th
101 - 200 of 208 matches
Mail list logo