| ea19527c | 04-Nov-2014 |
Dominic Sacré <dominic.sacre@gmx.de> |
tools/env: Fix environment size and CRC on 64-bit hosts
On architectures where 'long' is 64 bit, the u-boot environment as seen by the fw_env tools was missing 4 bytes. This patch fixes getenvsize()
tools/env: Fix environment size and CRC on 64-bit hosts
On architectures where 'long' is 64 bit, the u-boot environment as seen by the fw_env tools was missing 4 bytes. This patch fixes getenvsize(), and thus also ensures that the environment's CRC32 checksum is calculated correctly.
Signed-off-by: Dominic Sacré <dominic.sacre@gmx.de> Cc: Wolfgang Denk <wd@denx.de> Cc: Tom Rini <trini@ti.com>
show more ...
|
| 1ddda1b3 | 15-Oct-2014 |
Simon Glass <sjg@chromium.org> |
patman: Use the full commit hash for 'git checkout'
Even with the initial 8 characeters of the hash we will sometimes get a collision. Use the full hash.
Signed-off-by: Simon Glass <sjg@chromium.or
patman: Use the full commit hash for 'git checkout'
Even with the initial 8 characeters of the hash we will sometimes get a collision. Use the full hash.
Signed-off-by: Simon Glass <sjg@chromium.org>
show more ...
|
| 58d818f1 | 15-Oct-2014 |
Simon Glass <sjg@chromium.org> |
buildman: Don't default to -e when using -s
When using summary mode (-s) we don't always want to display errors. Allow this option to be omitted.
Series-to: u-boot Series-cc: albert Change-Id: I6b3
buildman: Don't default to -e when using -s
When using summary mode (-s) we don't always want to display errors. Allow this option to be omitted.
Series-to: u-boot Series-cc: albert Change-Id: I6b37754d55eb920ecae114fceba55834b43ea3b9 Signed-off-by: Simon Glass <sjg@chromium.org> Reported-by: Albert Aribaud <albert.u.boot@aribaud.net>
show more ...
|
| 934a529f | 28-Oct-2014 |
Stefan Roese <sr@denx.de> |
tools/kwbimage: Fix compilation warning
This patch fixes a compilation warning of kwbimage.c:
tools/kwbimage.c: In function ‘kwbimage_set_header’: tools/kwbimage.c:784:8: warning: ‘headersz’ may be
tools/kwbimage: Fix compilation warning
This patch fixes a compilation warning of kwbimage.c:
tools/kwbimage.c: In function ‘kwbimage_set_header’: tools/kwbimage.c:784:8: warning: ‘headersz’ may be used uninitialized in this function [-Wmaybe-uninitialized] memcpy(ptr, image, headersz); ^ Instead of using multiple if statements, use a switch statement with a default entry. And return with error if an unsupported version is configured in the cfg file.
Signed-off-by: Stefan Roese <sr@denx.de> Acked-By: Wolfgang Denk <wd@denx.de>
show more ...
|
| 4acd2d24 | 22-Oct-2014 |
Stefan Roese <sr@denx.de> |
tools: kwbimage: Add image version 1 support for Armada XP / 370
This patch integrates the Barebox version of this kwbimage.c file into U-Boot. As this version supports the image version 1 type for
tools: kwbimage: Add image version 1 support for Armada XP / 370
This patch integrates the Barebox version of this kwbimage.c file into U-Boot. As this version supports the image version 1 type for the Armada XP / 370 SoCs.
It was easier to integrate the existing and known to be working Barebox source than to update the current U-Boot version to support this v1 image header format. Now all Marvell MVEBU SoCs are supported:
Image type 0: Kirkwood & Dove Image type 1: Armada 370 & Armada XP
Please note that the current v1 support has this restuction (same as has Barebox version):
Not implemented: support for the register headers and secure headers in v1 images
Tested on Marvell DB-78460-BP eval board.
Signed-off-by: Stefan Roese <sr@denx.de> Tested-by: Luka Perkov <luka@openwrt.org>
show more ...
|