mirror of
https://github.com/clearlinux/clr-installer.git
synced 2026-09-02 11:41:44 +00:00
When using the --root option with systemctl, libsystemd for the systemd in the chroot will be resolved on the host. In cases where the systemd in the chroot is a different version from the systemd on the host, this will result in a library not found error. Need to chroot when eanbling clr-installer service to avoid this problem. Signed-off-by: George T Kramer <george.t.kramer@intel.com>
45 lines
956 B
YAML
45 lines
956 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: "installer", file: "dev-clear-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: "3.0G"
|
|
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: [clri.loglevel=4], remove: [console=ttyS0,115200n8]}
|
|
|
|
pre-install: [
|
|
{cmd: "scripts/developer-image-pre.sh"}
|
|
]
|
|
post-install: [
|
|
{cmd: "scripts/developer-image-post.sh ${chrootDir}"},
|
|
{cmd: "systemctl enable clr-installer", chroot: true}
|
|
]
|