summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorJean-Philippe Bernardy <jeanphilippe.bernardy@gmail.com>2005-02-12 14:12:10 +0000
committerJean-Philippe Bernardy <jeanphilippe.bernardy@gmail.com>2005-02-12 14:12:10 +0000
commitc5d00d82b0905edb13310d9713919674c2172e6a (patch)
tree0f85a51b97503657b2e80ad7ea48367bd0246821 /tools
parent77a0cffc14195487b69532fb6eeaa9f0a907d7e3 (diff)
downloadrockbox-c5d00d82b0905edb13310d9713919674c2172e6a.tar.gz
rockbox-c5d00d82b0905edb13310d9713919674c2172e6a.zip
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-xtools/configure16
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 () {
51 51
52whichaddr () { 52whichaddr () {
53 case $archos in 53 case $archos in
54 gmini120) 54 gmini120|gminisp)
55 echo "" 55 echo ""
56 echo "Where do you want the firmware to be flashed?" 56 echo "Where do you want the firmware to be flashed?"
57 echo "WARNING: Do not answer this question lightly," 57 echo "WARNING: Do not answer this question lightly,"
@@ -293,6 +293,7 @@ if [ -z "$archos" ]; then
293 echo "3 - Archos FM Recorder" 293 echo "3 - Archos FM Recorder"
294 echo "4 - Archos Recorder v2" 294 echo "4 - Archos Recorder v2"
295 echo "5 - Archos Gmini 120" 295 echo "5 - Archos Gmini 120"
296 echo "6 - Archos Gmini SP"
296 echo "7 - Archos Ondio SP" 297 echo "7 - Archos Ondio SP"
297 echo "8 - Archos Ondio FM" 298 echo "8 - Archos Ondio FM"
298 echo "9 - Iriver H100" 299 echo "9 - Iriver H100"
@@ -350,6 +351,19 @@ if [ -z "$archos" ]; then
350 plugins="" # disabled for now, enable later on 351 plugins="" # disabled for now, enable later on
351 ;; 352 ;;
352 353
354 6)
355 archos="gminisp"
356 target="-DARCHOS_GMINISP -DLOADADDRESS=\$(LOADADDRESS)"
357 memory=16 # fixed size (16 is a guess, remove comment when checked)
358 calmrisccc
359 tool="cp" # might work for now!
360 output="rockbox.gmini"
361 appextra="recorder"
362 archosrom=""
363 flash=""
364 plugins="" # disabled for now, enable later on
365 ;;
366
353 7) 367 7)
354 archos="ondiosp" 368 archos="ondiosp"
355 target="-DARCHOS_ONDIOSP" 369 target="-DARCHOS_ONDIOSP"