Marko Korhonen
fe05722373
Also switched to linux-ck because why not Signed-off-by: Marko Korhonen <marko.korhonen@reekynet.com>
12 lines
506 B
Bash
Executable file
12 lines
506 B
Bash
Executable file
#!/bin/bash
|
|
# vim:ft=sh
|
|
|
|
sudo efibootmgr \
|
|
--disk /dev/sda \
|
|
--part 1 \
|
|
--create \
|
|
--quiet \
|
|
--remove-dups \
|
|
--label "Arch Linux LTS" \
|
|
--loader /vmlinuz-linux-lts \
|
|
--unicode 'cryptdevice=UUID=19fa8fab-c5fe-454a-9a17-b7185ce975ea:cryptroot:allow-discards root=/dev/mapper/cryptroot rootflags=subvol=root resume=/dev/mapper/cryptroot resume_offset=7345408 rw quiet loglevel=0 vga=current processor.max_cstate=5 rcu_nocbs=0-11 initrd=/amd-ucode.img initrd=/initramfs-linux-lts.img amdgpu.noretry=0'
|