mirror of
https://github.com/clearlinux/clr-installer.git
synced 2026-09-03 04:01:33 +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>
49 lines
852 B
YAML
49 lines
852 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: "service-os.img"}
|
|
]
|
|
|
|
env:
|
|
DEBUG_KEY_PATH: https://download.clearlinux.org/secureboot/DefaultIASSigningPrivateKey.pem
|
|
|
|
targetMedia:
|
|
- name: ${bdevice}
|
|
size: "4.10G"
|
|
type: disk
|
|
children:
|
|
- name: ${bdevice}1
|
|
fstype: ext2
|
|
mountpoint: /mnt
|
|
size: "101M"
|
|
type: part
|
|
- name: ${bdevice}2
|
|
fstype: ext4
|
|
mountpoint: /
|
|
size: "4G"
|
|
type: part
|
|
|
|
bundles: [
|
|
openssh-server,
|
|
os-core,
|
|
os-core-update,
|
|
service-os,
|
|
software-defined-cockpit,
|
|
]
|
|
|
|
autoUpdate: false
|
|
postArchive: false
|
|
postReboot: false
|
|
telemetry: false
|
|
legacyBios: true
|
|
|
|
keyboard: us
|
|
language: en_US.UTF-8
|
|
kernel: none
|
|
|
|
post-install: [
|
|
{cmd: "scripts/service-os-post.sh ${chrootDir}"}
|
|
]
|