Update faq.md

pull/74/head
Paul Philippov 2023-03-04 14:07:10 -05:00 committed by GitHub
parent 5589c32b93
commit b58620114e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 1 deletions

View File

@ -4,8 +4,14 @@
Frequesntly Asked Questions
---------------------------
### How to strip U-Boot wrapper from a binary image
### How to strip U-Boot Image wrapper from a binary image
Sometimes vendor's firmware consists of binary images intended
for use with U-Boot image loader and prepended with headers in
[U-Boot Image wrapper format](https://formats.kaitai.io/uimage/).
The header should be stripped off before you can use such an image
as a raw binary file. Here's how you can strip the first 64 bytes
from a file:
```
dd if=inputfile.img of=outputfile.bin bs=64 skip=1
```