This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
software:oowow:how-to:oowow-create-sd-dump-partition [2022/10/21 02:33] hyphop created |
software:oowow:how-to:oowow-create-sd-dump-partition [2023/08/26 23:11] (current) hyphop [OOWOW create dump partition] |
||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== | + | ~~tag>OOWOW dump howto~~ |
- | ``` | + | ====== OOWOW create dump partition ====== |
+ | After writing oowow image to SD/USB disk, for example by next command '' | ||
+ | ===== Create 2nd dumps partition manually ===== | ||
+ | |||
+ | For some cases we need create 2nd partition before start oowow, for example automation restore images etc ... | ||
+ | |||
+ | ```sh create-2nd-part-example.sh | ||
+ | # copy original parts | ||
+ | sdfisk --dump /dev/sdX | tee / | ||
+ | |||
+ | # add dump partition | ||
+ | echo start=131072, | ||
+ | |||
+ | # format 2s part as exfat | ||
+ | mkfs.exfat -n dumps /dev/sdX2 | ||
``` | ``` |