mirror of
https://github.com/clearlinux/clr-installer.git
synced 2026-09-02 11:41:44 +00:00
Add the following image descriptors: kvm, legacy-kvm, live-docker, live, provision, service-os. Signed-off-by: Leandro Dorileo <leandro.maciel.dorileo@intel.com>
47 lines
776 B
YAML
47 lines
776 B
YAML
#clear-linux-config
|
|
|
|
# switch between aliases if you want to install to an actuall block device
|
|
# i.e /dev/sda
|
|
block-devices: [
|
|
{name: "bdevice", file: "live.img"}
|
|
]
|
|
|
|
targetMedia:
|
|
- name: ${bdevice}
|
|
size: "5.08G"
|
|
type: disk
|
|
children:
|
|
- name: ${bdevice}1
|
|
fstype: vfat
|
|
mountpoint: /boot
|
|
size: "64M"
|
|
type: part
|
|
- name: ${bdevice}2
|
|
fstype: ext4
|
|
mountpoint: /
|
|
size: "5G"
|
|
type: part
|
|
|
|
bundles: [
|
|
bootloader,
|
|
editors,
|
|
network-basic,
|
|
openssh-server,
|
|
os-core,
|
|
os-core-update,
|
|
sysadmin-basic,
|
|
]
|
|
|
|
autoUpdate: false
|
|
postArchive: false
|
|
postReboot: false
|
|
telemetry: false
|
|
|
|
keyboard: us
|
|
language: en_US.UTF-8
|
|
kernel: kernel-native
|
|
|
|
post-install: [
|
|
{cmd: "scripts/live-image-post-update-version.py ${chrootDir}"}
|
|
]
|