Author: wmb Date: 2007-06-11 12:23:45 +0200 (Mon, 11 Jun 2007) New Revision: 446
Modified: cpu/x86/pc/olpc/copynand.fth Log: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx OLPC trac #498 - make ".img" check case-independent to fix problem noted in comment 17 - mixed or upper case spelling of ".img" prevent CRC checking.
Modified: cpu/x86/pc/olpc/copynand.fth =================================================================== --- cpu/x86/pc/olpc/copynand.fth 2007-06-11 10:12:35 UTC (rev 445) +++ cpu/x86/pc/olpc/copynand.fth 2007-06-11 10:23:45 UTC (rev 446) @@ -59,7 +59,7 @@
: ?open-crcs ( -- ) - image-name$ + 4 - 4 " .img" $= if + image-name$ + 4 - " .img" caps-comp 0= if " crc" image-name$ + 3 - swap move image-name$ open-crcs else