summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorNayil Mukhametshin <66028747+nlscc@users.noreply.github.com>2020-05-25 17:22:43 +0200
committerNayil Mukhametshin <66028747+nlscc@users.noreply.github.com>2020-05-25 17:22:43 +0200
commit6273f3634b72c0df21c2ece52b750b8834b7fed2 (patch)
treed01f11b47087320eeabf64f20a62687ecea6ee13 /README.md
downloadsamloader-6273f3634b72c0df21c2ece52b750b8834b7fed2.tar
samloader-6273f3634b72c0df21c2ece52b750b8834b7fed2.tar.gz
samloader-6273f3634b72c0df21c2ece52b750b8834b7fed2.tar.bz2
samloader-6273f3634b72c0df21c2ece52b750b8834b7fed2.tar.lz
samloader-6273f3634b72c0df21c2ece52b750b8834b7fed2.tar.xz
samloader-6273f3634b72c0df21c2ece52b750b8834b7fed2.tar.zst
samloader-6273f3634b72c0df21c2ece52b750b8834b7fed2.zip
Diffstat (limited to 'README.md')
-rw-r--r--README.md20
1 files changed, 20 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..e048203
--- /dev/null
+++ b/README.md
@@ -0,0 +1,20 @@
+# samloader
+Download firmware for Samsung devices (without any extra Windows drivers).
+## Usage
+`checkupdate [model] [region]`: Check the latest firmware version
+`download [version] [model] [region] [outfile]`: Download the specified firmware version for a given phone and region
+`decrypt2 [version] [model] [region] [infile] [outfile]`: Decrypt enc2 encrypted firmwares
+`decrypt4 [version] [model] [region] [infile] [outfile]`: Decrypt enc4 encrypted firmwares (requires network connection)
+### Example
+```
+$ samloader checkupdate GT-I8190N BTU
+I8190NXXAMJ2/I8190NBTUAMJ1/I8190NXXAMJ2/I8190NXXAMJ2
+$ samloader download I8190NXXAMJ2/I8190NBTUAMJ1/I8190NXXAMJ2/I8190NXXAMJ2 GT-I8190N BTU GT-I8190N_BTU_1_20131118100230_9ae3yzkqmu_fac.zip.enc2
+Downloading file /neofus/9/GT-I8190N_BTU_1_20131118100230_9ae3yzkqmu_fac.zip.enc2 ...
+[################################] 10570/10570 - 00:02:02
+Done!
+$ samloader decrypt2 I8190NXXAMJ2/I8190NBTUAMJ1/I8190NXXAMJ2/I8190NXXAMJ2 GT-I8190N BTU GT-I8190N_BTU_1_20131118100230_9ae3yzkqmu_fac.zip.enc2 GT-I8190N_BTU_1_20131118100230_9ae3yzkqmu_fac.zip
+Decrypting with key f3f48b1cb4f8e84fc33f4ef270bf7578...
+[################################] 169115/169115 - 00:00:08
+Done!
+```