diff options
author | Jean-Philippe Bernardy <jeanphilippe.bernardy@gmail.com> | 2005-02-12 14:12:10 +0000 |
---|---|---|
committer | Jean-Philippe Bernardy <jeanphilippe.bernardy@gmail.com> | 2005-02-12 14:12:10 +0000 |
commit | c5d00d82b0905edb13310d9713919674c2172e6a (patch) | |
tree | 0f85a51b97503657b2e80ad7ea48367bd0246821 /tools | |
parent | 77a0cffc14195487b69532fb6eeaa9f0a907d7e3 (diff) |
finished configuration for the Gmini SP
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5936 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/configure | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/tools/configure b/tools/configure index 939976597c..48d54f0bc2 100755 --- a/tools/configure +++ b/tools/configure @@ -51,7 +51,7 @@ coldfirecc () { whichaddr () { case $archos in - gmini120) + gmini120|gminisp) echo "" echo "Where do you want the firmware to be flashed?" echo "WARNING: Do not answer this question lightly," @@ -293,6 +293,7 @@ if [ -z "$archos" ]; then echo "3 - Archos FM Recorder" echo "4 - Archos Recorder v2" echo "5 - Archos Gmini 120" + echo "6 - Archos Gmini SP" echo "7 - Archos Ondio SP" echo "8 - Archos Ondio FM" echo "9 - Iriver H100" @@ -350,6 +351,19 @@ if [ -z "$archos" ]; then plugins="" # disabled for now, enable later on ;; + 6) + archos="gminisp" + target="-DARCHOS_GMINISP -DLOADADDRESS=\$(LOADADDRESS)" + memory=16 # fixed size (16 is a guess, remove comment when checked) + calmrisccc + tool="cp" # might work for now! + output="rockbox.gmini" + appextra="recorder" + archosrom="" + flash="" + plugins="" # disabled for now, enable later on + ;; + 7) archos="ondiosp" target="-DARCHOS_ONDIOSP" |