File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ export HEADER
1111
1212
1313# ---{BUILD CFG}--- #
14- HAS_EMBED_IRX = 1 # whether to embed or not non vital IRX (wich will be loaded from memcard files)
14+ HAS_EMBED_IRX ? = 1# whether to embed or not non vital IRX (wich will be loaded from memcard files)
1515DEBUG ?= 0
1616CHAINLOAD ?= 0 # Only inits the system and boots CHAINLOAD_PATH from the memory card
1717CHAINLOAD_PATH ?= "mc?:BOOT/PAYLOAD.ELF"
@@ -161,10 +161,12 @@ else
161161 EE_OBJS += sio2man_irx.o
162162endif
163163
164- ifneq ($(HAS_EMBED_IRX ) , 1)
164+ ifeq ($(HAS_EMBED_IRX ) , 1)
165165 $(info --- USB drivers will be embedded)
166166 EE_OBJS += usbd_irx.o bdm_irx.o bdmfs_fatfs_irx.o usbmass_bd_irx.o
167167 EE_CFLAGS += -DHAS_EMBEDDED_IRX
168+ else
169+ $(info --- USB drivers will be external)
168170endif
169171
170172ifeq ($(HDD ) , 1)
You can’t perform that action at this time.
0 commit comments