summaryrefslogtreecommitdiff
path: root/src/arch/armv7/lib/Makefile.inc
blob: c248b9ea93ef8deede2592d4e9fe54488c1612f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#FIXME: cache_v7 and cache-cp15 will go away eventually

bootblock-y += syslib.c
bootblock-$(CONFIG_EARLY_CONSOLE) += early_console.c
bootblock-y += cache.c
bootblock-y += cache_v7.c
bootblock-y += cache-cp15.c

romstage-y += cache.c
romstage-y += cache_v7.c
romstage-y += cache-cp15.c
romstage-y += div0.c
romstage-y += syslib.c
romstage-$(CONFIG_EARLY_CONSOLE) += early_console.c

ramstage-y += div0.c
#ramstage-y += interrupts.c
#ramstage-y += memcpy.S
#ramstage-y += memset.S
ramstage-y += syslib.c
ramstage-y += cache.c
ramstage-y += cache_v7.c
ramstage-y += cache-cp15.c

#FIXME(dhendrix): should this be a config option?
romstage-y += eabi_compat.c
ramstage-y += eabi_compat.c
bootblock-y += eabi_compat.c