Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump BDM and USB drivers to latest SDK #95

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ PPC_UART ?= 0
SIO_DEBUG ?= 0
DEBUG ?= 0
LCDVD ?= LEGACY#or LATEST
USBD ?= LEGACY#or LATEST
# ----------------------------- #
.SILENT:

Expand Down Expand Up @@ -155,6 +156,7 @@ ifeq ($(EXFAT),1)
EE_OBJS += bdm_irx.o bdmfs_fatfs_irx.o usbmass_bd_irx.o
EE_CFLAGS += -DEXFAT
HAS_EXFAT = -EXFAT
USBD = LATEST
else
EE_OBJS += usbhdfsd_irx.o
endif
Expand Down
9 changes: 6 additions & 3 deletions embed.make
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,11 @@ else # if we have mx4sio use newer IRX to avoid deadlocks when opening common me
MCSERV_SOURCE = iop/__precompiled/mcserv.irx
SIO2MAN_SOURCE = iop/__precompiled/sio2man.irx
endif


ifeq ($(USBD),LEGACY)
USBD_SOURCE = $(PS2SDK)/iop/irx/usbd.irx
else ifeq ($(USBD),LATEST)
USBD_SOURCE = iop/__precompiled/usbd.irx
endif

#---{ MC }---#
$(EE_ASM_DIR)mcman_irx.s: $(MCMAN_SOURCE) | $(EE_ASM_DIR)
Expand All @@ -29,7 +32,7 @@ $(EE_ASM_DIR)mmceman_irx.s: iop/__precompiled/mmceman.irx | $(EE_ASM_DIR)
$(BIN2S) $< $@ mmceman_irx
#---{ USB }---#

$(EE_ASM_DIR)usbd_irx.s: $(PS2SDK)/iop/irx/usbd.irx | $(EE_ASM_DIR)
$(EE_ASM_DIR)usbd_irx.s: $(USBD_SOURCE) | $(EE_ASM_DIR)
$(BIN2S) $< $@ usbd_irx

ifeq ($(EXFAT),1)
Expand Down
Binary file modified iop/__precompiled/bdm.irx
Binary file not shown.
Binary file modified iop/__precompiled/bdmfs_fatfs.irx
Binary file not shown.
Binary file modified iop/__precompiled/mx4sio_bd.irx
Binary file not shown.
Binary file added iop/__precompiled/usbd.irx
Binary file not shown.
Binary file modified iop/__precompiled/usbmass_bd.irx
Binary file not shown.