mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-07-21 14:22:08 +00:00
DaVinci now respects SKIP_LOWLEVEL_INIT
Don't needlessly include lowlevel init code; that's only really needed with boot-from NOR (not boot-from-NAND). The 2nd stage loader (UBL) handles that before it loads U-Boot. Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
This commit is contained in:
parent
641e0925e4
commit
84f7411cb9
1 changed files with 5 additions and 1 deletions
|
@ -28,7 +28,11 @@ include $(TOPDIR)/config.mk
|
||||||
LIB = $(obj)lib$(SOC).a
|
LIB = $(obj)lib$(SOC).a
|
||||||
|
|
||||||
COBJS = timer.o ether.o lxt972.o dp83848.o
|
COBJS = timer.o ether.o lxt972.o dp83848.o
|
||||||
SOBJS = lowlevel_init.o reset.o
|
SOBJS = reset.o
|
||||||
|
|
||||||
|
ifndef CONFIG_SKIP_LOWLEVEL_INIT
|
||||||
|
SOBJS += lowlevel_init.o
|
||||||
|
endif
|
||||||
|
|
||||||
SRCS := $(START:.o=.S) $(SOBJS:.o=.S) $(COBJS:.o=.c)
|
SRCS := $(START:.o=.S) $(SOBJS:.o=.S) $(COBJS:.o=.c)
|
||||||
OBJS := $(addprefix $(obj),$(COBJS) $(SOBJS))
|
OBJS := $(addprefix $(obj),$(COBJS) $(SOBJS))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue