Merge pull request #47349 from charles-dyfis-net/sbsigntool-0.9.1

sbsigntool: 0.5 -> 0.9.1
This commit is contained in:
Matthew Bauer 2018-10-05 22:35:46 -05:00 committed by GitHub
commit 70faf056b2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 24 additions and 14 deletions

View File

@ -1,17 +1,27 @@
diff -uNr sbsigntool/configure.ac sbsigntool-new/configure.ac --- sbsigntools/configure.ac 2018-09-25 10:30:00.878766256 -0500
--- sbsigntool/configure.ac 2015-07-05 12:18:18.932717136 +0200 +++ configure.ac.new 2018-09-25 10:34:56.231277375 -0500
+++ sbsigntool-new/configure.ac 2015-07-05 14:51:39.659284938 +0200 @@ -71,15 +71,16 @@
@@ -65,7 +65,7 @@ # no consistent view of where gnu-efi should dump the efi stuff, so find it
##
for path in /lib /lib64 /usr/lib /usr/lib64 /usr/lib32 /lib/efi /lib64/efi /usr/lib/efi /usr/lib64/efi; do
- if test -e $path/crt0-efi-$EFI_ARCH.o; then
- CRTPATH=$path
+ if test -e @@NIX_GNUEFI@@/$path/crt0-efi-$EFI_ARCH.o; then
+ CRTPATH=@@NIX_GNUEFI@@/$path
+ break
fi
done
if test -z "$CRTPATH"; then
AC_MSG_ERROR([cannot find the gnu-efi crt path])
fi
dnl gnu-efi headers require extra include dirs
EFI_ARCH=$(uname -m)
-EFI_CPPFLAGS="-I/usr/include/efi -I/usr/include/efi/$EFI_ARCH \ -EFI_CPPFLAGS="-I/usr/include/efi -I/usr/include/efi/$EFI_ARCH \
+EFI_CPPFLAGS="-I@@NIX_GNUEFI@@/include/efi -I@@NIX_GNUEFI@@/include/efi/$EFI_ARCH \ +EFI_CPPFLAGS="-I@@NIX_GNUEFI@@/include/efi -I@@NIX_GNUEFI@@/include/efi/$EFI_ARCH \
-DEFI_FUNCTION_WRAPPER" -DEFI_FUNCTION_WRAPPER"
CPPFLAGS_save="$CPPFLAGS" CPPFLAGS_save="$CPPFLAGS"
CPPFLAGS="$CPPFLAGS $EFI_CPPFLAGS" CPPFLAGS="$CPPFLAGS $EFI_CPPFLAGS"
@@ -74,5 +74,5 @@ @@ -90,5 +91,5 @@
AC_SUBST(EFI_CPPFLAGS, $EFI_CPPFLAGS) AC_SUBST(CRTPATH, $CRTPATH)
AC_CONFIG_FILES([Makefile src/Makefile lib/ccan/Makefile] AC_CONFIG_FILES([Makefile src/Makefile lib/ccan/Makefile]
- [docs/Makefile tests/Makefile]) - [docs/Makefile tests/Makefile])

View File

@ -5,12 +5,12 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "sbsigntool-${version}"; name = "sbsigntool-${version}";
version = "0.5"; version = "0.9.1";
src = fetchgit { src = fetchgit {
url = "git://kernel.ubuntu.com/jk/sbsigntool"; url = "https://git.kernel.org/pub/scm/linux/kernel/git/jejb/sbsigntools.git";
rev = "951ee95a301674c046f55330cd7460e1314deff2"; rev = "v0.9.1";
sha256 = "1skqrfhvsaay01l94m57sxxqp909rvn07xwmzc6vzzfcnsh6f2yk"; sha256 = "098gxmhjn8acxjw5bq59wq4xhgkpx1xn8kjvxwdzpqkwq9ivrsbp";
}; };
patches = [ ./autoconf.patch ]; patches = [ ./autoconf.patch ];
@ -18,12 +18,12 @@ stdenv.mkDerivation rec {
prePatch = "patchShebangs ."; prePatch = "patchShebangs .";
nativeBuildInputs = [ autoconf automake pkgconfig help2man ]; nativeBuildInputs = [ autoconf automake pkgconfig help2man ];
buildInputs = [ utillinux openssl libuuid gnu-efi libbfd ]; buildInputs = [ openssl libuuid libbfd gnu-efi ];
configurePhase = '' configurePhase = ''
substituteInPlace configure.ac --replace "@@NIX_GNUEFI@@" "${gnu-efi}" substituteInPlace configure.ac --replace "@@NIX_GNUEFI@@" "${gnu-efi}"
lib/ccan.git/tools/create-ccan-tree --build-type=automake lib/ccan "talloc read_write_all build_assert array_size" lib/ccan.git/tools/create-ccan-tree --build-type=automake lib/ccan "talloc read_write_all build_assert array_size endian"
touch AUTHORS touch AUTHORS
touch ChangeLog touch ChangeLog