From d9d5ded3e5f0f1b4ba07b088c277d5066c35025e Mon Sep 17 00:00:00 2001 From: Sasirekaa Madhesu Date: Thu, 15 Mar 2018 11:43:24 +0530 Subject: [PATCH] ipq40xx: Changed the dumpinfo name for secure board In non-secured boards the dump save size is set to be the size of RAM buffer. Since the name field of dumpinfo was same for both secured and non-secured boards,the dump save size for secured board is also set to RAM buffer size which causes data abort during secure crashdump collection. This patch retains the actual save size of secure board. Change-Id: Ib26fc4730355a7f0cb131dee61983a15c1825f6f Signed-off-by: Sasirekaa Madhesu --- board/qca/arm/ipq40xx/ipq40xx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/board/qca/arm/ipq40xx/ipq40xx.c b/board/qca/arm/ipq40xx/ipq40xx.c index eb436f75e4..132b51b66a 100644 --- a/board/qca/arm/ipq40xx/ipq40xx.c +++ b/board/qca/arm/ipq40xx/ipq40xx.c @@ -76,7 +76,7 @@ struct dumpinfo_t dumpinfo_n[] = { int dump_entries_n = ARRAY_SIZE(dumpinfo_n); struct dumpinfo_t dumpinfo_s[] = { - { "EBICS0.bin", CONFIG_QCA_KERNEL_CRASHDUMP_ADDRESS, + { "EBICS_S0.BIN", CONFIG_QCA_KERNEL_CRASHDUMP_ADDRESS, CONFIG_CPU_CONTEXT_DUMP_SIZE, 0 }, };