blob: a59231e70ebe7a9c092b4f25ab30cf91a38ca37e [file] [log] [blame]
Daniel Schwierzecke19db552014-11-21 23:51:33 +01001#
2# SPDX-License-Identifier: GPL-2.0+
3#
4
Daniel Schwierzecke19db552014-11-21 23:51:33 +01005libs-y += arch/arc/cpu/$(CPU)/
6libs-y += arch/arc/lib/
Alexey Brodkin4c8c4852014-12-29 15:42:57 +03007
8# MetaWare debugger doesn't support PIE (position-independent executable)
9# so the only way to load U-Boot in MDB is to fake it by:
10# 1. Reset PIE flag in ELF header
11# 2. Strip all debug information from elf
12ifdef CONFIG_SYS_LITTLE_ENDIAN
13 EXEC_TYPE_OFFSET=16
14else
15 EXEC_TYPE_OFFSET=17
16endif
17
18mdbtrick: u-boot
19 $(Q)printf '\x02' | dd of=u-boot bs=1 seek=$(EXEC_TYPE_OFFSET) count=1 \
20 conv=notrunc &> /dev/null
21 $(Q)$(CROSS_COMPILE)strip -g u-boot