Firmware/Storage/XO-1/2015-04: Difference between revisions

From OLPC
Jump to navigation Jump to search
m (Add data from another XO-1)
No edit summary
 
(7 intermediate revisions by the same user not shown)
Line 4: Line 4:


serial-number image-name size-in-bytes time-in-seconds megabytes-per-second reporter-initials
serial-number image-name size-in-bytes time-in-seconds megabytes-per-second reporter-initials
CSN747023EA 41002qq0.img 626130944 271 2.20 ya
CSN7470372C 32014o0.img 757989376 304 2.38 tm
CSN7470372C 32014o0.img 757989376 304 2.38 tm
CSN748008C2 32014o0.img 757989376 333 2.17 hm
CSN74800DFD 32014o0.img 757989376 296.006556 2.442091 jc
CSN74800DFD 32014o0.img 757989376 296.006556 2.442091 jc
CSN74802D21 32014o0.img 757989376 294.382764 2.455562 jc
CSN74802D21 32014o0.img 757989376 294.382764 2.455562 jc
Line 11: Line 13:
CSN75000153 32014o0.img 757989376 297.549244 2.429430 jc
CSN75000153 32014o0.img 757989376 297.549244 2.429430 jc
SHF80701C99 41002qq0.img 626130944 270 2.21 ya
SHF80701C99 41002qq0.img 626130944 270 2.21 ya
CSN747023EA 41002qq0.img 626130944 271 2.20 ya
SHC84204612 32014o0.img 757989376 332 2.17 go
SHC90200E1E 32014o0.img 757989376 313 2.31 nr
CSN74804EA0 32014o0.img 757989376 314 2.30 nr
SHF80701FB4 32014o0.img 757989376 325 2.22 nr
CSN74903574 32014o0.img 757989376 325 2.22 nr


== Test ==
== Test ==
Line 24: Line 30:


* erase time is included in elapsed time,
* erase time is included in elapsed time,
* access to the USB drive is included in elapsed time.


== Automating ==
== Automating ==

Put this in {{Code|boot/olpc.fth}} on a USB drive, and boot each laptop in a batch.


\ test
\ test
Line 44: Line 53:
begin key [char] q = until cr
begin key [char] q = until cr
power-off
power-off

Afterwards, supply the {{Code|timings.txt}} file.

== See Also ==

* [http://dev.laptop.org/git/projects/olpc-os-builder/commit/?h=v7.0&id=304ea8dc70b564140f1da1e3a12d9fb0ecab8f4b create swap] during build,
* [http://dev.laptop.org/git/projects/olpc-utils/commit/?id=eebafedc5721a2a3e96b9ff7b81d1f848408d355 enable swap] in olpc-configure,
* [http://rpmdropbox.laptop.org/f18/olpc-utils-6.0.6-1.fc18.i686.rpm olpc-utils-6.0.6-1.fc18.i686.rpm]

Latest revision as of 07:42, 7 April 2015

XO-1 NAND Flash reprogramming times.

Results

serial-number image-name size-in-bytes time-in-seconds megabytes-per-second reporter-initials
CSN747023EA 41002qq0.img 626130944 271 2.20 ya
CSN7470372C 32014o0.img 757989376 304 2.38 tm
CSN748008C2 32014o0.img 757989376 333 2.17 hm
CSN74800DFD 32014o0.img 757989376 296.006556 2.442091 jc
CSN74802D21 32014o0.img 757989376 294.382764 2.455562 jc
CSN748043BE 32014o0.img 757989376 305.829746 2.363652 jc
CSN75001153 32014o0.img 757989376 285.616982 2.530924 jc
CSN75000153 32014o0.img 757989376 297.549244 2.429430 jc
SHF80701C99 41002qq0.img 626130944 270 2.21 ya
SHC84204612 32014o0.img 757989376 332 2.17 go
SHC90200E1E 32014o0.img 757989376 313 2.31 nr
CSN74804EA0 32014o0.img 757989376 314 2.30 nr
SHF80701FB4 32014o0.img 757989376 325 2.22 nr
CSN74903574 32014o0.img 757989376 325 2.22 nr

Test

How long does it take to reflash? To test, surround a copy-nand command with timing markers, like this:

ok t-sec( copy-nand u:\32014o0.img )t-sec

The result will be on the line above the ok prompt when it is done, e.g. 403S, which is 403 seconds. Send me the serial number, file name, and time in seconds.

Notes

  • erase time is included in elapsed time,
  • access to the USB drive is included in elapsed time.

Automating

Put this in boot/olpc.fth on a USB drive, and boot each laptop in a batch.

\ test
visible
." http://wiki.laptop.org/go/Firmware/Storage/XO-1/2015-04" cr
." XO-1 NAND Flash reprogramming time test" cr
cr
." Press y to begin "
begin key [char] y = until cr

: .sn  " SN" find-tag  if  type space  then  ;
: .fn  ." 32014o0.img 757989376 "  ;

t( copy-nand u:\32014o0.img
append-to-file u:\timings.txt .sn .fn )t cr

." Press q to turn off "
begin key [char] q = until cr
power-off

Afterwards, supply the timings.txt file.

See Also