Skip to content

Commit

Permalink
Remove useless things changed from ProCFW
Browse files Browse the repository at this point in the history
  • Loading branch information
artart78 committed Aug 4, 2014
1 parent 4e2b340 commit ed23de2
Show file tree
Hide file tree
Showing 54 changed files with 3,846 additions and 980 deletions.
4 changes: 2 additions & 2 deletions Common/utils.h
Original file line number Diff line number Diff line change
Expand Up @@ -105,10 +105,10 @@ int is_cpu_intr_enable(void);
void hexdump(void *addr, int size);
void fill_vram(u32 color);
#else
static inline void hexdump(void *addr __attribute__((unused)), int size __attribute__((unused)))
static inline void hexdump(void *addr, int size)
{
}
static inline void fill_vram(u32 color __attribute__((unused)))
static inline void fill_vram(u32 color)
{
}
#endif
Expand Down
22 changes: 20 additions & 2 deletions CrossFW/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,31 @@ IMPORTS = ../Imports/SysMemForKernel.o \
../Imports/LoadExecForKernel.o \
../Imports/sceCtrl_driver.o

PSP_FW_VERSION = 660

OBJS += $(IMPORTS)

INCDIR = ../Common/ ../include/
CFLAGS = -Os -G0 -Wall -fno-pic

ifeq ($(CONFIG_620), 1)
CFLAGS += -DCONFIG_620=1
PSP_FW_VERSION = 620
endif

ifeq ($(CONFIG_635), 1)
CFLAGS += -DCONFIG_635=1
PSP_FW_VERSION = 635
endif

ifeq ($(CONFIG_639), 1)
CFLAGS += -DCONFIG_639=1
PSP_FW_VERSION = 639
endif

ifeq ($(CONFIG_660), 1)
CFLAGS += -DCONFIG_660=1
PSP_FW_VERSION = 660
endif

CXXFLAGS = $(CFLAGS) -fno-exceptions -fno-rtti
ASFLAGS = $(CFLAGS)

Expand Down
Loading

0 comments on commit ed23de2

Please sign in to comment.