Skip to content

Build a custom image

Andrea Del Signore edited this page Sep 16, 2025 · 9 revisions

How-to create a custom image

1. Setup mod plugin builder

T.B.D

2. Setup mod-custom-image builder

Clone this repos:

git clone git@github.com:sejerpz/alabs-mod-custom-images.git

Update all the submodules:

git submodule update --init --recursive

3. Compile

MOD Dwarf controller firmware

cd mod-dwarf-controller

make moddwarf

Mod UI tools C++ library

T.B.D.

4. Build a custom image

Download the base image

From the MOD site download the Open Image your custom image will be based on:

MOD Open Images

E.g. (see the above link for all available custom images)

wget https://download.mod.audio/releases/open/moddwarf-v1.13.5.3315.tar

The create-image script

Use the create script to build your custom image ready for installing on the MOD Dwarf:

./create-image moddwarf-v1.13.5.3315.tar mycustom1

where:

  • moddwarf-v1.13.5.3315.tar: is the base image you downloaded from the MOD site
  • mycustom1: is the name of you custom build, I usually use alabs+Version e.g. alabs1

Clone this wiki locally