summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorKarl Kurbjun <kkurbjun@gmail.com>2007-04-21 04:48:20 +0000
committerKarl Kurbjun <kkurbjun@gmail.com>2007-04-21 04:48:20 +0000
commit8a1fd8c686d2a4b8be36754e545338a476150e6a (patch)
treef69fd8be012099a8de228bd197346e4b11cf8e4a /tools
parentdd0f1c7db1e73859805f9d9aa343bb6e04dd739e (diff)
downloadrockbox-8a1fd8c686d2a4b8be36754e545338a476150e6a.tar.gz
rockbox-8a1fd8c686d2a4b8be36754e545338a476150e6a.zip
Commit FS#6929 - Gigabeat bootloader improvements by Barry Wardell and myself. This build fixes the problems seen with the latest builds on the Gigabeat X. Added View IO Ports under the Debug menu for the Gigabeat. Make sure you grab the latest bootloader from the Wiki as the old bootloader will not work properly with new builds.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13225 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools')
-rwxr-xr-xtools/configure2
-rw-r--r--tools/scramble.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/tools/configure b/tools/configure
index 2f79755335..a507fdd31a 100755
--- a/tools/configure
+++ b/tools/configure
@@ -1048,7 +1048,7 @@ EOF
1048 target="-DGIGABEAT_F" 1048 target="-DGIGABEAT_F"
1049 memory=32 # always 1049 memory=32 # always
1050 arm9tdmicc 1050 arm9tdmicc
1051 tool="cp" 1051 tool="$rootdir/tools/scramble -add=giga"
1052 bmp2rb_mono="$rootdir/tools/bmp2rb -f 0" 1052 bmp2rb_mono="$rootdir/tools/bmp2rb -f 0"
1053 bmp2rb_native="$rootdir/tools/bmp2rb -f 4" 1053 bmp2rb_native="$rootdir/tools/bmp2rb -f 4"
1054 output="rockbox.gigabeat" 1054 output="rockbox.gigabeat"
diff --git a/tools/scramble.c b/tools/scramble.c
index 9a64a5aeed..531728379d 100644
--- a/tools/scramble.c
+++ b/tools/scramble.c
@@ -224,6 +224,8 @@ int main (int argc, char** argv)
224 modelnum = 16; 224 modelnum = 16;
225 else if(!strcmp(&argv[1][5], "iam5")) 225 else if(!strcmp(&argv[1][5], "iam5"))
226 modelnum = 17; 226 modelnum = 17;
227 else if(!strcmp(&argv[1][5], "giga"))
228 modelnum = 18;
227 else { 229 else {
228 fprintf(stderr, "unsupported model: %s\n", &argv[1][5]); 230 fprintf(stderr, "unsupported model: %s\n", &argv[1][5]);
229 return 2; 231 return 2;