Compare commits

..

2 commits

Author SHA1 Message Date
Enric Balletbo i Serra
9ff85bd452 Fix build dependency for libzstd
Signed-off-by: Enric Balletbo i Serra <eballetb@redhat.com>
2025-05-07 10:50:28 +02:00
Enric Balletbo i Serra
f4c04c3d65 Bump to 0.1~git.20250502.0c0c3ad-1
This adds zstd compressed kernel support and fixes a lint warning
regarding mixing spaces and tabs.

Signed-off-by: Enric Balletbo i Serra <eballetb@redhat.com>
2025-05-07 10:12:45 +02:00
2 changed files with 4 additions and 28 deletions

View file

@ -1 +1 @@
SHA512 (unzboot-3ccaa1a.tar.xz) = 64fd74a06ccd809f2eeb24d571b9467627be98b1437c7743a8dd24811b4e8b35911814148d422d9d8e89f595c88fa4d3892163a1d9a95672e44fb4db5ee0652d
SHA512 (unzboot-0c0c3ad.tar.xz) = 7e0024aad857f8cec410d27163bf978fd4bf7c2ce3b262d255c094e3cfbcfb132d66dc7806933afcf39778bb9dfb48cf2894215a79f0c7d1eb563cb33fe73a74

View file

@ -1,10 +1,10 @@
%global commit 3ccaa1acbd1e092787fa488d046bdcb3762e51ee
%global commit 0c0c3ad76400f05414b5e6c96f85e73831000d17
%global shortcommit %(c=%{commit}; echo ${c:0:7})
%global commitdate 20250530
%global commitdate 20250502
Name: unzboot
Version: 0.1~git.%{commitdate}.%{shortcommit}
Release: 4%{?dist}
Release: 1%{?dist}
Summary: Extracts a kernel vmlinuz image from a EFI application
License: GPL-2.0-or-later
@ -43,30 +43,6 @@ compressed form.
%{_bindir}/unzboot
%changelog
* Fri Jul 17 2026 Fedora Release Engineering <releng@fedoraproject.org> - 0.1~git.20250530.3ccaa1a-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild
* Sat Jan 17 2026 Fedora Release Engineering <releng@fedoraproject.org> - 0.1~git.20250530.3ccaa1a-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
* Wed Sep 24 2025 Enric Balletbo i Serra <eballetbo@redhat.com> - 0.1~git.20250530.3ccaa1a-1
- Check for g_malloc failure in unpack_efi_zboot_image
- EFI zboot payload offset and size validation
- Correct and simplify output file writing logic in main
- Direct gunzip error messages to stderr
- Improve ZSTD decompression error handling and reporting
- Suppress unused parameter warnings in zalloc/zfree
- Initialize z_stream in gunzip to prevent uninitialized use
- Prevent memory leak in gunzip on inflateInit2 failure
- Allow output to stdout to provide greater flexibility
- Refactor output file writing in unzboot
- Add SPDX license identifier and simplify license header
- Add EFI application with zstd compression example
- Append to the name the type of compression
* Fri Jul 25 2025 Fedora Release Engineering <releng@fedoraproject.org> - 0.1~git.20250502.0c0c3ad-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
* Mon May 5 2025 Enric Balletbo i Serra <eballetbo@redhat.com> - 0.1~git.20250502.0c0c3ad-1
- Add zstd compressed kernel support
- Introduce test case infrastructure and add gunzip tests