ISO builder for TileOS
Find a file
2024-11-22 21:32:19 +00:00
debs Initial bits for TileOS support 2023-03-23 10:58:17 +04:00
etc Update to 1.2.1 2024-11-22 21:32:19 +00:00
.gitignore Update gitignore 2023-02-25 20:48:36 +04:00
build.sh Allow beta builds 2024-03-12 15:50:31 +04:00
increase_number_of_blocks.patch Fix error with creating efi.img 2023-02-19 10:17:26 +04:00
LICENSE Initial commit 2022-04-10 19:42:28 +04:00
README.md Update README 2023-11-12 17:25:04 +04:00

ISO Builder

This ISO builder is fork of the good work from the elementary crew. Many thanks to the devs there https://github.com/elementary/os

Building Locally

The following example uses Docker and assumes you have Docker correctly installed and set up:

Clone this project & cd into it:

git clone https://gitlab.com/tile-os/iso-builder && cd iso-builder

Configure the channel in the etc/terraform.conf (dev, stable). Configure desktop by export DESKTOP variable. May be a river or sway.

Run the build for Sway:

docker run --privileged -i -v /proc:/proc \
    -v ${PWD}:/working_dir \
    -w /working_dir \
    -e DESKTOP=sway \
    debian:latest \
    /bin/bash -s etc/terraform.conf < build.sh

When done, your image will be in the builds folder.