Mailinglist Archive: opensuse-commit (1421 mails)

< Previous Next >
commit linuxrc
  • From: root@xxxxxxxxxxxxxxx (h_root)
  • Date: Thu, 01 May 2008 14:23:42 +0200
  • Message-id: <20080501122343.4C141678168@xxxxxxxxxxxxxxx>

Hello community,

here is the log from the commit of package linuxrc
checked in at Thu May 1 14:23:42 CEST 2008.


--------
--- linuxrc/linuxrc.changes 2008-04-24 16:23:25.000000000 +0200
+++ /mounts/work_src_done/STABLE/linuxrc/linuxrc.changes 2008-04-30
15:14:02.131608000 +0200
@@ -1,0 +2,5 @@
+Wed Apr 30 15:11:20 CEST 2008 - snwint@xxxxxxx
+
+- dhcpcd even changed /var/lib/dhcpcd/dhcpcd-*.info format (bnc #383737)
+
+-------------------------------------------------------------------



Old:
----
linuxrc-3.1.20.tar.bz2

New:
----
linuxrc-3.1.21.tar.bz2

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

Other differences:
------------------
++++++ linuxrc.spec ++++++
--- /var/tmp/diff_new_pack.R17673/_old 2008-05-01 14:23:26.000000000 +0200
+++ /var/tmp/diff_new_pack.R17673/_new 2008-05-01 14:23:26.000000000 +0200
@@ -1,5 +1,5 @@
#
-# spec file for package linuxrc (Version 3.1.20)
+# spec file for package linuxrc (Version 3.1.21)
#
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine
@@ -17,9 +17,9 @@
Group: System/Boot
AutoReqProv: on
Summary: SUSE Installation Program
-Version: 3.1.20
+Version: 3.1.21
Release: 1
-Source: linuxrc-3.1.20.tar.bz2
+Source: linuxrc-3.1.21.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-build

%description
@@ -54,6 +54,8 @@
%doc linuxrc.html

%changelog
+* Wed Apr 30 2008 snwint@xxxxxxx
+- dhcpcd even changed /var/lib/dhcpcd/dhcpcd-*.info format (bnc #383737)
* Thu Apr 24 2008 snwint@xxxxxxx
- try wired network cards first (bnc #381283)
- adapt to new dhcpcd

++++++ linuxrc-3.1.20.tar.bz2 -> linuxrc-3.1.21.tar.bz2 ++++++
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn
--exclude=.svnignore old/linuxrc-3.1.20/Changelog new/linuxrc-3.1.21/Changelog
--- old/linuxrc-3.1.20/Changelog 2008-04-24 16:22:56.000000000 +0200
+++ new/linuxrc-3.1.21/Changelog 2008-04-30 14:55:07.000000000 +0200
@@ -1,3 +1,6 @@
+30/4/2008: v3.1.21
+ - dhcpcd even changed /var/lib/dhcpcd/dhcpcd-*.info format
+
24/4/2008: v3.1.20
- try wired network cards first (bnc #381283)
- adapt to new dhcpcd
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn
--exclude=.svnignore old/linuxrc-3.1.20/file.c new/linuxrc-3.1.21/file.c
--- old/linuxrc-3.1.20/file.c 2008-04-24 16:06:42.000000000 +0200
+++ new/linuxrc-3.1.21/file.c 2008-04-30 15:04:07.000000000 +0200
@@ -83,6 +83,7 @@
{ key_ip, "IP", kf_none },
{ key_netmask, "Netmask", kf_cfg + kf_cmd + kf_dhcp },
{ key_gateway, "Gateway", kf_cfg + kf_cmd + kf_dhcp },
+ { key_gateway, "Gateways", kf_cfg + kf_cmd + kf_dhcp },
{ key_server, "Server", kf_cfg + kf_cmd },
{ key_nameserver, "Nameserver", kf_cfg + kf_cmd },
{ key_broadcast, "Broadcast", kf_cfg + kf_cmd + kf_dhcp },
@@ -102,6 +103,7 @@
{ key_console, "Console", kf_none },
{ key_ptphost, "Pointopoint", kf_cfg + kf_cmd },
{ key_domain, "Domain", kf_cfg + kf_cmd + kf_dhcp },
+ { key_domain, "DNSDOMAIN", kf_cfg + kf_cmd + kf_dhcp },
{ key_manual, "Manual", kf_cfg + kf_cmd + kf_cmd_early },
{ key_reboot, "Reboot", kf_none },
/* drop it? */
{ key_floppydisk, "Floppydisk", kf_none },
/* ??? */
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn
--exclude=.svnignore old/linuxrc-3.1.20/net.c new/linuxrc-3.1.21/net.c
--- old/linuxrc-3.1.20/net.c 2008-04-21 15:18:50.000000000 +0200
+++ new/linuxrc-3.1.21/net.c 2008-04-30 15:03:42.000000000 +0200
@@ -1710,7 +1710,7 @@
break;

case key_gateway:
- if((s = strchr(f->value, ','))) *s = 0;
+ if((s = strchr(f->value, ' '))) *s = 0;
name2inet(&config.net.gateway, f->value);
net_check_address2(&config.net.gateway, 0);
break;
@@ -1733,7 +1733,7 @@
#endif

case key_dns:
- for(config.net.nameservers = 0, sl = sl0 = slist_split(',', f->value);
sl; sl = sl->next) {
+ for(config.net.nameservers = 0, sl = sl0 = slist_split(' ', f->value);
sl; sl = sl->next) {
name2inet(&config.net.nameserver[config.net.nameservers], sl->key);
net_check_address2(&config.net.nameserver[config.net.nameservers],
0);
if(++config.net.nameservers >= sizeof config.net.nameserver / sizeof
*config.net.nameserver) break;
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn
--exclude=.svnignore old/linuxrc-3.1.20/VERSION new/linuxrc-3.1.21/VERSION
--- old/linuxrc-3.1.20/VERSION 2008-04-23 17:18:16.000000000 +0200
+++ new/linuxrc-3.1.21/VERSION 2008-04-30 14:54:19.000000000 +0200
@@ -1 +1 @@
-3.1.20
+3.1.21


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



Remember to have fun...

---------------------------------------------------------------------
To unsubscribe, e-mail: opensuse-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: opensuse-commit+help@xxxxxxxxxxxx

< Previous Next >