Author: quozl Date: Tue Oct 16 02:01:45 2012 New Revision: 3371 URL: http://tracker.coreboot.org/trac/openfirmware/changeset/3371
Log: OLPC - signed fs-update, fix for uninitialised buffer pointer, #12186
Modified: cpu/x86/pc/olpc/via/fsupdate.fth
Modified: cpu/x86/pc/olpc/via/fsupdate.fth ============================================================================== --- cpu/x86/pc/olpc/via/fsupdate.fth Sat Oct 13 03:44:30 2012 (r3370) +++ cpu/x86/pc/olpc/via/fsupdate.fth Tue Oct 16 02:01:45 2012 (r3371) @@ -72,7 +72,6 @@ also nand-commands definitions
: zblocks: ( "eblock-size" "#eblocks" ... -- ) - load-base to data-buffer ?compare-spec-line get-hex# to /nand-block get-hex# to #image-eblocks @@ -269,6 +268,7 @@ load-crypto abort" Can't load hash routines"
open-nand ( file$ ) + load-base to data-buffer
false to secure-fsupdate? ( file$ ) r/o open-file ( fd error? ) @@ -308,6 +308,7 @@ ['] noop to show-progress ( adr len )
['] open-nand catch ?dup if .error security-failure then ( adr len ) + load-base to data-buffer
\ clear-context nand-commands t-hms(
openfirmware@openfirmware.info