39 lines
665 B
Markdown
39 lines
665 B
Markdown
# Aimee OS Build Container Images
|
|
|
|
Prerequisites:
|
|
|
|
* `buildah`
|
|
|
|
|
|
## Gentoo Stage 3 Image
|
|
|
|
This image forms the base layer for Aimee OS build images.
|
|
|
|
Use the default stage3 tarball (`stage3-amd64-nomultilib-openrc`):
|
|
|
|
```sh
|
|
sh stage3-image.sh
|
|
```
|
|
|
|
Use a specific stage3 tarball:
|
|
|
|
```sh
|
|
sh stage3-image.sh amd64-systemd
|
|
```
|
|
|
|
|
|
## Crossdev Image
|
|
|
|
This image includes a cross-compilation toolchain, generated by _crossdev_.
|
|
|
|
```sh
|
|
sh crossdev-image.sh
|
|
```
|
|
|
|
Use the `--base` and `--target` command-line arguments to specify a base Stage
|
|
3 image (see above) and crossdev target, respectively, e.g.:
|
|
|
|
```sh
|
|
sh crossdev-image.sh --target armv7a-unknown-linux-gnueabihf
|
|
```
|