Add FSBL debug and QSPI Bypass

This commit is contained in:
2026-05-27 18:06:29 +08:00
parent ee3ede1152
commit 9723d04512
16 changed files with 1158 additions and 760 deletions
@@ -8,11 +8,9 @@ LN_FLAGS := -mcpu=cortex-a9 -mfpu=vfpv3 -mfloat-abi=hard -Wl,-build-id=none -sp
c_SOURCES := $(wildcard *.c)
S_SOURCES := $(wildcard *.S)
s_SOURCES := $(wildcard *.s)
INCLUDES := $(wildcard *.h)
OBJS := $(patsubst %.c, %.o, $(c_SOURCES))
OBJS += $(patsubst %.S, %.o, $(S_SOURCES))
OBJS += $(patsubst %.s, %.o, $(s_SOURCES))
LSCRIPT := -Tlscript.ld
CURRENT_DIR = $(shell pwd)