-
Notifications
You must be signed in to change notification settings - Fork 50
/
refind_install_no_pacman.sh
62 lines (51 loc) · 2.74 KB
/
refind_install_no_pacman.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#!/bin/bash
# An alternate, without pacman, rEFInd installation
# Please make sure that a password exists for the deck user before running
CURRENT_WD=$(pwd)
cd ~/Downloads
wget https://sourceforge.net/projects/refind/files/0.14.2/refind-bin-gnuefi-0.14.2.zip
unzip -a refind-bin-gnuefi-0.14.2.zip
sudo steamos-readonly disable
sudo mkdir -p /esp/efi/refind
yes | sudo cp ~/Downloads/refind-bin-0.14.2/refind/refind_x64.efi /esp/efi/refind/
yes | sudo cp -rf ~/Downloads/refind-bin-0.14.2/refind/drivers_x64/ /esp/efi/refind
yes | sudo cp -rf ~/Downloads/refind-bin-0.14.2/refind/tools_x64/ /esp/efi/refind
yes | sudo ./refind-bin-0.14.2/refind-install
yes | sudo cp -rf ~/Downloads/refind-bin-0.14.2/refind/icons/ /esp/efi/refind
yes | sudo cp -rf ~/Downloads/refind-bin-0.14.2/fonts/ /esp/efi/refind
yes | sudo cp $CURRENT_WD/refind.conf /esp/efi/refind/refind.conf
yes | sudo cp -rf $CURRENT_WD/themes/ /esp/efi/refind
yes | sudo cp -rf $CURRENT_WD/icons/ /esp/efi/refind
efibootmgr | tee ~/efibootlist.txt
WINDOWS_BOOTNUM="$(grep -A0 'Windows' ~/efibootlist.txt | grep -Eo '[0-9]{1,4}' | head -1)"
# Disable Windows EFI boot entry
sudo efibootmgr -b $WINDOWS_BOOTNUM -A
REFIND_BOOTNUM="$(grep -A0 'rEFInd Boot Manager' ~/efibootlist.txt | grep -Eo '[0-9]{1,4}' | head -1)"
# Delete rEFInd EFI boot entry from rEFInd-install... will be re-added later pointing to esp partition
sudo efibootmgr -b $REFIND_BOOTNUM -B
# Checking for duplicate rEFInd EFI boot entry, from previous script runs (or other sources)
REFIND_BOOTNUM_ALT="$(grep -A0 'rEFInd' ~/efibootlist.txt | grep -Eo '[0-9]{1,4}' | head -1)"
STEAMOS_BOOTNUM="$(grep -A0 'SteamOS' ~/efibootlist.txt | grep -Eo '[0-9]{1,4}' | head -1)"
# Deleting duplicate rEFInd boot entry, if one was found
re='^[0-9]+$'
if [[ $REFIND_BOOTNUM_ALT =~ $re ]]; then
sudo efibootmgr -b $REFIND_BOOTNUM_ALT -B
fi
if ! [[ $STEAMOS_BOOTNUM =~ $re ]]; then
# Recreate the missing SteamOS EFI entry (if missing)
sudo efibootmgr -c -d /dev/nvme0n1 -p 1 -L "SteamOS" -l \\EFI\\steamos\\steamcl.efi
fi
# Manually adding rEFInd EFI boot entry
sudo efibootmgr -c -d /dev/nvme0n1 -p 1 -L "rEFInd" -l \\EFI\\refind\\refind_x64.efi
# Granting executable permissions to EFI entry restore script
chmod +x $CURRENT_WD/restore_EFI_entries.sh
mkdir -p ~/.SteamDeck_rEFInd/GUI
cp $CURRENT_WD/restore_EFI_entries.sh ~/.SteamDeck_rEFInd/
# Adding Systemctl daemon for rEFInd to be next boot priority
# Credit goes to Reddit user lucidludic for the idea :)
yes | sudo cp $CURRENT_WD/bootnext-refind.service /etc/systemd/system/bootnext-refind.service
sudo systemctl enable --now bootnext-refind.service
# Clean up temporary files, created for code clarity
yes | rm ~/efibootlist.txt
sudo steamos-readonly enable
echo -e "\nrEFInd has now been installed from Sourceforge.\n"