summaryrefslogtreecommitdiff
path: root/bootloader/main-pp.c
diff options
context:
space:
mode:
authorMark Arigo <markarigo@gmail.com>2009-12-25 04:05:01 +0000
committerMark Arigo <markarigo@gmail.com>2009-12-25 04:05:01 +0000
commit6908cc52358df90a27452ab0f085fa41674440ff (patch)
tree32c307c3164e24ad427ac98b389bad823c363034 /bootloader/main-pp.c
parent4a85eb7d9f7212bf2a0974fa42c2cb4f1790f99e (diff)
downloadrockbox-6908cc52358df90a27452ab0f085fa41674440ff.tar.gz
rockbox-6908cc52358df90a27452ab0f085fa41674440ff.zip
Merry Christmas Gogear HDD6330 owners! This is the start of the HDD6330 port. At the moment, it's essentially a copy of the HDD1630 port with a minimal LCD driver. The touchpad doesn't work as expected, but you can still kind of navigate and listen to music/radio.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24112 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'bootloader/main-pp.c')
-rw-r--r--bootloader/main-pp.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/bootloader/main-pp.c b/bootloader/main-pp.c
index ef0e199e3a..fe93f14eaa 100644
--- a/bootloader/main-pp.c
+++ b/bootloader/main-pp.c
@@ -75,6 +75,9 @@ extern int show_logo(void);
75#elif CONFIG_KEYPAD == PHILIPS_HDD1630_PAD 75#elif CONFIG_KEYPAD == PHILIPS_HDD1630_PAD
76#define BOOTLOADER_BOOT_OF BUTTON_MENU 76#define BOOTLOADER_BOOT_OF BUTTON_MENU
77 77
78#elif CONFIG_KEYPAD == PHILIPS_HDD6330_PAD
79#define BOOTLOADER_BOOT_OF BUTTON_VOL_UP
80
78#elif CONFIG_KEYPAD == SAMSUNG_YH_PAD 81#elif CONFIG_KEYPAD == SAMSUNG_YH_PAD
79#define BOOTLOADER_BOOT_OF BUTTON_LEFT 82#define BOOTLOADER_BOOT_OF BUTTON_LEFT
80 83
@@ -603,7 +606,7 @@ void* main(void)
603 } 606 }
604#endif 607#endif
605 608
606#if defined(PHILIPS_HDD1630) 609#if defined(PHILIPS_HDD1630) || defined(PHILIPS_HDD6330)
607 printf("Trying /System/OF.ebn"); 610 printf("Trying /System/OF.ebn");
608 rc=load_mi4(loadbuffer, "/System/OF.ebn", MAX_LOADSIZE); 611 rc=load_mi4(loadbuffer, "/System/OF.ebn", MAX_LOADSIZE);
609 if (rc < EOK) { 612 if (rc < EOK) {