mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-23 21:13:16 +00:00
1.3 KiB
1.3 KiB
How to Build by yourself:
Install required software
- Git - Download for Windows, on Linux/Mac install via package manager (
brew
,apt
, ...)
For development:
- Git
- Python3
- VSCode
Clone the Repository
You should clone with
$ git clone --recursive https://github.com/DarkFlippers/unleashed-firmware.git
Build on Linux/macOS
Check out documentation/fbt.md
for details on building and flashing firmware.
Compile everything for development
./fbt
Compile everything for release + get updater package to update from microSD card
./fbt COMPACT=1 DEBUG=0 updater_package
Check dist/
for build outputs.
Use flipper-z-{target}-full-{suffix}.dfu
to flash your device.
Build on Windows
Check out documentation/fbt.md
for details on building and flashing firmware.
Compile everything for development
.\fbt.cmd
Compile everything for release + get updater package to update from microSD card
.\fbt.cmd COMPACT=1 DEBUG=0 updater_package
Check dist/
for build outputs.
Use flipper-z-{target}-full-{suffix}.dfu
to flash your device.
If compilation fails, make sure all submodules are all initialized. Either clone with --recursive
or use git submodule update --init --recursive
.