flashrom: add page (#5700)

manned-org
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
1 changed files with 24 additions and 0 deletions

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}}`