summaryrefslogtreecommitdiff
path: root/bin
AgeCommit message (Collapse)Author
2024-02-05Makefile enhancements to optimize local workflows (#363)Thomas Huber
- Enhance the Makefile to enable firmware building exclusively for the left side. To modify the keymap, flashing only the left side's firmware suffices. This change facilitates the creation of firmware for the left side only, thereby expediting the build process. Usage: make left This update maintains existing functionality. Without specifying the left target, firmware for both halves will be generated. - Add separate make targets to clean firmware and docker image Add targets clean_firmware and clean_image independently while maintaing clean to run both - Ensure files modified by the build process are reset at the end The current build process dynamically generates the content of the version macro in config/version.dtsi to enable users to print out the precise version and commit the firmware was built on via a keybinding on the keymap. This change ensurs that the changes to this macro file are reset at the end of the build process to ensure it isn't shown as modified and added to keymap commit changes.
2023-12-27Prefer `tr` to ${char^^}, which does not work on older bash versions (#303)Jim Jowdy
* Prefer `tr` to ${char^^}, which does not work on older bash versions * Update CHANGELOG.md --------- Co-authored-by: ReFil <31960031+ReFil@users.noreply.github.com>
2023-12-07Make get_version use bash from $PATH (#287)David Whetstone
* Make get_version use bash from $PATH * Update CHANGELOG.md --------- Co-authored-by: ReFil <31960031+ReFil@users.noreply.github.com>
2023-11-16Version compiled FW with automatic macro (#267)ReFil
* Version compiled FW with hash Auto generates a macro to type out version info, local and github compilation now includes commit hash and timestamp in final uf2 files * Fix local builds makefile doesn't like the script returning the macro, directed to null for local builds as version.dtsi file accessible
2023-10-09Fix shell check warnings (#242)S0AndS0
* Fix SC2002 Shell Check warning * Fix SC2086 Shell Check warnings
2022-10-11Use makefile for a reusable docker imageJosh French
2022-09-26Update build.shReFil
Remove DTS file listing requirement that was deprecated in teh move to Z3
2022-05-20Add Dockerfile optimizationsRyan Winchester
@ThePrimeagen did these on-stream.
2022-05-20Add local build option with Docker and READMERyan Winchester