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:
parent
1c8e7f4342
commit
dea027f28f
1 changed files with 24 additions and 0 deletions
24
pages/linux/flashrom.md
Normal file
24
pages/linux/flashrom.md
Normal 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}}`
|
Loading…
Add table
Reference in a new issue