mirror of https://github.com/OpenIPC/wiki.git
Update faq.md
parent
1b01463436
commit
14b3cb6c95
11
en/faq.md
11
en/faq.md
|
@ -124,6 +124,17 @@ curl -L -o /tmp/ipcinfo https://github.com/OpenIPC/ipctool/releases/download/lat
|
||||||
curl -s https://raw.githubusercontent.com/OpenIPC/firmware/master/general/overlay/usr/sbin/sysupgrade | sh -s -- -k -r -n
|
curl -s https://raw.githubusercontent.com/OpenIPC/firmware/master/general/overlay/usr/sbin/sysupgrade | sh -s -- -k -r -n
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### Is it possible to switch from “lite” to “ultimate” via “Over the Air”?
|
||||||
|
|
||||||
|
It depends on the board, generally you can try to split the ultimate image to the rootfs and overlay partition and then set the correct partition layout via uboot.
|
||||||
|
|
||||||
|
```
|
||||||
|
dd if=rootfs.squashfs of=mtd3.bin bs=1k count=5120
|
||||||
|
dd if=rootfs.squashfs of=mtd4.bin bs=1k skip=5120
|
||||||
|
flashcp mtd3.bin /dev/mtd3 -v
|
||||||
|
flashcp mtd4.bin /dev/mtd4 -v
|
||||||
|
```
|
||||||
|
|
||||||
### How to dump full firmware to an NFS share
|
### How to dump full firmware to an NFS share
|
||||||
|
|
||||||
This could work if you are lucky, you gained access into Linux shell on stock
|
This could work if you are lucky, you gained access into Linux shell on stock
|
||||||
|
|
Loading…
Reference in New Issue