summaryrefslogtreecommitdiff
path: root/bootloader
diff options
context:
space:
mode:
authorMark Arigo <markarigo@gmail.com>2008-06-27 18:40:25 +0000
committerMark Arigo <markarigo@gmail.com>2008-06-27 18:40:25 +0000
commit22e7bf32b894acc1f9e2820e213f05a57bd4148c (patch)
treecdecc7a9f0db0b41d7ac55680c2b3b2212ab4dda /bootloader
parent78337961b72b76c410075a0d5fe6c3cf1269b5e8 (diff)
downloadrockbox-22e7bf32b894acc1f9e2820e213f05a57bd4148c.tar.gz
rockbox-22e7bf32b894acc1f9e2820e213f05a57bd4148c.zip
My Devcon 2008 contribution: port for Philips GoGear HDD1630 (PP5022-based). Current status is that the bootloader works to load Rockbox, but dual boot does not work: it freezes after decrypting the OF. When Rockbox boots, it freezes somewhere between showing the logo and the main menu. And there's no driver for the touchpad. So lots of work left.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17809 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'bootloader')
-rw-r--r--bootloader/SOURCES3
-rw-r--r--bootloader/main-pp.c4
2 files changed, 6 insertions, 1 deletions
diff --git a/bootloader/SOURCES b/bootloader/SOURCES
index c38b8ade1f..37011dd700 100644
--- a/bootloader/SOURCES
+++ b/bootloader/SOURCES
@@ -9,7 +9,8 @@ gigabeat-s.c
9../firmware/target/arm/imx31/gigabeat-s/mmu-imx31.c 9../firmware/target/arm/imx31/gigabeat-s/mmu-imx31.c
10#elif defined(IRIVER_H10) || defined(IRIVER_H10_5GB) || \ 10#elif defined(IRIVER_H10) || defined(IRIVER_H10_5GB) || \
11 defined(SANSA_E200) || defined(SANSA_C200) || \ 11 defined(SANSA_E200) || defined(SANSA_C200) || \
12 defined(MROBE_100) || defined(PHILIPS_SA9200) 12 defined(MROBE_100) || defined(PHILIPS_SA9200) || \
13 defined(PHILIPS_HDD1630)
13#ifdef E200R_INSTALLER 14#ifdef E200R_INSTALLER
14main-e200r-installer.c 15main-e200r-installer.c
15#else 16#else
diff --git a/bootloader/main-pp.c b/bootloader/main-pp.c
index 076900555e..9d69ed4932 100644
--- a/bootloader/main-pp.c
+++ b/bootloader/main-pp.c
@@ -61,6 +61,10 @@ extern int show_logo(void);
61 61
62#elif CONFIG_KEYPAD == PHILIPS_SA9200_PAD 62#elif CONFIG_KEYPAD == PHILIPS_SA9200_PAD
63#define BOOTLOADER_BOOT_OF BUTTON_VOL_UP 63#define BOOTLOADER_BOOT_OF BUTTON_VOL_UP
64
65#elif CONFIG_KEYPAD == PHILIPS_HDD1630_PAD
66#define BOOTLOADER_BOOT_OF BUTTON_MENU
67
64#endif 68#endif
65 69
66/* Maximum allowed firmware image size. 10MB is more than enough */ 70/* Maximum allowed firmware image size. 10MB is more than enough */