Skip to content

Commit

Permalink
Get rid of the race condition on WSL
Browse files Browse the repository at this point in the history
  • Loading branch information
Yoti committed Nov 28, 2024
1 parent 5355ec4 commit b70215c
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 15 deletions.
6 changes: 0 additions & 6 deletions .gitattributes

This file was deleted.

10 changes: 1 addition & 9 deletions extras/150kernel/installer/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,18 +24,10 @@ EXTRA_TARGETS = EBOOT.PBP

PSP_FW_VERSION = 660

all: $(TARGET).prx

pspbtcnf_game.h:
all:
$(Q)bin2c ../btcnf/pspbtcnf_game.txt pspbtcnf_game.h pspbtcnf_game

reboot150.h:
$(Q)bin2c $(ARKROOT)/extras/150kernel/reboot150/reboot150.prx reboot150.h reboot150

systemctrl150.h:
$(Q)bin2c $(ARKROOT)/extras/150kernel/systemctrl150/systemctrl150.prx systemctrl150.h systemctrl150

tmctrl150.h:
$(Q)bin2c $(ARKROOT)/extras/150kernel/tmctrl150/tmctrl150.prx tmctrl150.h tmctrl150

PSPSDK=$(shell psp-config --pspsdk-path)
Expand Down
42 changes: 42 additions & 0 deletions extras/150kernel/installer/Makefile.bak
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
TARGET = ark150addoninstaller
OBJS = \
pspbtcnf_game.h \
reboot150.h \
systemctrl150.h \
tmctrl150.h \
main.o \
pspDecrypt.o \
pspPSAR.o \

CFLAGS = -std=c99 -Os -G0 -Wall
INCDIR = $(PSPSDK)/include $(ARKROOT)/common/include

LIBS = -lpspkubridge -lpsppower

CXXFLAGS = $(CFLAGS)
ASFLAGS = $(CFLAGS)
LDFLAGS = -L $(ARKROOT)/libs
BUILD_PRX = 1
PSP_EBOOT_ICON =
PSP_EBOOT_TITLE += ARK 150 Addon Installer

EXTRA_TARGETS = EBOOT.PBP

PSP_FW_VERSION = 660

all: $(TARGET).prx

pspbtcnf_game.h:
$(Q)bin2c ../btcnf/pspbtcnf_game.txt pspbtcnf_game.h pspbtcnf_game

reboot150.h:
$(Q)bin2c $(ARKROOT)/extras/150kernel/reboot150/reboot150.prx reboot150.h reboot150

systemctrl150.h:
$(Q)bin2c $(ARKROOT)/extras/150kernel/systemctrl150/systemctrl150.prx systemctrl150.h systemctrl150

tmctrl150.h:
$(Q)bin2c $(ARKROOT)/extras/150kernel/tmctrl150/tmctrl150.prx tmctrl150.h tmctrl150

PSPSDK=$(shell psp-config --pspsdk-path)
include $(PSPSDK)/lib/build.mak

0 comments on commit b70215c

Please sign in to comment.