Root configurator
A root tarball can be configured with user scripts by the root generator.
root_configurator — Built a root tarball
Description
Configures a tarball with user provided scripts.
Splitting the root tarball generation from the configuration allows for fast configuration adaptions.
The synopsis is root_configurator <root>.yaml <input>.tar <output>.tar
The internal steps are:
- Read in YAML configuration file
- If sysroot is configured add generic sysroot packages like g++
- Depending on the configuration build the image with kiwi or debootstrap
- If configuration is not skipped run config.sh script if present
- Copy image tar to output folder
Configuration
# You can define multiple configuration scripts that will run "in" the tarball
scripts:
- name: <name.sh>
env: <chroot|chfake>
- name: ...