forked from len0rd/rockbox
Rockbox compiles and boots now on the 2nd gen, but doesn't work properly yet.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14021 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
90eacb2616
commit
b701322fea
66 changed files with 193 additions and 97 deletions
|
|
@ -56,7 +56,7 @@ endif
|
|||
|
||||
# The arm code compiles too large for the plugin buffer when set to optimize for speed
|
||||
#ifeq ($(CC), arm-elf-gcc)
|
||||
ifneq (,$(strip $(foreach tgt,SANSA_E200 IPOD_NANO IPOD_COLOR IPOD_VIDEO IPOD_MINI IPOD_3G IPOD_4G IRIVER_H10_5GB IRIVER_H10 GIGABEAT_F,$(findstring $(tgt),$(TARGET)))))
|
||||
ifneq (,$(strip $(foreach tgt,SANSA_E200 IPOD_NANO IPOD_COLOR IPOD_VIDEO IPOD_MINI IPOD_1G2G IPOD_3G IPOD_4G IRIVER_H10_5GB IRIVER_H10 GIGABEAT_F,$(findstring $(tgt),$(TARGET)))))
|
||||
CFLAGS += -Os
|
||||
ifndef SIMVER
|
||||
ifeq ($(TARGET), IRIVER_H100)
|
||||
|
|
|
|||
|
|
@ -149,7 +149,8 @@ void I_ShutdownGraphics(void)
|
|||
// I_StartTic
|
||||
//
|
||||
|
||||
#if (CONFIG_KEYPAD == IPOD_4G_PAD) || (CONFIG_KEYPAD == IPOD_3G_PAD)
|
||||
#if (CONFIG_KEYPAD == IPOD_4G_PAD) || (CONFIG_KEYPAD == IPOD_3G_PAD) || \
|
||||
(CONFIG_KEYPAD == IPOD_1G2G_PAD)
|
||||
//#define DOOMBUTTON_SCROLLWHEEL
|
||||
#define DOOMBUTTON_UP BUTTON_MENU
|
||||
#define DOOMBUTTON_WEAPON BUTTON_SELECT
|
||||
|
|
@ -258,7 +259,8 @@ inline void getkey()
|
|||
event.type = ev_keyup;
|
||||
hswitch=0;
|
||||
}
|
||||
#if (CONFIG_KEYPAD == IPOD_4G_PAD) || (CONFIG_KEYPAD == IPOD_3G_PAD)
|
||||
#if (CONFIG_KEYPAD == IPOD_4G_PAD) || (CONFIG_KEYPAD == IPOD_3G_PAD) || \
|
||||
(CONFIG_KEYPAD == IPOD_1G2G_PAD)
|
||||
/* Bring up the menu */
|
||||
event.data1=KEY_ESCAPE;
|
||||
#else
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue