-
Notifications
You must be signed in to change notification settings - Fork 107
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Peter Jones <[email protected]>
- Loading branch information
Showing
2 changed files
with
15 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
TOPDIR = $(shell echo $$PWD) | ||
|
||
SUBDIRS := src docs | ||
VERSION := 0.18 | ||
VERSION := 0.19 | ||
|
||
all : $(SUBDIRS) efivar.spec | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,12 +3,12 @@ Version: @@VERSION@@ | |
Release: 1%{?dist} | ||
Summary: Tools to manage UEFI variables | ||
License: LGPLv2.1 | ||
URL: https://github.com/vathpela/efivar | ||
URL: https://github.com/rhinstaller/efivar | ||
Requires: %{name}-libs = %{version}-%{release} | ||
ExclusiveArch: %{ix86} x86_64 aarch64 | ||
|
||
BuildRequires: popt-devel git | ||
Source0: https://github.com/vathpela/efivar/releases/download/efivar-%{version}/efivar-%{version}.tar.bz2 | ||
Source0: https://github.com/rhinstaller/efivar/releases/download/efivar-%{version}/efivar-%{version}.tar.bz2 | ||
|
||
%description | ||
efivar provides a simple command line interface to the UEFI variable facility. | ||
|
@@ -34,6 +34,8 @@ git config user.name "Fedora Ninjas" | |
git add . | ||
git commit -a -q -m "%{version} baseline." | ||
git am %{patches} </dev/null | ||
git config --unset user.email | ||
git config --unset user.name | ||
|
||
%build | ||
make libdir=%{_libdir} bindir=%{_bindir} OPT_FLAGS="$RPM_OPT_FLAGS" | ||
|
@@ -66,6 +68,10 @@ rm -rf $RPM_BUILD_ROOT | |
%{_libdir}/*.so.* | ||
|
||
%changelog | ||
* Thu May 28 2015 Peter Jones <[email protected]> - @@VERSION@@-1 | ||
- Update to 0.19 | ||
- add API from efibootmgr so fwupdate and other tools can use it. | ||
|
||
* Wed Oct 15 2014 Peter Jones <[email protected]> - 0.15-1 | ||
- Update to 0.15 | ||
- Make 32-bit builds set variables' DataSize correctly. | ||
|
@@ -75,7 +81,12 @@ rm -rf $RPM_BUILD_ROOT | |
- add efi_id_guid_to_guid() and efi_guid_to_id_guid() | ||
|
||
* Tue Oct 07 2014 Peter Jones <[email protected]> - 0.13-1 | ||
- Update to 0.13 | ||
- Update to 0.13: | ||
- add efi_symbol_to_guid() | ||
- efi_name_to_guid() will now fall back on efi_symbol_to_guid() as a last | ||
resort | ||
- "efivar -L" to list all the guids we know about | ||
- better namespacing on libefivar.so (rename well_known_* -> efi_well_known_*) | ||
|
||
* Thu Sep 25 2014 Peter Jones <[email protected]> - 0.12-1 | ||
- Update to 0.12 | ||
|