1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- Summary: EFI Boot Manager
- Name: efibootmgr
- Version: 0.12
- Release: 3%{?_dist_release}
- Group: System Environment/Base
- License: GPLv2+
- URL: http://github.com/rhinstaller/%{name}/
- BuildRequires: efivar-libs >= 0.19 , efivar-devel >= 0.19
- BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXXXX)
- # EFI/UEFI don't exist on PPC
- ExclusiveArch: %{ix86} x86_64 aarch64
- Source0: https://github.com/rhinstaller/%{name}/releases/download/%{name}-%{version}/%{name}-%{version}.tar.bz2
- Vendor: Project Vine
- Distribution: Vine Linux
- Packager: tomop
- %description
- %{name} displays and allows the user to edit the Intel Extensible
- Firmware Interface (EFI) Boot Manager variables. Additional
- information about EFI can be found at
- http://developer.intel.com/technology/efi/efi.htm and http://uefi.org/.
- %prep
- %setup -q
- %build
- make %{?_smp_mflags} EXTRA_CFLAGS='%{optflags}'
- %install
- rm -rf %{buildroot}
- mkdir -p %{buildroot}%{_sbindir} %{buildroot}%{_mandir}/man8
- install -p --mode 755 src/%{name}/%{name} %{buildroot}%{_sbindir}
- gzip -9 -c src/man/man8/%{name}.8 > src/man/man8/%{name}.8.gz
- touch -r src/man/man8/%{name}.8 src/man/man8/%{name}.8.gz
- install -p --mode 644 src/man/man8/%{name}.8.gz %{buildroot}%{_mandir}/man8
- %clean
- rm -rf %{buildroot}
- %files
- %defattr(-,root,root,-)
- %{_sbindir}/%{name}
- %{_mandir}/man8/%{name}.8.gz
- %doc README INSTALL COPYING
-
- %changelog
- * Tue Dec 15 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 0.12-3
- - initial build for Vine Linux.
- * Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.12-2
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
- * Thu May 28 2015 Peter Jones <pjones@redhat.com> - 0.12-1
- - Update to 0.12
- - use libefiboot and libefivar to make device paths and load options
- - don't depend on -lz or -lpci any more
- * Tue Oct 21 2014 Peter Jones <pjones@redhat.com> - 0.11.0-1
- - Fix "-n" and friends not being assigned/checked right sometimes from 0.10.0-1
- - Generate more archives to avoid people using github's, because they're just
- bad.
- * Mon Oct 20 2014 Peter Jones <pjones@redhat.com> - 0.10.0-1
- - Make -o parameter validation work better and be more informative
- - Better exit values
- - Fix a segfault with appending ascii arguments.
- * Tue Sep 09 2014 Peter Jones <pjones@redhat.com> - 0.8.0-1
- - Release 0.8.0
- * Mon Jan 13 2014 Peter Jones <pjones@redhat.com> - 0.6.1-1
- - Release 0.6.1
- * Mon Jan 13 2014 Jared Dominguez <Jared_Dominguez@dell.com>
- - new home https://github.com/vathpela/efibootmgr
- * Thu Jan 3 2008 Matt Domsch <Matt_Domsch@dell.com> 0.5.4-1
- - split efibootmgr into its own RPM for Fedora/RHEL.
- * Tue Aug 24 2004 Matt Domsch <Matt_Domsch@dell.com>
- - new home linux.dell.com
- * Fri May 18 2001 Matt Domsch <Matt_Domsch@dell.com>
- - See doc/ChangeLog
|