summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
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 2349b9efbf..fd46f03519 100755
--- a/tools/configure
+++ b/tools/configure
@@ -1291,7 +1291,7 @@ fi
1291 target="-DIAUDIO_7" 1291 target="-DIAUDIO_7"
1292 memory=16 # always 1292 memory=16 # always
1293 arm946cc 1293 arm946cc
1294 tool="$rootdir/tools/scramble -add i7" 1294 tool="$rootdir/tools/scramble -add=i7"
1295 boottool="$rootdir/tools/scramble -tcc=crc" 1295 boottool="$rootdir/tools/scramble -tcc=crc"
1296 bmp2rb_mono="$rootdir/tools/bmp2rb -f 0" 1296 bmp2rb_mono="$rootdir/tools/bmp2rb -f 0"
1297 bmp2rb_native="$rootdir/tools/bmp2rb -f 5" 1297 bmp2rb_native="$rootdir/tools/bmp2rb -f 5"
diff --git a/tools/scramble.c b/tools/scramble.c
index 5dff4f4086..ffcde9328b 100644
--- a/tools/scramble.c
+++ b/tools/scramble.c
@@ -279,6 +279,8 @@ int main (int argc, char** argv)
279 modelnum = 26; 279 modelnum = 26;
280 else if(!strcmp(&argv[1][5], "1630")) /* Philips HDD1630 */ 280 else if(!strcmp(&argv[1][5], "1630")) /* Philips HDD1630 */
281 modelnum = 31; 281 modelnum = 31;
282 else if (!strcmp(&argv[1][5], "i7"))
283 modelnum = 32;
282 else { 284 else {
283 fprintf(stderr, "unsupported model: %s\n", &argv[1][5]); 285 fprintf(stderr, "unsupported model: %s\n", &argv[1][5]);
284 return 2; 286 return 2;