Skip to content

SRGBmods/zsaQMK

 
 

Repository files navigation

ZSA's fork of QMK Firmware

Current Version Build firmware Unit Tests GitHub contributors GitHub forks

This purpose of this fork is maintain a clean repo that only contains the keyboard code that we need, and as little else as possible. This is to keep it lightweight, since we only need a couple of keyboards. This is the repo that the EZ Configurator will pull from.

Documentation

The docs are powered by Docsify and hosted on GitHub. They are also viewable offline; see Previewing the Documentation for more details.

You can request changes by making a fork and opening a pull request, or by clicking the "Edit this page" link at the bottom of any page.

Supported Keyboards

Building

To set up the local build enviroment to create the firmware image manually, head to the Newbs guide from QMK. And instead of using just qmk setup, you will want to run this instead:

qmk setup zsa/qmk_firmware -b firmware22

Maintainers

QMK is developed and maintained by Jack Humbert of OLKB with contributions from the community, and of course, Hasu. The OLKB product firmwares are maintained by Jack Humbert, the Ergodox EZ by ZSA Technology Labs, the Clueboard by Zach White, and the Atreus by Phil Hagelberg.

Update Process

  1. Check out branch from ZSA's master branch:

    1. git remote add zsa https://github.com/zsa/qmk_firmware.git
    2. git fetch --all
    3. git checkout -B branchname zsa/master
    4. git push -u zsa branchname
  2. Check for core changes:

  3. git merge (hash|tag)

    • git rm -rf docs users layouts .vscode to remove the docs and user code that we don't want.
    • To remove all of the keyboard exept the ones we want:
      find ./keyboards -mindepth 1 -maxdepth 1 -type d -not -name ergodox_ez -not -name planck -not -name moonlander -not -name pytest -exec git rm -rf '{}' \;
      find ./keyboards/planck -mindepth 1 -maxdepth 1 -type d -not -name ez -not -name base -not -name keymaps -exec git rm -rf '{}' \;
    • To remove all of the keymaps from folder that we don't want:
      find ./keyboards/ -mindepth 3 -maxdepth 3 -type d -not -name default -not -name oryx -not -name webusb -not -name glow -not -name reactive -not -name shine -not -name keymaps -exec git rm -rf '{}' \;
    • Restore necessary files/folders:
      git checkout HEAD -- keyboards/handwired/pytest
      git checkout HEAD -- layouts
    • Resolve merge conflicts, and commit.
  4. Commit update

    • Include commit info in [changelog.md](changelog.md)
  5. Open Pull request, and include information about the commit

Strategy

To keep PRs small and easier to test, they should ideally be 1:1 with commits from QMK Firmware master. They should only group commits if/when it makes sense. Such as multiple commits for a specific feature (split RGB support, for instance)

About

QMK, forked for ZSA's Oryx Configurator (to safeguard stability)

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 80.4%
  • C++ 13.6%
  • Python 3.5%
  • Makefile 2.0%
  • Shell 0.3%
  • Nix 0.1%
  • Other 0.1%