Contributing
How to Contribute
Open Apollo is a community-driven project. We need help from Apollo owners to test on different models, capture device data from working systems, and contribute code improvements.
Tier 1: Test on Linux (easiest)
If you have an Apollo connected to a Linux machine, this is the most straightforward way to help.
What to do
Clone the repo and check dependencies (common to both connection types):
git clone https://github.com/rolotrealanis98/open-apollo.git cd open-apollo ./scripts/check-deps.shIf you are not sure which connection type your Apollo uses, see the Installation guide.
Install the driver for your connection type:
- Thunderbolt Apollo (x-series, Twin/Arrow Thunderbolt) — Apollo powered off when you start; power on when the installer prompts:
sudo bash ./scripts/install.sh - USB Apollo (Solo USB, Twin X USB) — Apollo plugged into a USB 3.0 port and powered on before running:
The USB installer writessudo bash ./scripts/install-usb.sh/tmp/open-apollo-usb-install-report.jsonand offers to upload it.
- Thunderbolt Apollo (x-series, Twin/Arrow Thunderbolt) — Apollo powered off when you start; power on when the installer prompts:
Generate the report to submit:
- Thunderbolt Apollo: from the repo root, run the device probe script:
The probe expects the Thunderboltsudo ./tools/contribute/device-probe.shua_apollokernel module and useslspci, so it does not work on USB Apollos. - USB Apollo: use
/tmp/open-apollo-usb-install-report.jsonfrom step 2. Do not rundevice-probe.sh.
- Thunderbolt Apollo: from the repo root, run the device probe script:
Test basic functionality and note what happens:
- Does
aplay -lshow your Apollo? - Does audio playback work?
- Does recording work?
- Do preamp controls respond?
- Does
Submit a device report with your probe/install report and test notes.
What we learn
Even a simple "driver loaded, audio plays" report on a model we haven't tested is enormously helpful. It lets us mark that model as verified and gives other users confidence.
Tier 2: Capture device data (advanced)
The most valuable contribution is capturing device configuration data from a working system (macOS). This data tells us exactly how each Apollo model configures its audio routing, which is essential for supporting models we don't have physical access to.
macOS capture
Requires temporarily disabling System Integrity Protection (SIP) to use DTrace. The capture script is read-only — it observes driver behavior without modifying anything.
See the full guide: Device Capture (macOS)
After capturing
See Submitting Your Data for how to review and submit your capture.
Tier 2b: Run the install matrix
The repository includes Docker-based install matrix tests that validate the driver builds and all configs deploy correctly across supported distros. Running these helps catch regressions:
bash tests/test-install-matrix.sh
This runs Dockerfiles in tests/docker/ for Ubuntu, Fedora, Arch, Debian, openSUSE, Mint, Pop!_OS, and Manjaro. Requires Docker installed locally.
Tier 3: Code contributions
We welcome pull requests for bug fixes, new features, and documentation improvements.
Getting started
- Fork the repository on GitHub
- Create a feature branch:
git checkout -b feat/your-feature-name - Make your changes
- Test your changes (build the driver, run the daemon)
- Commit using conventional commits:
git commit -m "feat: add support for Apollo Twin X preamp routing" - Push and open a pull request
Commit message format
We use conventional commit prefixes:
| Prefix | Use for |
|---|---|
feat: | New features |
fix: | Bug fixes |
docs: | Documentation changes |
refactor: | Code restructuring without behavior change |
test: | Adding or updating tests |
chore: | Build, CI, or tooling changes |
What we need most
- USB device testing — People with Apollo Twin USB or Twin X USB willing to test
install-usb.shand report results - Thunderbolt device testing — People with non-x4 Apollo models willing to test and report
- Routing table captures — DTrace or BAR0 captures from untested Thunderbolt models
- Mixer daemon improvements — Protocol edge cases, error handling
- Kernel patch — Submit the
snd-usb-audioGET_RANGE quirk for VID0x2B5Ato alsa-devel - Documentation — Corrections, clarifications, additional examples
Reporting issues
If something doesn't work, please open an issue with:
- Your Apollo model
- Linux distribution and kernel version (
uname -r) - Output of
dmesg | grep ua_apollo - What you expected vs. what happened
- Steps to reproduce
Code of conduct
Be respectful, constructive, and patient. This is a reverse-engineering project — things break, behavior is surprising, and progress is incremental. Every contribution, no matter how small, moves the project forward.