mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-13 16:37:30 +00:00
d8769c62c1
Note1: In arch/arm/cpu/arm926ejs/spear/Makefile START := start.o was changed extra-$(CONFIG_SPL_BUILD) := start.o because spear/start.o is only used for SPL. Note2: START := start.o was missing from arch/arm/cpu/arm926ejs/mxs/Makefile. This commit simply adds extra-$(CONFIG_SPL_BUILD) := start.o Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
29 lines
936 B
Makefile
29 lines
936 B
Makefile
#
|
|
# (C) Copyright 2000-2008
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
obj-$(CONFIG_AT91CAP9) += at91cap9_devices.o
|
|
obj-$(CONFIG_AT91SAM9260) += at91sam9260_devices.o
|
|
obj-$(CONFIG_AT91SAM9G20) += at91sam9260_devices.o
|
|
obj-$(CONFIG_AT91SAM9XE) += at91sam9260_devices.o
|
|
obj-$(CONFIG_AT91SAM9261) += at91sam9261_devices.o
|
|
obj-$(CONFIG_AT91SAM9G10) += at91sam9261_devices.o
|
|
obj-$(CONFIG_AT91SAM9263) += at91sam9263_devices.o
|
|
obj-$(CONFIG_AT91SAM9RL) += at91sam9rl_devices.o
|
|
obj-$(CONFIG_AT91SAM9M10G45) += at91sam9m10g45_devices.o
|
|
obj-$(CONFIG_AT91SAM9G45) += at91sam9m10g45_devices.o
|
|
obj-$(CONFIG_AT91SAM9N12) += at91sam9n12_devices.o
|
|
obj-$(CONFIG_AT91SAM9X5) += at91sam9x5_devices.o
|
|
obj-$(CONFIG_AT91_EFLASH) += eflash.o
|
|
obj-$(CONFIG_AT91_LED) += led.o
|
|
obj-y += clock.o
|
|
obj-y += cpu.o
|
|
obj-y += reset.o
|
|
obj-y += timer.o
|
|
|
|
ifndef CONFIG_SKIP_LOWLEVEL_INIT
|
|
obj-y += lowlevel_init.o
|
|
endif
|