
Hi Tom,
second try with the gcc 6.3 build fix applied and rebased to current master.
The following changes since commit d56b4b19744c314c26dc77585a7c7a9253d1487d:
configs: Migrate RBTREE, LZO, CMD_MTDPARTS, CMD_UBI and CMD_UBIFS (2017-07-24 20:35:55 -0400)
are available in the git repository at:
git://git.denx.de/u-boot-mips.git master
for you to fetch changes up to e94136bd87b18345e38a5e44445a476de12b4354:
mips-relocs: Fix warning from gcc 6.3 (2017-07-25 20:44:38 +0200)
---------------------------------------------------------------- Paul Burton (3): Makefile: Allow arch post-link hook MIPS: Stop building position independent code mips-relocs: Fix warning from gcc 6.3
Zubair Lutfullah Kakakhel (1): MIPS: bootm: Fix broken boot_env_legacy codepath
Makefile | 7 +- arch/mips/Makefile.postlink | 23 +++++++ arch/mips/config.mk | 21 ++---- arch/mips/cpu/start.S | 130 ------------------------------------ arch/mips/cpu/u-boot.lds | 41 +++--------- arch/mips/include/asm/relocs.h | 24 +++++++ arch/mips/include/asm/sections.h | 7 ++ arch/mips/lib/Makefile | 1 + arch/mips/lib/bootm.c | 8 +-- arch/mips/lib/reloc.c | 164 ++++++++++++++++++++++++++++++++++++++++++++++ common/board_f.c | 2 +- tools/.gitignore | 1 + tools/Makefile | 2 + tools/mips-relocs.c | 432 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 14 files changed, 678 insertions(+), 185 deletions(-) create mode 100644 arch/mips/Makefile.postlink create mode 100644 arch/mips/include/asm/relocs.h create mode 100644 arch/mips/lib/reloc.c create mode 100644 tools/mips-relocs.c