Notifications
Clear all
How to compile latest firmware?
I am trying to compile the latest firmware for the Mini. When I clone the github repo, run
python utils/build.py --preset mini
it compiles okay, but it seems to be version 5.1.0 instead of 5.1.2 - how do I switch to 5.1.2?
Processing /home/<my username>/code/Prusa-Firmware-Buddy/build/mini_release_noboot/firmware.bin version: 5.1.0+5754 board: 0 printer: MINI sha256sum: ba3d70ebd612f98744cc6c56fba5a0b626572c9f10404250c33e5925f30d51a1 sign: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 Done
Napsal : 05/04/2024 9:31 am
RE:
I am trying to compile the latest firmware for the Mini. When I clone the github repo, run
python utils/build.py --preset miniit compiles okay, but it seems to be version 5.1.0 instead of 5.1.2 - how do I switch to 5.1.2? mapquest directions
Processing /home//code/Prusa-Firmware-Buddy/build/mini_release_noboot/firmware.bin version: 5.1.0+5754 board: 0 printer: MINI sha256sum: ba3d70ebd612f98744cc6c56fba5a0b626572c9f10404250c33e5925f30d51a1 sign: 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 Done
Navigate to your cloned repository directory:
shCopy codecd /home//code/Prusa-Firmware-Buddy
Fetch the latest tags from the remote repository:
shCopy codegit fetch --tags
Check out the tag corresponding to version 5.1.2:
shCopy codegit checkout tags/v5.1.2
Now, run the build command again:
shCopy codepython utils/build.py --preset mini
This post was modified před 6 months by lilysmith12
Napsal : 20/05/2024 10:29 am