mirror of
https://git.korhonen.cc/FunctionalHacker/dotfiles.git
synced 2024-11-04 18:00:20 +00:00
f507c23937
Signed-off-by: Marko Korhonen <marko.korhonen@reekynet.com>
15 lines
297 B
Bash
Executable File
15 lines
297 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# remove old entries
|
|
for bootentry in $(efibootmgr | head -n 3 | tail -n 1 | cut -d' ' -f2- | sed 's/,/\n/g'); do
|
|
sudo efibootmgr -qBb $bootentry
|
|
done
|
|
|
|
# add all entries back
|
|
for bootscript in *.efi; do
|
|
./$bootscript
|
|
done
|
|
|
|
# set bootorder
|
|
sudo efibootmgr --bootorder 0000,0001,0002
|