-
Notifications
You must be signed in to change notification settings - Fork 1
/
refind.spec
260 lines (237 loc) · 11.2 KB
/
refind.spec
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
Summary: EFI boot manager software
Name: refind
Version: 0.14.2
Release: 1%{?dist}
Summary: EFI boot manager software
License: GPLv3
URL: http://www.rodsbooks.com/refind/
Group: System Environment/Base
Source: refind-src-%version.tar.gz
Requires: efibootmgr gawk gdisk mokutil
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
%define efiarch unknown
%ifarch i386
%define efiarch ia32
%endif
%ifarch i486
%define efiarch ia32
%endif
%ifarch i586
%define efiarch ia32
%endif
%ifarch i686
%define efiarch ia32
%endif
%ifarch x86_64
%define efiarch x64
%endif
# Directory in which refind.key and refind.crt files are found for
# signing of binaries. If absent, binaries are copied unsigned.
%define keydir /mnt/refind
%description
A graphical boot manager for EFI- and UEFI-based computers, such as all
Intel-based Macs and recent (most 2011 and later) PCs. rEFInd presents a
boot menu showing all the EFI boot loaders on the EFI-accessible
partitions, and optionally BIOS-bootable partitions on Macs and BIOS boot
entries on UEFI PCs with CSMs. EFI-compatible OSes, including Linux,
provide boot loaders that rEFInd can detect and launch. rEFInd can launch
Linux EFI boot loaders such as ELILO, GRUB Legacy, GRUB 2, and 3.3.0 and
later kernels with EFI stub support. EFI filesystem drivers for ext2/3/4fs,
ReiserFS, Btrfs, NTFS, HFS+, and ISO-9660 enable rEFInd to read boot
loaders from these filesystems, too. rEFInd's ability to detect boot
loaders at runtime makes it very easy to use, particularly when paired with
Linux kernels that provide EFI stub support.
%prep
%setup -q
%build
make
make fs
%install
rm -rf $RPM_BUILD_ROOT
mkdir -p $RPM_BUILD_ROOT/usr/share/refind-%{version}/refind/
# Copy the rEFInd binaries (rEFInd proper and drivers) to /usr/share/refind-%{version},
# including signing the binaries if sbsign is installed and a %{keydir}/refind.key file
# is available
SBSign=`which sbsign 2> /dev/null`
if [ -f %{keydir}/refind.key ] && [ -x $SBSign ] ; then
$SBSign --key %{keydir}/refind.key --cert %{keydir}/refind.crt --output $RPM_BUILD_ROOT/usr/share/refind-%{version}/refind/refind_%{efiarch}.efi refind/refind_%{efiarch}.efi
mkdir -p $RPM_BUILD_ROOT/usr/share/refind-%{version}/refind/drivers_%{efiarch}
for File in `ls drivers_%{efiarch}/*_x64.efi` ; do
$SBSign --key %{keydir}/refind.key --cert %{keydir}/refind.crt --output $RPM_BUILD_ROOT/usr/share/refind-%{version}/refind/$File $File
done
mkdir -p $RPM_BUILD_ROOT/usr/share/refind-%{version}/refind/tools_%{efiarch}
$SBSign --key %{keydir}/refind.key --cert %{keydir}/refind.crt --output $RPM_BUILD_ROOT/usr/share/refind-%{version}/refind/tools_%{efiarch}/gptsync_%{efiarch}.efi gptsync/gptsync_%{efiarch}.efi
else
install -Dp -m0644 refind/refind*.efi $RPM_BUILD_ROOT/usr/share/refind-%{version}/refind/
mkdir -p $RPM_BUILD_ROOT/usr/share/refind-%{version}/refind/drivers_%{efiarch}
cp -a drivers_%{efiarch}/* $RPM_BUILD_ROOT/usr/share/refind-%{version}/refind/drivers_%{efiarch}/
mkdir -p $RPM_BUILD_ROOT/usr/share/refind-%{version}/refind/tools_%{efiarch}
install -Dp -m0644 gptsync/gptsync_%{efiarch}.efi $RPM_BUILD_ROOT/usr/share/refind-%{version}/refind/tools_%{efiarch}/gptsync_%{efiarch}.efi
fi
# Copy configuration and support files to /usr/share/refind-%{version}
install -Dp -m0644 refind.conf-sample $RPM_BUILD_ROOT/usr/share/refind-%{version}/refind/
cp -a icons $RPM_BUILD_ROOT/usr/share/refind-%{version}/refind/
rm -rf $RPM_BUILD_ROOT/usr/share/refind-%{version}/refind/icons/svg
install -Dp -m0755 refind-install $RPM_BUILD_ROOT/usr/share/refind-%{version}/
# Copy documentation to /usr/share/doc/refind-%{version}
mkdir -p $RPM_BUILD_ROOT/usr/share/doc/refind-%{version}
cp -a docs/Styles $RPM_BUILD_ROOT/usr/share/doc/refind-%{version}/
cp -a docs/refind $RPM_BUILD_ROOT/usr/share/doc/refind-%{version}/
install -Dp -m0644 NEWS.txt COPYING.txt LICENSE.txt README.txt CREDITS.txt $RPM_BUILD_ROOT/usr/share/doc/refind-%{version}
# Copy man pages to /usr/share/man/man8
mkdir -p $RPM_BUILD_ROOT/usr/share/man/man8
install -Dp -m0644 docs/man/mvrefind.8 $RPM_BUILD_ROOT/usr/share/man/man8
install -Dp -m0644 docs/man/mkrlconf.8 $RPM_BUILD_ROOT/usr/share/man/man8
install -Dp -m0644 docs/man/refind-install.8 $RPM_BUILD_ROOT/usr/share/man/man8
install -Dp -m0644 docs/man/refind-mkdefault.8 $RPM_BUILD_ROOT/usr/share/man/man8
install -Dp -m0644 docs/man/refind-sb-healthcheck.8 $RPM_BUILD_ROOT/usr/share/man/man8
# Copy keys to /etc/refind.d/keys
mkdir -p $RPM_BUILD_ROOT/etc/refind.d/keys
install -Dp -m0644 keys/* $RPM_BUILD_ROOT/etc/refind.d/keys
# Copy scripts to /usr/sbin
mkdir -p $RPM_BUILD_ROOT/usr/sbin
install -Dp -m0755 mkrlconf $RPM_BUILD_ROOT/usr/sbin/
install -Dp -m0755 mvrefind $RPM_BUILD_ROOT/usr/sbin/
install -Dp -m0755 refind-mkdefault $RPM_BUILD_ROOT/usr/sbin/
install -Dp -m0755 refind-sb-healthcheck $RPM_BUILD_ROOT/usr/sbin/
ln -sr $RPM_BUILD_ROOT/usr/share/refind-%{version}/refind-install $RPM_BUILD_ROOT/usr/sbin
# Copy banners and fonts to /usr/share/refind-%{version}
cp -a banners $RPM_BUILD_ROOT/usr/share/refind-%{version}/
cp -a fonts $RPM_BUILD_ROOT/usr/share/refind-%{version}/
%clean
#rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root -)
%doc /usr/share/doc/refind-%{version}
%doc /usr/share/man/man8
/usr/sbin/mkrlconf
/usr/sbin/mvrefind
/usr/sbin/refind-install
/usr/sbin/refind-mkdefault
/usr/sbin/refind-sb-healthcheck
/usr/share/refind-%{version}
/etc/refind.d/
%post
PATH=$PATH:/usr/local/bin
BootCurrent=$(efibootmgr | grep BootCurrent | cut -d " " -f 2)
# BootShimFile will hold the Shim/PreLoader filename *IF* it was used for
# the current boot; it will be null otherwise
BootShimFile=$(efibootmgr -v | grep Boot$BootCurrent | cut -f 2- -d '\' | cut -f 1 -d ')' | grep -i 'shim\|preloader' || true)
cd /usr/share/refind-%{version}
if [[ -f /sys/firmware/efi/efivars/SecureBoot-8be4df61-93ca-11d2-aa0d-00e098032b8c ]] ; then
IsSecureBoot=$(od -An -t u1 /sys/firmware/efi/efivars/SecureBoot-8be4df61-93ca-11d2-aa0d-00e098032b8c | awk '{print substr($0,length,1)}')
elif [[ -f /sys/firmware/efi/vars/SecureBoot-8be4df61-93ca-11d2-aa0d-00e098032b8c/data ]] ; then
IsSecureBoot=$(od -An -t u1 /sys/firmware/efi/vars/SecureBoot-8be4df61-93ca-11d2-aa0d-00e098032b8c/data | tr -d '[:space:]')
fi
# Note: Two find operations for ShimFile favors shim over PreLoader -- if both are
# present, the script uses shim rather than PreLoader.
ShimFile=`find /boot -name shim\.efi -o -name shimx64\.efi -o -name PreLoader\.efi 2> /dev/null | head -n 1`
if [[ ! -n $ShimFile ]] ; then
ShimFile=`find /boot -name PreLoader\.efi 2> /dev/null | head -n 1`
fi
SBSign=`which sbsign 2> /dev/null`
OpenSSL=`which openssl 2> /dev/null`
# Run the rEFInd installation script. Do so with the --shim option if
# Secure Boot mode is suspected, if a shim program can be found, and if
# Shim was used for the current boot; or without it if not. If a shim
# installation is attempted and the sbsign and openssl programs can be
# found, do the install using a local signing key. Note that this option
# is undesirable for a distribution, since it would then require the user
# to enroll an extra MOK. I'm including it here because I'm NOT a
# distribution maintainer, and I want to encourage users to use their own
# local keys.
if [[ $IsSecureBoot == "1" && -n $ShimFile && -n "$BootShimFile" ]] ; then
if [[ -n $SBSign && -n $OpenSSL ]] ; then
./refind-install --shim $ShimFile --localkeys --yes
else
./refind-install --shim $ShimFile --yes
fi
else
if [[ -n $SBSign && -n $OpenSSL ]] ; then
./refind-install --localkeys --yes
else
./refind-install --yes
fi
fi
# CAUTION: Don't create a %preun or a %postun script that deletes the files
# installed by refind-install, since that script will run after an update,
# thus wiping out the just-updated files.
%changelog
* Sat Apr 6 2024 R Smith <[email protected]> - 0.14.2
- Updated spec file for 0.14.2
* Sun Mar 24 2024 R Smith <[email protected]> - 0.14.1
- Updated spec file for 0.14.1
* Mon Mar 6 2023 R Smith <[email protected]> - 0.14.0.2
- Updated spec file for 0.14.0.2
* Sat Mar 4 2023 R Smith <[email protected]> - 0.14.0
- Updated spec file for 0.14.0
* Sun Apr 10 2022 R Smith <[email protected]> - 0.13.3
- Updated spec file for 0.13.3
* Sat Mar 13 2021 R Smith <[email protected]> - 0.13.2
- Updated spec file for 0.13.2
* Wed Feb 24 2021 R Smith <[email protected]> - 0.13.1
- Updated spec file for 0.13.1
* Mon Feb 15 2021 R Smith <[email protected]> - 0.13.0
- Updated spec file for 0.13.0
* Fri Mar 13 2020 R Smith <[email protected]> - 0.12.0
- Updated spec file for 0.12.0
* Wed Feb 12 2020 R Smith <[email protected]> - 0.11.5
- Updated spec file for 0.11.5
* Mon Nov 12 2018 R Smith <[email protected]> - 0.11.4
- Updated spec file for 0.11.4
* Sun Jul 22 2018 R Smith <[email protected]> - 0.11.3
- Updated spec file for 0.11.3
* Sun Oct 22 2017 R Smith <[email protected]> - 0.11.2
- Updated spec file for 0.11.2
* Mon Oct 9 2017 R Smith <[email protected]> - 0.11.1
- Updated spec file for 0.11.1
* Sun Aug 13 2017 R Smith <[email protected]> - 0.11.0
- Updated spec file for 0.11.0
* Sun Jul 30 2017 R Smith <[email protected]> - 0.10.9
- Updated spec file for 0.10.9
* Sun May 21 2017 R Smith <[email protected]> - 0.10.8
- Updated spec file for 0.10.8
* Mon Apr 17 2017 R Smith <[email protected]> - 0.10.7
- Updated spec file for 0.10.7
* Sun Apr 16 2017 R Smith <[email protected]> - 0.10.6
- Updated spec file for 0.10.6
* Sat Mar 4 2017 R Smith <[email protected]> - 0.10.5
- Updated spec file for 0.10.5
* Sun Oct 9 2016 R Smith <[email protected]> - 0.10.4
- Updated spec file for 0.10.4
* Sun Apr 24 2016 R Smith <[email protected]> - 0.10.3
- Updated spec file for 0.10.3
* Tue Jan 26 2016 R Smith <[email protected]> - 0.10.2
- Updated spec file for 0.10.2
* Sat Dec 12 2015 R Smith <[email protected]> - 0.10.1
- Updated spec file for 0.10.1
* Sun Nov 8 2015 R Smith <[email protected]> - 0.10.0
- Updated spec file for 0.10.0
* Sat Sep 19 2015 R Smith <[email protected]> - 0.9.2
- Updated spec file for 0.9.2
* Sun Sep 13 2015 R Smith <[email protected]> - 0.9.1
- Updated spec file for 0.9.1
* Sun Jul 26 2015 R Smith <[email protected]> - 0.9.0
- Updated spec file for 0.9.0
* Sun Mar 1 2015 R Smith <[email protected]> - 0.8.7
- Updated spec file for 0.8.7
* Sun Feb 8 2015 R Smith <[email protected]> - 0.8.6
- Updated spec file for 0.8.6
* Sun Feb 1 2015 R Smith <[email protected]> - 0.8.5
- Updated spec file for 0.8.5
* Mon Dec 8 2014 R Smith <[email protected]> - 0.8.4
- Updated spec file for 0.8.4
* Sun Jul 6 2014 R Smith <[email protected]> - 0.8.3
- Updated spec file for 0.8.3
* Sun Jun 8 2014 R Smith <[email protected]> - 0.8.2
- Updated spec file for 0.8.2
* Thu May 15 2014 R Smith <[email protected]> - 0.8.1
- Updated spec file for 0.8.1
* Sun May 4 2014 R Smith <[email protected]> - 0.8.0
- Updated spec file for 0.8.0
* Sun Apr 20 2014 R Smith <[email protected]> - 0.7.9
- Updated spec file for 0.7.9
* Sun Mar 9 2014 R Smith <[email protected]> - 0.7.8
- Updated spec file for 0.7.8
* Fri Jan 3 2014 R Smith <[email protected]> - 0.7.7
- Created spec file for 0.7.7 release