forked from pine64/pine64_updater
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add small tutorial for compilation on Linux
- Loading branch information
1 parent
c226760
commit d2fcf6d
Showing
2 changed files
with
33 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,39 @@ | ||
# Pinecil Firmware Updater | ||
Application for updating Pine64's Pinecil soldering iron. | ||
|
||
# Supported platforms | ||
## Supported platforms | ||
|
||
- [X] Windows 7 - 10 (64-bit) | ||
- [X] MacOS | ||
- [ ] Linux | ||
- [X] Linux | ||
|
||
# Screenshots | ||
## How to compile (and run) | ||
|
||
![Screenshot 1](https://i.imgur.com/WYzyAUE.png) | ||
![Screenshot 2](https://i.imgur.com/BmVQINS.png) | ||
### Windows, MAC | ||
|
||
Download the binaries from the [releases page](https://github.com/pine64/pinecil-firmware-updater/releases) | ||
|
||
### Linux | ||
|
||
The following steps assume you have the Qt, dfu-util and libusb dependencies | ||
already installed. Depending on your actual Linux distribution these dependencies | ||
might have slightly different names, and can be installed through your favourite | ||
package manager. | ||
|
||
|
||
``` | ||
# Create make file using Qt | ||
qmake | ||
# Build | ||
make | ||
# Link dfu-util symbolically to this folder | ||
ln -s /usr/bin/dfu-util . | ||
# Run the tool | ||
sudo ./pinecil_firmware_updater | ||
``` | ||
|
||
## Screenshots | ||
|
||
![Screenshot 1 - Windows](https://i.imgur.com/WYzyAUE.png) | ||
![Screenshot 2 - Mac](https://i.imgur.com/BmVQINS.png) | ||
![Screenshot 3 - Linux](https://i.imgur.com/FOVMO4P.png) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters