Update EMMC_RESTORE.md

This commit is contained in:
Lab1717 2024-03-25 18:07:30 +01:00 committed by GitHub
parent bdf14d78f3
commit 9fa7097344
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -42,13 +42,13 @@ For a system restore replace the above script name `restore.scr` with the name `
5. ONLY IN CASE YOU DONT' HAVE A backups on a USB disk you can create them from the backup files on a Linux machine, otherwise go step 5.
```sh
dd if=emmc_backup.bin of=/dev/sdh bs=512 count=15269888 status=progress
dd of=emmc_backup.bin of=/dev/sdh bs=512 count=15269888 status=progress
```
or in case of system backup:
```sh
dd if=emmc_system_backup.bin of=/dev/sdh bs=512 count=1135648 status=progress
dd of=emmc_system_backup.bin of=/dev/sdh bs=512 count=1135648 status=progress
```
Note: replace the `/dev/sdh` with the device name of your USB disk.