summaryrefslogtreecommitdiff
path: root/board/st/u8500/Makefile
diff options
context:
space:
mode:
authorMichael Brandt <michael.brandt@stericsson.com>2010-08-27 14:21:17 +0200
committerMichael BRANDT <michael.brandt@stericsson.com>2010-08-30 20:07:21 +0200
commit529adafde26d951fa425029e0b56370c36d29081 (patch)
tree4c8728938a2f68c54207c36e5fb4638cf22ba5f4 /board/st/u8500/Makefile
parente12e3ecc89a65421b4e26267c5c71badfdf0dbbb (diff)
Make U-Boot restartable and crash dump support
* Added an u8500 board specific ld script. Reserve space for .data backup. * Make a backup copy of initialised data (.data section). If restarted, copy the backup data back to .data. * Create crashkernel env variable dynamically, since it depends on U-Boot start address. For dumping U-Boot itself is used as crashkernel. * Set preboot environment variable to checkcrash command, if data_init_flag > 0, i.e. we were restarted e.g. by kexec. * Added crashkernel parameter to common bootargs. Decreased environment and pool sizes. * Changed link address of U-Boot: moved it 32 K up for kdump info to 0x05608000 * Added "checkcrash" command This command checks if there is a pending crash dump and writes it to a file on SD/MMC. ST-Ericsson ID: WP264488 Change-Id: If545822e424b95532f1128afb0e762b6b73834e9 Signed-off-by: Michael Brandt <michael.brandt@stericsson.com> Reviewed-on: http://gerrit.lud.stericsson.com/gerrit/3011
Diffstat (limited to 'board/st/u8500/Makefile')
-rw-r--r--board/st/u8500/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/board/st/u8500/Makefile b/board/st/u8500/Makefile
index 3bd3a7a37..e0617f471 100644
--- a/board/st/u8500/Makefile
+++ b/board/st/u8500/Makefile
@@ -24,7 +24,7 @@ include $(TOPDIR)/config.mk
LIB = $(obj)lib$(BOARD).a
-COBJS := u8500.o flash.o gpio.o u8500_i2c.o mmc_host.o mmc_utils.o clock.o prcmu.o mcde_display.o mcde_hw.o ab8500vibra.o
+COBJS := u8500.o flash.o gpio.o u8500_i2c.o mmc_host.o mmc_utils.o clock.o prcmu.o mcde_display.o mcde_hw.o ab8500vibra.o cmd_cdump.o
SOBJS := mmc_fifo.o
SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c)