[util-yaml] use variable dist_name for efiBootloaderId

This commit is contained in:
Philip Müller 2021-08-14 22:50:05 +00:00
parent 6502ac4753
commit d85b80b766

View file

@ -58,7 +58,7 @@ write_bootloader_conf(){
echo 'grubCfg: "/boot/grub/grub.cfg"' >> "$conf" echo 'grubCfg: "/boot/grub/grub.cfg"' >> "$conf"
echo 'grubProbe: "grub-probe"' >> "$conf" echo 'grubProbe: "grub-probe"' >> "$conf"
echo 'efiBootMgr: "efibootmgr"' >> "$conf" echo 'efiBootMgr: "efibootmgr"' >> "$conf"
echo 'efiBootloaderId: "manjaro"' >> "$conf" echo "efiBootloaderId: \"${dist_name}\"" >> "$conf"
echo 'installEFIFallback: true' >> "$conf" echo 'installEFIFallback: true' >> "$conf"
} }