ns-usbloader/README.md

79 lines
2.9 KiB
Markdown
Raw Normal View History

2019-02-10 04:59:54 +03:00
# NS-USBloader
2019-02-15 05:44:39 +03:00
NS-USBloader is a PC-side TinFoil/GoldLeaf NSP USB uploader. Replacement for default usb_install_pc.py and GoldTree.
2019-02-12 00:56:42 +03:00
2019-02-10 04:59:54 +03:00
With GUI and cookies.
2019-02-12 00:56:42 +03:00
2019-02-11 18:44:12 +03:00
Read more: https://developersu.blogspot.com/2019/02/ns-usbloader-en.html
2019-02-10 04:59:54 +03:00
2019-02-15 05:44:39 +03:00
Here is the version of 'not perfect but anyway' [tinfoil I use](https://cloud.mail.ru/public/DwbX/H8d2p3aYR).
Ok, I'm almost sure that this version has bugs. I don't remember where I downloaded it. But it works for me somehow..
Let's rephrase, if you have working version of TinFoil DO NOT use this one.
2019-02-12 00:56:42 +03:00
2019-02-10 04:59:54 +03:00
## License
Source code spreads under the GNU General Public License v.3. You can find it in LICENSE file.
2019-02-10 13:07:40 +03:00
## Requirements
JRE 8 or higher. See below.
2019-02-10 13:07:40 +03:00
2019-02-10 04:59:54 +03:00
## Used libraries
2019-02-12 00:56:42 +03:00
* [OpenJFX](https://wiki.openjdk.java.net/display/OpenJFX/Main)
* [usb4java](https://mvnrepository.com/artifact/org.usb4java/usb4java)
* Few icons taken from: [materialdesignicons](http://materialdesignicons.com/)
2019-02-10 04:59:54 +03:00
2019-02-10 17:40:29 +03:00
## Usage
### Linux:
Install JRE/JDK 8 or higher (openJDK is good. Oracle's one is also good). JavaFX not needed, if you're interested (it's embedded).
2019-02-10 05:01:20 +03:00
2019-02-10 17:40:29 +03:00
`root # java -jar /path/to/NS-USBloader.jar`
2019-02-10 05:01:20 +03:00
2019-02-12 00:56:42 +03:00
### macOS
See 'Linux' section.
2019-02-18 03:06:49 +03:00
Set 'Security & Privacy' settings if needed.
2019-02-12 00:56:42 +03:00
### Windows:
* Download Zadig: https://zadig.akeo.ie/
* Open tinfoil. Set 'Title Managment' -> 'Usb install NSP'
* Connect NS to pc
* Open Zadig, select NS in dropdown, select 'libusbK (v3.0.7.0)' (version may vary), click 'Install WCID Driver'
* Check that in device list of you system you have 'libusbK USB Devices' folder and your NS inside of it
* Download and install Java JRE (8+)
* Get this application (JAR file) double-click on on it (alternatively open 'cmd', go to place where jar located and execute via 'java -jar thisAppName.jar')
* Remember to have fun!
2019-02-10 17:40:29 +03:00
## Tips&tricks
### Add user to udev rules to use NS non-root (Linux):
2019-02-10 17:40:29 +03:00
`root # vim /etc/udev/rules.d/99-NS.rules`
2019-02-11 05:16:07 +03:00
2019-02-10 17:40:29 +03:00
`SUBSYSTEM=="usb", ATTRS{idVendor}=="057e", ATTRS{idProduct}=="3000", GROUP="plugdev"`
2019-02-11 05:16:07 +03:00
2019-02-10 17:40:29 +03:00
`root # udevadm control --reload-rules && udevadm trigger`
2019-02-10 04:59:54 +03:00
## Known bugs
* Unable to interrupt transmission when libusb awaiting for read event (when user sent NSP list but didn't selected anything on NS).
## NOTES
Table 'Status' = 'Uploaded' does not means that file installed. It means that it has been sent to NS without any issues! That's what this app about.
Handling successful/failed installation is a purpose of the other side application (TinFoil/GoldLeaf). (And they don't provide any feedback interfaces so I can't detect success/failure.)
2019-02-10 04:59:54 +03:00
## TODO:
2019-02-18 03:10:11 +03:00
- [x] macOS QA v0.1
- [ ] macOS QA v0.2 (partly)
- [x] Windows support
2019-02-18 03:06:49 +03:00
- [ ] code refactoring (almost. todo: printLog() )
- [x] GoldLeaf support
2019-02-15 05:44:39 +03:00
- [ ] XCI support
2019-02-18 03:06:49 +03:00
- [ ] File order sort (non-critical)
## Thanks
Appreciate assistance and support of both Vitaliy and Konstantin. Without you all this magic would not have happened.
[Konstanin Kelemen](https://github.com/konstantin-kelemen)
[Vitaliy Natarov](https://github.com/SebastianUA)