ISO builder for TileOS
Find a file
2023-10-29 00:42:51 +03:00
debs Initial bits for TileOS support 2023-03-23 10:58:17 +04:00
etc Removed waydroid repo 2023-10-29 00:34:25 +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
debootstrap-backport-zstd-support.patch Fix build with Docker 2023-02-19 15:41:17 +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
live-build-fix-shim-remove.patch Fix build with Docker 2023-02-19 15:41:17 +04:00
README.md Fixed Docker run command 2023-10-29 00:07:05 +03: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://github.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.

Further Information

More information about the concepts behind live-build and the technical decisions made to arrive at this set of tools to build an .iso can be found on the wiki.