summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorSebastian Hesselbarth <sebastian.hesselbarth@gmail.com>2013-05-12 15:09:02 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2013-05-14 07:09:30 +0200
commit2f4fcf15696d56d80a0cf5d52824d9ba06295c03 (patch)
tree3294bfed811956e44dd15b3ebccde29e015a6e15 /scripts
parent52792003d1008c96e28ad201f4a7715cd1e2c7cb (diff)
downloadbarebox-2f4fcf15696d56d80a0cf5d52824d9ba06295c03.tar.gz
barebox-2f4fcf15696d56d80a0cf5d52824d9ba06295c03.tar.xz
scripts: kwbimage: add references to Marvell Dove SoC
This adds some references to Marvell Dove as it is also supported by kwbimage. Signed-off-by: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/kwbimage.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/scripts/kwbimage.c b/scripts/kwbimage.c
index 90714aa35a..14b35e7818 100644
--- a/scripts/kwbimage.c
+++ b/scripts/kwbimage.c
@@ -1,5 +1,6 @@
/*
- * Image manipulator for Kirkwood, Armada 370 and Armada XP platforms.
+ * Image manipulator for Marvell SoCs
+ * supports Kirkwood, Dove, Armada 370, and Armada XP
*
* (C) Copyright 2013 Thomas Petazzoni
* <thomas.petazzoni@free-electrons.com>
@@ -15,9 +16,9 @@
* GNU General Public License for more details.
*
* This tool allows to extract and create bootable images for Marvell
- * Kirkwood, Marvell Armada 370 and Armada XP SoCs. It supports two
+ * Kirkwood, Dove, Armada 370, and Armada XP SoCs. It supports two
* versions of the bootable image format: version 0 (used on Marvell
- * Kirkwood) and version 1 (used on Marvell Armada 370/XP).
+ * Kirkwood and Dove) and version 1 (used on Marvell Armada 370/XP).
*
* To extract an image, run:
* ./scripts/kwbimage -x -i <image-file> -o <some-directory>
@@ -53,7 +54,7 @@
#define ALIGN_SUP(x, a) (((x) + (a - 1)) & ~(a - 1))
-/* Structure of the main header, version 0 (Kirkwood) */
+/* Structure of the main header, version 0 (Kirkwood, Dove) */
struct main_hdr_v0 {
uint8_t blockid; /*0 */
uint8_t nandeccmode; /*1 */