mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 07:57:21 +00:00
cfac375616
This introduces code to read the value of the SYS_BOOT pins on the OMAP3, as well as the memory-preferred scheme for the interpretation of each value. Signed-off-by: Paul Kocialkowski <contact@paulk.fr>
21 lines
444 B
Makefile
21 lines
444 B
Makefile
#
|
|
# (C) Copyright 2000-2003
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
obj-y := lowlevel_init.o
|
|
|
|
obj-y += board.o
|
|
obj-y += boot.o
|
|
obj-y += clock.o
|
|
obj-y += sys_info.o
|
|
ifdef CONFIG_SPL_BUILD
|
|
obj-$(CONFIG_SPL_OMAP3_ID_NAND) += spl_id_nand.o
|
|
endif
|
|
|
|
obj-$(CONFIG_DRIVER_TI_EMAC) += emac.o
|
|
obj-$(CONFIG_EMIF4) += emif4.o
|
|
obj-$(CONFIG_SDRC) += sdrc.o
|
|
obj-$(CONFIG_USB_MUSB_AM35X) += am35x_musb.o
|