summaryrefslogtreecommitdiffstats
path: root/roles/bootstrap/templates/refind_proxmox.conf.j2
blob: e38c2239b6365d7d502e1f78e11fcdff15de3eaa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
timeout 5
textonly true
scan_all_linux_kernels false
dont_scan_files vmlinuz,vmlinuz-linux,initrd.img,initramfs-linux.img
hideui hints

menuentry "Proxmox VE" {
    volume "boot"
    loader \EFI\proxmox\vmlinuz
    initrd \EFI\proxmox\initrd.img
    options "root=PARTLABEL={{ partition_root.name }} rw rootwait console=tty1{% if bootstrap_mac %} {{ bootstrap_mac_boot_args }}{% endif %}"
}

menuentry "Proxmox VE (terminal)" {
    volume "boot"
    loader \EFI\proxmox\vmlinuz
    initrd \EFI\proxmox\initrd.img
    options "root=PARTLABEL={{ partition_root.name }} rw rootwait console=tty1 systemd.unit=multi-user.target{% if bootstrap_mac %} {{ bootstrap_mac_boot_args }}{% endif %}"
}