Merge git://git.denx.de/u-boot-marvell

master
Tom Rini 9 years ago
commit 65f3151f85
  1. 5
      include/configs/aspenite.h
  2. 4
      include/configs/dreamplug.h
  3. 5
      include/configs/gplugd.h
  4. 1
      tools/kwbimage.c

@ -11,6 +11,11 @@
#define __CONFIG_ASPENITE_H
/*
* Generic board support
*/
#define CONFIG_SYS_GENERIC_BOARD
/*
* Version number information
*/
#define CONFIG_IDENT_STRING "\nMarvell-Aspenite DB"

@ -37,6 +37,10 @@
#define CONFIG_KW88F6281 1 /* SOC Name */
#define CONFIG_MACH_TYPE MACH_TYPE_DREAMPLUG
#define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */
#define CONFIG_SYS_GENERIC_BOARD
/* Add target to build it automatically upon "make" */
#define CONFIG_BUILD_TARGET "u-boot.kwb"
/*
* Commands configuration

@ -26,6 +26,11 @@
#endif
/*
* Generic board support
*/
#define CONFIG_SYS_GENERIC_BOARD
/*
* Version number information
*/
#define CONFIG_IDENT_STRING "\nMarvell-gplugD"

@ -498,6 +498,7 @@ static void *image_create_v1(size_t *imagesz, struct image_tool_params *params,
binhdrsz = sizeof(struct opt_hdr_v1) +
(binarye->binary.nargs + 1) * sizeof(unsigned int) +
s.st_size;
binhdrsz = ALIGN_SUP(binhdrsz, 32);
hdr->headersz_lsb = binhdrsz & 0xFFFF;
hdr->headersz_msb = (binhdrsz & 0xFFFF0000) >> 16;

Loading…
Cancel
Save