add bundle:systemd-boot
Some checks failed
kunsi/bundlewrap/pipeline/head There was a failure building this commit

This commit is contained in:
Franzi 2022-02-13 09:24:11 +01:00
parent 998a529d4c
commit e4c317f677
Signed by: kunsi
GPG key ID: 12E3D2136B818350
5 changed files with 88 additions and 0 deletions

View file

@ -6,6 +6,7 @@ nodes['kunsi-p14s'] = {
'lldp',
'lm-sensors',
#'nfs-client',
'systemd-boot',
'telegraf-battery-usage',
'zfs',
},
@ -122,6 +123,34 @@ nodes['kunsi-p14s'] = {
'xclip': {},
},
},
'systemd-boot': {
'default': 'arch-lts',
'entries': {
'arch-lts': {
'title': 'Arch Linux (LTS kernel)',
'linux': '/vmlinuz-linux-lts',
'initrd': [
'/amd-ucode.img',
'/initramfs-linux-lts.img',
],
'options': {
'zfs=zroot/system/root',
'rw',
},
},
'arch-lts-fallback': {
'title': 'Arch Linux (LTS kernel, no ucode, fallback initramfs)',
'linux': '/vmlinuz-linux-lts',
'initrd': [
'/initramfs-linux-lts-fallback.img',
],
'options': {
'zfs=zroot/system/root',
'rw',
},
},
},
},
'systemd-networkd': {
'enable-resolved': True,
},