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