-
-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add cbfstool * Update dependancies * fix files part and version variable * fix typo * fix build step * Add git dep * Finished package (cherry picked from commit 6ed310e)
- Loading branch information
Showing
3 changed files
with
34 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
project pkg { | ||
rpm { | ||
spec = "cbfstool.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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
Name: cbfstool | ||
Version: 24.08 | ||
Release: 1%?dist | ||
Summary: Management utility for CBFS formatted ROM images | ||
URL: https://doc.coreboot.org/lib/fw_config.html#cbfs | ||
License: GPLv2 | ||
BuildRequires: gcc g++ gcc-gnat make cmake ncurses-devel iasl git | ||
Requires: glibc | ||
Packager: Owen Zimmerman <[email protected]> | ||
|
||
%description | ||
Management utility for CBFS formatted ROM images. | ||
|
||
%prep | ||
git clone https://review.coreboot.org/coreboot.git -b %version | ||
|
||
%build | ||
make -C coreboot/util/cbfstool | ||
|
||
%install | ||
install -Dm 777 coreboot/util/cbfstool/cbfstool %buildroot%_bindir/cbfstool | ||
|
||
%files | ||
/usr/bin/cbfstool | ||
|
||
%changelog | ||
* Sun Aug 25 2024 Owen Zimmerman <[email protected]> | ||
- Initial Package |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
rpm.version(gh("coreboot/coreboot")); |