Mailinglist Archive: opensuse-commit (1083 mails)
| < Previous | Next > |
commit linuxrc
- From: root@xxxxxxxxxxxxxxx (h_root)
- Date: Wed, 19 Sep 2007 19:13:37 +0200
- Message-id: <20070919171337.A556B67817A@xxxxxxxxxxxxxxx>
Hello community,
here is the log from the commit of package linuxrc
checked in at Wed Sep 19 19:13:37 CEST 2007.
--------
--- linuxrc/linuxrc.changes 2007-09-17 17:05:38.000000000 +0200
+++ /mounts/work_src_done/STABLE/linuxrc/linuxrc.changes 2007-09-19 12:43:51.000000000 +0200
@@ -1,0 +2,6 @@
+Wed Sep 19 12:43:48 CEST 2007 - snwint@xxxxxxx
+
+- correct sha1 endianness (#326258)
+- make slp window wider
+
+-------------------------------------------------------------------
Old:
----
linuxrc-3.0.18.tar.bz2
New:
----
linuxrc-3.0.19.tar.bz2
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ linuxrc.spec ++++++
--- /var/tmp/diff_new_pack.eV1790/_old 2007-09-19 19:13:22.000000000 +0200
+++ /var/tmp/diff_new_pack.eV1790/_new 2007-09-19 19:13:22.000000000 +0200
@@ -1,5 +1,5 @@
#
-# spec file for package linuxrc (Version 3.0.18)
+# spec file for package linuxrc (Version 3.0.19)
#
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine
@@ -16,9 +16,9 @@
Group: System/Boot
AutoReqProv: on
Summary: SUSE Installation Program
-Version: 3.0.18
+Version: 3.0.19
Release: 1
-Source: linuxrc-3.0.18.tar.bz2
+Source: linuxrc-3.0.19.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
@@ -53,6 +53,9 @@
%doc linuxrc.html
%changelog
+* Wed Sep 19 2007 - snwint@xxxxxxx
+- correct sha1 endianness (#326258)
+- make slp window wider
* Mon Sep 17 2007 - snwint@xxxxxxx
- don't turn off swap (#308121)
- device was sometimes not written to install.inf (#305495)
++++++ linuxrc-3.0.18.tar.bz2 -> linuxrc-3.0.19.tar.bz2 ++++++
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/linuxrc-3.0.18/Changelog new/linuxrc-3.0.19/Changelog
--- old/linuxrc-3.0.18/Changelog 2007-09-17 16:13:46.000000000 +0200
+++ new/linuxrc-3.0.19/Changelog 2007-09-19 12:42:59.000000000 +0200
@@ -1,3 +1,7 @@
+19/9/2007: v3.0.19
+ - correct sha1 endianness (#326258)
+ - make slp window wider
+
13/9/2007: v3.0.18
- don't turn off swap (#308121)
- device was sometimes not written to install.inf (#305495)
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/linuxrc-3.0.18/dialog.c new/linuxrc-3.0.19/dialog.c
--- old/linuxrc-3.0.18/dialog.c 2007-08-16 17:36:39.000000000 +0200
+++ new/linuxrc-3.0.19/dialog.c 2007-09-19 12:40:09.000000000 +0200
@@ -484,8 +484,8 @@
if (width_ii < MIN_WIN_SIZE)
width_ii = MIN_WIN_SIZE;
- if (width_ii > max_x_ig - 16)
- width_ii = max_x_ig - 16;
+ if (width_ii > max_x_ig - 4)
+ width_ii = max_x_ig - 4;
nr_lines_ii = util_format_txt (head_tv, lines_ati, width_ii - 4);
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/linuxrc-3.0.18/sha1.c new/linuxrc-3.0.19/sha1.c
--- old/linuxrc-3.0.18/sha1.c 2007-08-06 14:14:59.000000000 +0200
+++ new/linuxrc-3.0.19/sha1.c 2007-09-19 12:16:33.000000000 +0200
@@ -32,6 +32,11 @@
# include "unlocked-io.h"
#endif
+#include <endian.h>
+#if __BYTE_ORDER == __BIG_ENDIAN
+# define WORDS_BIGENDIAN 1
+#endif
+
#ifdef WORDS_BIGENDIAN
# define SWAP(n) (n)
#else
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/linuxrc-3.0.18/slp.c new/linuxrc-3.0.19/slp.c
--- old/linuxrc-3.0.18/slp.c 2007-07-19 15:02:00.000000000 +0200
+++ new/linuxrc-3.0.19/slp.c 2007-09-19 12:40:56.000000000 +0200
@@ -471,7 +471,7 @@
str_copy(&key, NULL);
}
- i = acnt == 1 && !config.manual ? 1 : dia_list(txt_get(TXT_SLP_SOURCE), 60, NULL, ambg, 0, align_center);
+ i = acnt == 1 && !config.manual ? 1 : dia_list(txt_get(TXT_SLP_SOURCE), 70, NULL, ambg, 0, align_center);
if (i <= 0 || i > acnt)
break;
d = ambg[i - 1];
@@ -493,7 +493,7 @@
if(acnt == 0) break;
- i = acnt == 1 ? 1 : dia_list(txt_get(TXT_SLP_SOURCE), 60, NULL, ambg, 0, align_center);
+ i = acnt == 1 ? 1 : dia_list(txt_get(TXT_SLP_SOURCE), 70, NULL, ambg, 0, align_center);
if (i > 0 && i - 1 < acnt)
{
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/linuxrc-3.0.18/VERSION new/linuxrc-3.0.19/VERSION
--- old/linuxrc-3.0.18/VERSION 2007-09-13 16:17:44.000000000 +0200
+++ new/linuxrc-3.0.19/VERSION 2007-09-19 12:16:39.000000000 +0200
@@ -1 +1 @@
-3.0.18
+3.0.19
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
---------------------------------------------------------------------
To unsubscribe, e-mail: opensuse-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: opensuse-commit+help@xxxxxxxxxxxx
| < Previous | Next > |