Files
clr-installer/scripts/installer.yaml
T
Mark D Horn f3e05fab9a Rename Installer Image
To keep a consistent naming convention, rename installer image.

[image-name].yaml -> clear-[VER]- [image-name].img.[compression ext]

Signed-off-by: Mark D Horn <mark.d.horn@intel.com>
2018-12-31 10:16:17 -08:00

49 lines
904 B
YAML

#clear-linux-config
# installer.yaml
#
# This YAML file generates the basic TUI installer image for
# Clear Linux OS
# switch between aliases if you want to install to an actual block device
# i.e /dev/sda
block-devices: [
{name: "installer", file: "installer.img"}
]
targetMedia:
- name: ${installer}
type: disk
children:
- name: ${installer}1
fstype: vfat
mountpoint: /boot
size: "150M"
type: part
- name: ${installer}2
fstype: swap
size: "256M"
type: part
- name: ${installer}3
fstype: ext4
mountpoint: /
size: "2.6G"
type: part
bundles: [os-core, os-core-update, clr-installer]
autoUpdate: false
postArchive: false
postReboot: false
telemetry: false
keyboard: us
language: en_US.UTF-8
kernel: kernel-native
kernel-arguments: {
add: ["nomodeset", "i915.modeset=0"]
}
post-install: [
{cmd: "scripts/installer-post.sh ${chrootDir}"}
]