94 lines
2.4 KiB
Makefile
Executable File
94 lines
2.4 KiB
Makefile
Executable File
#
|
|
# (C) Copyright 2000-2011
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
#
|
|
# (C) Copyright 2011
|
|
# Daniel Schwierzeck, daniel.schwierzeck@googlemail.com.
|
|
#
|
|
# (C) Copyright 2011
|
|
# Texas Instruments Incorporated - http://www.ti.com/
|
|
# Aneesh V <aneesh@ti.com>
|
|
#
|
|
# This file is released under the terms of GPL v2 and any later version.
|
|
# See the file COPYING in the root directory of the source tree for details.
|
|
#
|
|
# Based on top-level Makefile.
|
|
#
|
|
|
|
include $(SPLDIR)/config.mk
|
|
include $(TOPDIR)/include/autoconf.mk
|
|
include $(TOPDIR)/include/autoconf.mk.dep
|
|
|
|
CONFIG_SPL := y
|
|
export CONFIG_SPL
|
|
|
|
TOOLS_DIR := $(TOPDIR)/tools
|
|
|
|
SBROM_LDSCRIPT := $(TOPDIR)/sunxi_spl/sbrom/main/sboot.lds
|
|
|
|
# We want the final binaries in this directory
|
|
obj := $(OBJTREE)/sunxi_spl/sbrom/
|
|
|
|
HEAD := main/sbromsw_head.o
|
|
START := main/brom.o
|
|
|
|
LIBS-y += sunxi_spl/sbrom/spl/libsource_spl.o
|
|
LIBS-y += sunxi_spl/sbrom/main/libmain.o
|
|
LIBS-y += sunxi_spl/sbrom/libs/libgeneric.o
|
|
LIBS-y += sunxi_spl/sbrom/flash/libflash.o
|
|
LIBS-y += sunxi_spl/sbrom/load/libload.o
|
|
LIBS-y += sunxi_spl/spl/lib/libgeneric.o
|
|
LIBS-y += arch/$(ARCH)/cpu/$(CPU)/$(SOC)/nand/libnand.o
|
|
LIBS-y += arch/$(ARCH)/cpu/$(CPU)/$(SOC)/mmc/libmmc.o
|
|
LIBS-y += arch/$(ARCH)/cpu/$(CPU)/$(SOC)/dram/libdram.o
|
|
LIBS-y += arch/$(ARCH)/cpu/$(CPU)/$(SOC)/dram/libchipid.o
|
|
LIBS-y += lib/openssl/libopenssl.o
|
|
|
|
|
|
LIBS := $(addprefix $(OBJTREE)/,$(sort $(LIBS-y)))
|
|
|
|
|
|
__LIBS := $(subst $(obj),,$(LIBS))
|
|
|
|
|
|
|
|
|
|
# Special flags for CPP when processing the linker script.
|
|
# Pass the version down so we can handle backwards compatibility
|
|
# on the fly.
|
|
LDPPFLAGS += \
|
|
-include $(TOPDIR)/include/u-boot/u-boot.lds.h \
|
|
-DSBROMSWADDR=$(CONFIG_TOC0_RUN_ADDR) \
|
|
$(shell $(LD) --version | \
|
|
sed -ne 's/GNU ld version \([0-9][0-9]*\)\.\([0-9][0-9]*\).*/-DLD_MAJOR=\1 -DLD_MINOR=\2/p')
|
|
|
|
ALL-y += $(obj)sboot.bin
|
|
|
|
all: $(ALL-y)
|
|
|
|
|
|
$(obj)sboot.bin: $(obj)sboot.axf
|
|
$(OBJCOPY) $(OBJCFLAGS) -O binary $< $@
|
|
|
|
$(obj)sboot.axf: $(LIBS) $(obj)sboot.lds
|
|
$(LD) $(LIBS) $(PLATFORM_LIBGCC) $(LDFLAGS) -T$(obj)sboot.lds -o sboot.axf -Map sboot.map
|
|
|
|
$(LIBS): depend
|
|
$(MAKE) -C $(SRCTREE)$(dir $(subst $(OBJTREE),,$@))
|
|
|
|
$(obj)sboot.lds: $(SBROM_LDSCRIPT)
|
|
$(CPP) $(CPPFLAGS) $(LDPPFLAGS) -ansi -D__ASSEMBLY__ -P - <$^ >$@
|
|
|
|
depend:.depend
|
|
|
|
#########################################################################
|
|
|
|
# defines $(obj).depend target
|
|
include $(SRCTREE)/rules.mk
|
|
|
|
sinclude .depend
|
|
|
|
#########################################################################
|
|
|
|
|