mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-05 19:51:45 +00:00
f66b41c027
exo2: Implement uncompressor stub and boot code up to Main(). exo2: implement some more init (uart/gic) exo2: implement more of init exo2: improve reg api, add keyslot flag setters exo2: implement se aes decryption/enc exo2: fix bugs in loader stub/mmu mappings exo2: start skeletoning bootconfig/global context types arch: fix makefile flags exo2: implement through master key derivation exo2: implement device master keygen exo2: more init through start of SetupSocSecurity exo2: implement pmc secure scratch management se: implement sticky bit validation libexosphere: fix building for arm32 libexo: fix makefile flags libexo: support building for arm64/arm sc7fw: skeleton binary sc7fw: skeleton a little more sc7fw: implement all non-dram functionality exo2: fix DivideUp error sc7fw: implement more dram code, fix reg library errors sc7fw: complete sc7fw impl. exo2: skeleton the rest of SetupSocSecurity exo2: implement fiq interrupt handler exo2: implement all exception handlers exo2: skeleton the entire smc api, implement the svc invoker exo2: implement rest of SetupSocSecurity exo2: correct slave security errors exo2: fix register definition exo2: minor fixes
38 lines
802 B
Makefile
38 lines
802 B
Makefile
TARGETS := exosphere.bin program.lz4
|
|
CLEAN_TARGETS := exosphere-clean program-clean boot_code-clean
|
|
|
|
SUBFOLDERS := $(MODULES)
|
|
|
|
all: exosphere.bin
|
|
|
|
clean: $(CLEAN_TARGETS)
|
|
@rm -f exosphere.bin
|
|
|
|
exosphere.bin: program.lz4 boot_code.lz4
|
|
$(MAKE) -C loader_stub
|
|
@cp loader_stub/loader_stub.bin exosphere.bin
|
|
@echo "Built exosphere.bin..."
|
|
|
|
program.lz4: check_libexo
|
|
$(MAKE) -C program
|
|
@cp program/program.lz4 program.lz4
|
|
@cp program/boot_code.lz4 boot_code.lz4
|
|
|
|
boot_code.lz4: program.lz4
|
|
|
|
check_libexo:
|
|
@$(MAKE) --no-print-directory -C ../libraries/libexosphere
|
|
|
|
exosphere-clean:
|
|
$(MAKE) -C loader_stub clean
|
|
@rm -f exosphere.bin
|
|
|
|
program-clean:
|
|
$(MAKE) -C program clean
|
|
@rm -f program.lz4
|
|
|
|
boot_code-clean:
|
|
$(MAKE) -C boot_code clean
|
|
@rm -f boot_code.lz4
|
|
|
|
.PHONY: all clean $(CLEAN_TARGETS)
|