ISO builder for TileOS
Find a file
Aleksey Samoilov dd94dde591 Merge branch 'second' into 't-rex'
Adapting "sway" dirrectory for SwayFx

See merge request tile-os/iso-builder!1
2023-11-15 05:36:24 +00:00
debs Initial bits for TileOS support 2023-03-23 10:58:17 +04:00
etc Adapt for swayfx 2023-11-14 21:14:49 +03:00
.gitignore Update gitignore 2023-02-25 20:48:36 +04:00
build.sh Deleted obsolete patches 2023-10-29 00:42:51 +03: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.