Update faq.md

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

View File

@ -4,6 +4,16 @@
Frequesntly Asked Questions
---------------------------
### How to strip U-Boot wrapper from a binary image
```
dd if=inputfile.img of=outputfile.bin bs=64 skip=1
```
alternatively
```
tail -c +65 inputfile.img > outputfile.bin
```
### How to get into bootloader shell?
[There is a handful of ways to get access to a locked bootloader shell](help-uboot.md#bypassing-password-protected-bootloader)