unleashed-firmware
unleashed-firmware copied to clipboard
FBT parameters for "Version with extra apps"
Describe the enhancement you're suggesting.
Please add instructions on how to compile the "Version with extra apps" using fbt. Any help is really appreciated (i did not find any "parameter" for that kind of build, maybe i'm blind and discard this message).
Many thanks
Anything else?
No response
https://github.com/DarkFlippers/unleashed-firmware/blob/dev/.drone.yml#L39
Check out list of commands used to build "extra pack" package
- git clone https://github.com/xMasterX/all-the-plugins.git
- cp -R all-the-plugins/apps/* assets/resources/apps/
- rm -rf all-the-plugins
- export DIST_SUFFIX=YourVersion
- export FORCE_NO_DIRTY=yes
- rm -f build/f7-firmware-C/toolbox/version.*
- ./fbt COMPACT=1 DEBUG=0 updater_package
You will need this, other commands is not required
Thank you very much, gotta try now!
Thank you very much, gotta try now!
if you are building dev branch of firmware you need to replace first command with this
git clone --branch dev https://github.com/xMasterX/all-the-plugins.git
Yep! Gotta trying again...I was having problems with extra apps only..trying again in some minutes
Thank you very much, gotta try now!
if you are building dev branch of firmware you need to replace first command with this
git clone --branch dev https://github.com/xMasterX/all-the-plugins.git
Thanks,worked perfectly now!
This is now my current Windows script (if anyone wanna use it): Use it inside unleashed folder.
git pull git clone --branch dev https://github.com/xMasterX/all-the-plugins.git xcopy all-the-plugins\apps*.* assets\resources\apps\ /c/h/e/i/y rmdir /s all-the-plugins /Q set DIST_SUFFIX=yourdistname set FORCE_NO_DIRTY=yes del build\f7-firmware-C\toolbox\version.* /Q /F fbt.cmd COMPACT=1 DEBUG=0 updater_package