Browse Source

README: add preliminary method for serial transfer

pull/11/head
Martin Kepplinger 6 years ago
parent
commit
8d0222b4b7
1 changed files with 12 additions and 1 deletions
  1. +12
    -1
      README.md

+ 12
- 1
README.md View File

@ -123,7 +123,18 @@ and have the following setup
Now you should be able to copy the image over to your Rasperry Pi and run the
mentioned `flashrom` commands.
mentioned `flashrom` commands. One way to copy, is convertig it to ascii using
`uuencode`:
host$ uuencode coreboot.rom coreboot.rom.ascii > coreboot.rom.ascii
rpi$ cat > coreboot.rom.ascii
(close picocom / minicom on host)
host$ cat coreboot.rom.ascii > /dev/ttyUSBX
host$ sha1sum coreboot.rom
(open picocom / minicom again)
rpi$ uudecode -o coreboot.rom coreboot.rom.ascii
rpi$ sha1sum coreboot.rom
## How we build


Loading…
Cancel
Save