Skip to content

Commit c1f090a

Browse files
Update README.md
Specifying output folder name is optional
1 parent 2b75d68 commit c1f090a

1 file changed

Lines changed: 8 additions & 4 deletions

File tree

README.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,17 @@
22

33
- Python3, pip
44
- google protobuf for python `pip3 install protobuf`
5+
- six `pip3 install six`
56

67
### Full OTA
7-
8-
- ./extract.py [--skip_hash] --output_dir output/ payload.bin
9-
- This will start to extract the images within the payload.bin file to the output folder you are in.
8+
```
9+
./extract.py [--skip_hash] [--output_dir] payload.bin
10+
```
11+
- This will start to extract the images within the payload.bin file to a folder named "output" by default (a different folder name can be specified).
1012

1113
### Incremental OTA
1214

1315
- Copy original images (from full OTA or dumped from devices) to old folder
14-
- ./extract.py [--skip_hash] --output_dir output/ --old_dir old/ payload.bin
16+
```
17+
./extract.py [--skip_hash] [--output_dir] --old_dir <old-dir-name> payload.bin
18+
```

0 commit comments

Comments
 (0)