summaryrefslogtreecommitdiff
path: root/tools/configure
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 /tools/configure
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 'tools/configure')
-rwxr-xr-xtools/configure26
1 files changed, 25 insertions, 1 deletions
diff --git a/tools/configure b/tools/configure
index b2c1b7ed18..3d9afdbfda 100755
--- a/tools/configure
+++ b/tools/configure
@@ -679,7 +679,7 @@ cat <<EOF
679 679
680 ==Creative== ==Philips== 680 ==Creative== ==Philips==
681 90) Zen Vision:M 30GB 100) GoGear SA9200 681 90) Zen Vision:M 30GB 100) GoGear SA9200
682 91) Zen Vision:M 60GB 682 91) Zen Vision:M 60GB 101) GoGear HDD1630
683 92) Zen Vision 683 92) Zen Vision
684 684
685EOF 685EOF
@@ -1696,6 +1696,30 @@ fi
1696 t_model="sa9200" 1696 t_model="sa9200"
1697 ;; 1697 ;;
1698 1698
1699 101|hdd1630)
1700 target_id=43
1701 modelname="hdd1630"
1702 target="-DPHILIPS_HDD1630"
1703 memory=32 # supposedly
1704 arm7tdmicc
1705 tool="$rootdir/tools/scramble -mi4v3 -model=1630 -type=RBOS"
1706 bmp2rb_mono="$rootdir/tools/bmp2rb -f 0"
1707 bmp2rb_native="$rootdir/tools/bmp2rb -f 4"
1708 output="rockbox.mi4"
1709 appextra="recorder:gui"
1710 plugins=""
1711 swcodec="yes"
1712 boottool="$rootdir/tools/scramble -mi4v3 -model=1630 -type=RBBL"
1713 bootoutput="FWImage.ebn"
1714 # toolset is the tools within the tools directory that we build for
1715 # this particular target.
1716 toolset="$genericbitmaptools scramble"
1717 # architecture, manufacturer and model for the target-tree build
1718 t_cpu="arm"
1719 t_manufacturer="philips"
1720 t_model="hdd1630"
1721 ;;
1722
1699 *) 1723 *)
1700 echo "Please select a supported target platform!" 1724 echo "Please select a supported target platform!"
1701 exit 1725 exit