forked from len0rd/rockbox
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
This commit is contained in:
parent
78337961b7
commit
22e7bf32b8
20 changed files with 1198 additions and 4 deletions
26
tools/configure
vendored
26
tools/configure
vendored
|
@ -679,7 +679,7 @@ cat <<EOF
|
|||
|
||||
==Creative== ==Philips==
|
||||
90) Zen Vision:M 30GB 100) GoGear SA9200
|
||||
91) Zen Vision:M 60GB
|
||||
91) Zen Vision:M 60GB 101) GoGear HDD1630
|
||||
92) Zen Vision
|
||||
|
||||
EOF
|
||||
|
@ -1696,6 +1696,30 @@ fi
|
|||
t_model="sa9200"
|
||||
;;
|
||||
|
||||
101|hdd1630)
|
||||
target_id=43
|
||||
modelname="hdd1630"
|
||||
target="-DPHILIPS_HDD1630"
|
||||
memory=32 # supposedly
|
||||
arm7tdmicc
|
||||
tool="$rootdir/tools/scramble -mi4v3 -model=1630 -type=RBOS"
|
||||
bmp2rb_mono="$rootdir/tools/bmp2rb -f 0"
|
||||
bmp2rb_native="$rootdir/tools/bmp2rb -f 4"
|
||||
output="rockbox.mi4"
|
||||
appextra="recorder:gui"
|
||||
plugins=""
|
||||
swcodec="yes"
|
||||
boottool="$rootdir/tools/scramble -mi4v3 -model=1630 -type=RBBL"
|
||||
bootoutput="FWImage.ebn"
|
||||
# toolset is the tools within the tools directory that we build for
|
||||
# this particular target.
|
||||
toolset="$genericbitmaptools scramble"
|
||||
# architecture, manufacturer and model for the target-tree build
|
||||
t_cpu="arm"
|
||||
t_manufacturer="philips"
|
||||
t_model="hdd1630"
|
||||
;;
|
||||
|
||||
*)
|
||||
echo "Please select a supported target platform!"
|
||||
exit
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue