Skip to content

Commit 54a35c6

Browse files
davide125Conan-Kudo
authored andcommitted
Flesh out the readme
Signed-off-by: Davide Cavalca <[email protected]>
1 parent aeb5600 commit 54a35c6

1 file changed

Lines changed: 19 additions & 7 deletions

File tree

README.md

Lines changed: 19 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,24 @@
11
# Asahi Linux installer
22

3-
TODO: document
3+
The Asahi Linux installer provides a way to install [Asahi Linux](https://asahilinux.org) on Apple Silicon Macs. These systems have a bespoke [boot process](https://asahilinux.org/docs/platform/introduction/) that requires special considerations to support [alternative operating systems](https://asahilinux.org/docs/platform/open-os-interop/). The Asahi Installer takes care of preparing the system for the installation, downloading an image of the distribution to install and laying it on disk.
4+
5+
This repository provides the installer itself, supporting scripts, and the `asahi_firmware` Python module (which is also used by [asahi-scripts](https://github.com/AsahiLinux/asahi-scripts)).
6+
7+
## Building
8+
9+
Run `./build.sh`, which will produce an installer tree under `releases/`. By default this will build m1n1 with chainloading support. You can optionally set `M1N1_STAGE1` to a prebuilt m1n1 stage 1 binary, and `LOGO` to a logo in icns format. These are mostly useful for downstream distributions that would like to customize or brand the installer. By default, the build will fetch required dependencies from the Internet and cache them under `dl/`. If this isn't desired, place the required files there before running the build.
10+
11+
## Bootstrapping and branding
12+
13+
The installer is meant to be executed via a bootstrap script. We provide reference implementations for [local development](scripts/bootstrap.sh) and for alx.sh ([prod](scripts/bootstrap-prod.sh), [dev](scripts/bootstrap-dev.sh)). Following our [distribution guidelines](https://asahilinux.org/docs/alt/policy/), downstream distributions are encouraged to host their own modified copy of these, alongside their downstream build of the installer and their installation images. Downstreams will also want to customize the variable definitions at the beginning of the script, as those will be consumed by the installer and used for its branding. These include:
14+
15+
* `VERSION_FLAG`: a URI pointing to the `latest` file within the installer tree
16+
* `INSTALLER_BASE`: a URL pointing to your installer tree
17+
* `INSTALLER_DATA`: a URI pointing to your installer medatata file (see [asahi-installer-data](https://github.com/AsahiLinux/asahi-installer) for the one we're using for alx.sh)
18+
* `INSTALLER_DATA_ALT`: optionally, a URI pointing to an alternative location for your installer metadata file; this can be useful in locations where the primary location might be blocked by local network policies
19+
* `REPO_BASE`: a URI pointing to your OS images root (meaning, the parent folder of the relative paths referenced inside the metadata file)
20+
* `REPORT`: a URI pointing to the stats server for installation metrics collection
21+
* `REPORT_TAG`: a string used to identify your distribution for metrics collection
422

523
## License
624

@@ -9,9 +27,3 @@ Copyright The Asahi Linux Contributors
927
The Asahi Linux installer is distributed under the MIT license. See LICENSE for the license text.
1028

1129
This installer vendors [python-asn1](https://github.com/andrivet/python-asn1), which is distributed under the same license.
12-
13-
## Building
14-
15-
`./build.sh`
16-
17-
By default this will build m1n1 with chainloading support. You can optionally set `M1N1_STAGE1` to a prebuilt m1n1 stage 1 binary, and `LOGO` to a logo in icns format. These are mostly useful for downstream distributions that would like to customize or brand the installer.

0 commit comments

Comments
 (0)