summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorJörg Hohensohn <hohensoh@rockbox.org>2005-08-23 08:00:16 +0000
committerJörg Hohensohn <hohensoh@rockbox.org>2005-08-23 08:00:16 +0000
commit943d8d453735bef417d8e55ed0518ba70881538c (patch)
tree40cd67502c6a14f1087de10cef61be09e77a2c58 /apps
parent13be9f14d7ef8136ea225eaecc5ad17ef203686a (diff)
downloadrockbox-943d8d453735bef417d8e55ed0518ba70881538c.tar.gz
rockbox-943d8d453735bef417d8e55ed0518ba70881538c.zip
size check adjusted, naked bootbox is small
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7389 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/plugins/firmware_flash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/firmware_flash.c b/apps/plugins/firmware_flash.c
index 3220888c13..697884fd5d 100644
--- a/apps/plugins/firmware_flash.c
+++ b/apps/plugins/firmware_flash.c
@@ -353,7 +353,7 @@ tCheckResult CheckFirmwareFile(char* filename, int chipsize, bool is_romless)
353 rb->close(fd); 353 rb->close(fd);
354 return eTooBig; 354 return eTooBig;
355 } 355 }
356 else if (fileleft < 50000) /* give it some reasonable lower limit */ 356 else if (fileleft < 20000) /* give it some reasonable lower limit */
357 { 357 {
358 rb->close(fd); 358 rb->close(fd);
359 return eTooSmall; 359 return eTooSmall;