This is a customised Ardupilot firmware builder which allows to integrate custom patches, recall old builds etc. This is hosted on a private server but publicly accessible and the source code can be downloaded by anyone. Detailed instruction on how to build your custom firmware patcher based with this code are in the readme below. A live version of this app can be accessed here: https://ardupilot.equalmass.com

Nicole Portas d4553f5557 Changed mount преди 6 месеца
.github 7fa60f9b2d .github: add Tests workflow преди 5 месеца
ap_git fecf71962d ap_git: force-create temp branch while shallow cloning from local repo преди 4 месеца
build_manager bbd40dbcb1 build_manager: do not handle rate limit at module level преди 6 месеца
builder ff56faef80 changing strategy in order to make the updates possible преди 1 месец
examples d6b19db363 examples: update remotes.json to remove ap_build_artifacts_url field преди 1 месец
metadata_manager 14e6fd11cd metadata_manager: use manifest.json to get standard build urls and features.txt url преди 1 месец
overlay_manager 1c01761c31 refining... преди 1 месец
scripts 7a8e1de220 scripts: drop cron based version updation scripts преди 1 месец
tests a23e63a4a1 tests: test metadata manager features.txt and standard artifacts collection преди 1 месец
utils 096170efdf utils: remove ratelimiter.py преди 6 месеца
web ff56faef80 changing strategy in order to make the updates possible преди 1 месец
.flake8 ba9d691195 .flake8: add flake8 config преди 7 месеца
.gitignore 944367a32f gitignore: ignore anything with the name base преди 1 година
LICENSE 519e1f8813 Initial commit преди 6 години
README.md 9c9080182b updated readme преди 1 месец
Vagrantfile 28c381d75c Vagrant: add Vagrant vm definition and creation script преди 4 години
docker-compose.yml d4553f5557 Changed mount преди 1 месец
pytest.ini 57cde470e9 pytest.ini: set CBS_RATE_LIMITER_STORAGE_URI for tests преди 5 месеца

README.md

ArduPilot Custom Firmware Builder (EqualMass Edition)

🛠EqualMass Customization Layer (Added Feb 2026)

This repository has been customized to support a persistent, automated Patch Management System. These modifications allow for custom source code injection and regional data integration while maintaining a production-grade infrastructure on Debian 13.

📁 Modified & New Files

  • docker-compose.yml: Updated to include the overlay-manager sidecar service and shared volumes for persistent code injection.
  • builder/builder.py: Modified to detect custom source files in the /srv directory. The engine now automatically merges these overlays into the ArduPilot source tree before the Waf compiler begins the build.
  • web/templates/index.html: The main dashboard now features a stylized "Patch Manager" bridge button in the navigation bar to allow seamless switching between the builder and the sidecar.
  • overlay_manager/ (New Service):
    • main.py: A FastAPI-based engine designed to manage (Upload/Edit/Delete) custom source files within the Docker environment.
    • templates/index.html: A custom UI for managing patches, matching the ArduPilot ecosystem aesthetic.
    • static/logo.png: Localized branding assets for the sidecar interface.

🌐 Network & Routing Architecture

The system is unified behind an Nginx Reverse Proxy to provide a professional, single-domain experience:

  • Main Builder UI: https://ardupilot.equalmass.com/ (Proxied to port 11080).
  • Patch Manager: https://ardupilot.equalmass.com/patch-manager/ (Proxied to port 11081).
  • SSL Termination: Managed via Nginx for the equalmass.com domain.

ArduPilot Custom Firmware Builder (Original Documentation)

This is the web application for ArduPilot's custom firmware builder. It allows users to build custom ArduPilot firmware by selecting the features they want to include.

🛠️ Development

You can run the application using Docker and Docker Compose:

```bash docker-compose up --build