1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00

flashrom: add page (#5700)

This commit is contained in:
Peter Babič 2021-04-10 00:35:57 +02:00 committed by GitHub
parent 1c8e7f4342
commit dea027f28f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

24
pages/linux/flashrom.md Normal file
View file

@ -0,0 +1,24 @@
# flashrom
> Read, write, verify and erase flash chips.
> More information: <https://manned.org/flashrom>.
- Probe the chip, ensuring the wiring is correct:
`flashrom --programmer {{programmer}}`
- Read flash and save it to a file:
`flashrom -p {{programmer}} --read {{path/to/file}}`
- Write a file to the flash:
`flashrom -p {{programmer}} --write {{path/to/file}}`
- Verify the flash against a file:
`flashrom -p {{programmer}} --verify {{path/to/file}}`
- Probe the chip using RaspberryPi:
`flashrom -p {{linux_spi:dev=/dev/spidev0.0}}`