dandrewheat / procfw

Automatically exported from code.google.com/p/procfw
0 stars 0 forks source link

usbdevice Makefile missing 620,635, and 660 config #452

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
replace line:
"PSP_FW_VERSION = 639"

with
"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
"

Original issue reported on code.google.com by g4mM4.r...@gmail.com on 29 May 2012 at 3:48