Hello community,

here is the log from the commit of package tboot for openSUSE:Factory checked 
in at 2012-10-13 21:05:26
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/tboot (Old)
 and      /work/SRC/openSUSE:Factory/.tboot.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "tboot", Maintainer is "meiss...@suse.com"

Changes:
--------
--- /work/SRC/openSUSE:Factory/tboot/tboot.changes      2012-06-01 
07:24:35.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.tboot.new/tboot.changes 2012-10-13 
21:10:39.000000000 +0200
@@ -1,0 +2,23 @@
+Wed Oct 10 15:31:57 UTC 2012 - meiss...@suse.com
+
+- updated to 1.7.2/20120929
+  Add Makefile for docs to install man pages.
+  Add man pages for tools
+  Add grub-mkconfig helper scripts for tboot case in GRUB2
+  Fix for deb build in ubuntu
+  Fix S3 issue brought by c/s 308
+  Fix a S4 hang issue and a potential shutdown reset issue
+  Fix build with new zlib 1.2.7.
+  Initialize event log when S3
+  Update README to change upstream repo url from bughost.org to sf.net.
+
+- updated to 1.7.1/20120427
+  Fix cmdline size in tb_polgen
+  Add description for option min_ram in README.
+  new tboot cmdline option "min_ram=0xXXXXXX"
+  Update test-patches/tpm-test.patch to fit in latest code.
+- zlib patch upstreamed.
+- spec file adjustments
+- tboot-fix.patch: fixed printf type mismatch
+
+-------------------------------------------------------------------

Old:
----
  tboot-1.7.0.tar.gz
  zlib.patch

New:
----
  tboot-1.7.2.tar.gz
  tboot-fix.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ tboot.spec ++++++
--- /var/tmp/diff_new_pack.Vj3W48/_old  2012-10-13 21:10:43.000000000 +0200
+++ /var/tmp/diff_new_pack.Vj3W48/_new  2012-10-13 21:10:43.000000000 +0200
@@ -17,15 +17,15 @@
 
 
 Name:           tboot
-%define ver 1.7.0
-Version:        20120115_1.7.0
+%define ver 1.7.2
+Version:        20120929_1.7.2
 Release:        0
 Summary:        Performs a verified launch using Intel(R) TXT
 License:        BSD-3-Clause
 Group:          Productivity/Security
 Url:            http://sourceforge.net/projects/tboot/
-Source0:        %{name}-%{ver}.tar.gz
-Patch0:         zlib.patch
+Source0:        
http://downloads.sourceforge.net/project/tboot/tboot/tboot-%{ver}.tar.gz
+Patch0:         tboot-fix.patch
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  openssl-devel
 BuildRequires:  trousers-devel
@@ -47,10 +47,7 @@
 make debug=y %{?_smp_mflags}
 
 %install
-make debug=y install DISTDIR=$RPM_BUILD_ROOT
-
-%clean
-rm -rf $RPM_BUILD_ROOT
+make debug=y install DISTDIR=$RPM_BUILD_ROOT MANPATH=$RPM_BUILD_ROOT/%{_mandir}
 
 %files
 %defattr(-,root,root,-)
@@ -73,5 +70,9 @@
 %{_sbindir}/txt-stat
 /boot/tboot.gz
 /boot/tboot-syms
+%{_mandir}/man8/*
+%dir %{_sysconfdir}/grub.d/
+%{_sysconfdir}/grub.d/20_linux_tboot
+%{_sysconfdir}/grub.d/20_linux_xen_tboot
 
 %changelog

++++++ tboot-1.7.0.tar.gz -> tboot-1.7.2.tar.gz ++++++
++++ 1745 lines of diff (skipped)

++++++ tboot-fix.patch ++++++
Index: tboot-1.7.2/tb_polgen/param.c
===================================================================
--- tboot-1.7.2.orig/tb_polgen/param.c
+++ tboot-1.7.2/tb_polgen/param.c
@@ -184,7 +184,7 @@ void print_params(param_data_t *params)
     info_msg("\t pcr = %d\n", params->pcr);
     info_msg("\t hash_type = %d\n", params->hash_type);
     info_msg("\t pos = %d\n", params->pos);
-    info_msg("\t cmdline length = %lu\n", strlen(params->cmdline));
+    info_msg("\t cmdline length = %u\n", (unsigned 
int)strlen(params->cmdline));
     info_msg("\t cmdline = %s\n", params->cmdline);
     info_msg("\t image_file = %s\n", params->image_file);
     info_msg("\t elt_file = %s\n", params->elt_file);
@@ -409,9 +409,9 @@ bool parse_input_params(int argc, char *
                     return false;
                 }
                 if (strlen(optarg) > sizeof(params->cmdline) - 1) {
-                    error_msg("Command line length of %lu exceeds %d "
+                    error_msg("Command line length of %u exceeds %d "
                               "character maximum\n", 
-                              strlen(optarg), TBOOT_KERNEL_CMDLINE_SIZE-1);
+                              (int)strlen(optarg), 
TBOOT_KERNEL_CMDLINE_SIZE-1);
                     return false;
                 }
                     
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to