
The Texas Instruments Keystone SOC u-boot support requires some common code modifications to be done before introducing the support itself.
This series of patches makes these modifications.
Signed-off-by: Vitaly Andrianov vitalya@ti.com Signed-off-by: Murali Karicheri m-karicheri2@ti.com
Murali Karicheri (5): tools: mkimage: add support for gpimage format ubifs: fix checkpatch warning ubifs: return filesize from ubifs load operations arm: add support for arch timer NAND: DaVinci: allow forced disable of subpage writes
arch/arm/lib/Makefile | 1 + arch/arm/lib/arch_timer.c | 69 ++++++++++++++++++++++++++ common/cmd_ubifs.c | 16 ++---- common/image.c | 1 + drivers/mtd/nand/davinci_nand.c | 3 ++ fs/ubifs/ubifs.c | 14 +++--- fs/ubifs/ubifs.h | 7 +++ include/image.h | 1 + tools/Makefile | 6 +++ tools/gpheader.h | 41 ++++++++++++++++ tools/gpimage-common.c | 103 +++++++++++++++++++++++++++++++++++++++ tools/gpimage.c | 78 +++++++++++++++++++++++++++++ tools/imagetool.c | 2 + tools/imagetool.h | 1 + tools/omapimage.c | 97 ++++++------------------------------ tools/omapimage.h | 5 -- 16 files changed, 340 insertions(+), 105 deletions(-) create mode 100644 arch/arm/lib/arch_timer.c create mode 100644 tools/gpheader.h create mode 100644 tools/gpimage-common.c create mode 100644 tools/gpimage.c