mirror of https://github.com/OpenIPC/wiki.git
Update faq.md
parent
7bbf87cac7
commit
5589c32b93
10
en/faq.md
10
en/faq.md
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue