Hello community,

here is the log from the commit of package sysconfig for openSUSE:13.1 checked 
in at 2013-11-05 14:09:54
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:13.1/sysconfig (Old)
 and      /work/SRC/openSUSE:13.1/.sysconfig.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "sysconfig"

Changes:
--------
--- /work/SRC/openSUSE:13.1/sysconfig/sysconfig.changes 2013-10-19 
16:50:42.000000000 +0200
+++ /work/SRC/openSUSE:13.1/.sysconfig.new/sysconfig.changes    2013-11-05 
14:09:55.000000000 +0100
@@ -1,0 +2,19 @@
+Tue Nov  5 11:25:26 UTC 2013 - [email protected]
+
+- Merged fixes, fixed missed patch1 reference in changes file
+  and added reference/upstream tags to all patch files.
+
+-------------------------------------------------------------------
+Tue Nov  5 10:16:30 UTC 2013 - [email protected]
+
+- fix starting dhcpcd from ifplugd (bnc#846031)
+  [+ 0005-fix-starting-dhcpcd-from-ifplugd-bnc-846031.patch]
+
+-------------------------------------------------------------------
+Wed Oct 16 13:42:52 UTC 2013 - [email protected]
+
+- blacklist udlfb because only udl can be used with xrandr 1.4
+  (bnc#846218)
+  [+ 0004-blacklist-udlfb-because-only-udl-can-be-used-with-xr.patch]
+
+-------------------------------------------------------------------
@@ -13,0 +33 @@
+  [+ 0001-bt878-card-causes-udevd-to-complain-bnc-800897.patch]

New:
----
  0004-blacklist-udlfb-because-only-udl-can-be-used-with-xr.patch
  0005-fix-starting-dhcpcd-from-ifplugd-bnc-846031.patch

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

Other differences:
------------------
++++++ sysconfig.spec ++++++
--- /var/tmp/diff_new_pack.fLGYgE/_old  2013-11-05 14:09:55.000000000 +0100
+++ /var/tmp/diff_new_pack.fLGYgE/_new  2013-11-05 14:09:55.000000000 +0100
@@ -41,6 +41,8 @@
 Patch1:         0001-bt878-card-causes-udevd-to-complain-bnc-800897.patch
 Patch2:         sysconfig-0.81.5-netconfig-use_systemctl.patch
 Patch3:         
sysconfig-0.81.5-restore_selinux_context_on_RUN_FILES_BASE.patch
+Patch4:         0004-blacklist-udlfb-because-only-udl-can-be-used-with-xr.patch
+Patch5:         0005-fix-starting-dhcpcd-from-ifplugd-bnc-846031.patch
 
 %description
 This package provides the SuSE system configuration scheme for the
@@ -125,6 +127,8 @@
 %patch1 -p1
 %patch2 -p1
 %patch3 -p1
+%patch4 -p1
+%patch5 -p1
 
 %build
 autoreconf --force --install

++++++ 0001-bt878-card-causes-udevd-to-complain-bnc-800897.patch ++++++
--- /var/tmp/diff_new_pack.fLGYgE/_old  2013-11-05 14:09:55.000000000 +0100
+++ /var/tmp/diff_new_pack.fLGYgE/_new  2013-11-05 14:09:55.000000000 +0100
@@ -1,6 +1,8 @@
 From 312c427ae58ce78297384d1599ac32cce7f29e50 Mon Sep 17 00:00:00 2001
 From: Marius Tomaschewski <[email protected]>
 Date: Wed, 2 Oct 2013 16:21:30 +0200
+Upstream: yes
+References: bnc#800897
 Subject: [PATCH] bt878 card causes udevd to complain (bnc#800897)
 
 Fixed to use 'echo' shell builtin instead /bin/echo

++++++ 0004-blacklist-udlfb-because-only-udl-can-be-used-with-xr.patch ++++++
>From b8cd7d3e08e7592ea377efb64a2e092689f68bd3 Mon Sep 17 00:00:00 2001
From: Oliver Neukum <[email protected]>
Date: Wed, 16 Oct 2013 13:42:52 +0000
Upstream: yes
References: bnc#846218
Subject: [PATCH] blacklist udlfb because only udl can be used with xrandr 1.4
 (bnc#846218)

---
 config/hardware/50-blacklist.conf | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/config/hardware/50-blacklist.conf 
b/config/hardware/50-blacklist.conf
index d820d72..2a2dbfb 100644
--- a/config/hardware/50-blacklist.conf
+++ b/config/hardware/50-blacklist.conf
@@ -102,7 +102,8 @@ blacklist sm501fb
 blacklist viafb
 blacklist vmlfb
 blacklist vt8623fb
-
+#bug 846218
+blacklist udlfb
 
 # ISDN modules are load from /lib/udev/isdn.sh
 blacklist fcusb
-- 
1.8.4

++++++ 0005-fix-starting-dhcpcd-from-ifplugd-bnc-846031.patch ++++++
>From bd76bce39387243c8d55d46a768f3b50acf3090f Mon Sep 17 00:00:00 2001
From: Ludwig Nussel <[email protected]>
Date: Tue, 5 Nov 2013 11:16:30 +0100
Subject: [PATCH] fix starting dhcpcd from ifplugd (bnc#846031)

---
 scripts/ifup | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/ifup b/scripts/ifup
index a3963b2..ee028be 100755
--- a/scripts/ifup
+++ b/scripts/ifup
@@ -308,7 +308,7 @@ ifup)
        ;;
        esac
 
-       if test $PPID -ne 1 -a "$INTERFACE" != "lo" -a "$DHCP" != yes ; then
+       if test $PPID -ne 1 -a "$INTERFACE" != "lo" -a "$DHCP" != yes -a 
"$CONTROL_IFPLUGD" != no ; then
                exec systemctl start "network@${INTERFACE}.service"
        fi
 ;;
-- 
1.8.4

++++++ sysconfig-0.81.5-netconfig-use_systemctl.patch ++++++
--- /var/tmp/diff_new_pack.fLGYgE/_old  2013-11-05 14:09:55.000000000 +0100
+++ /var/tmp/diff_new_pack.fLGYgE/_new  2013-11-05 14:09:55.000000000 +0100
@@ -1,3 +1,6 @@
+Upstream: yes
+References: bnc#845792
+
 Index: sysconfig-0.81.5/scripts/netconfig.d/nis
 ===================================================================
 --- sysconfig-0.81.5.orig/scripts/netconfig.d/nis      2013-10-11 
15:17:18.468338773 +0200

++++++ sysconfig-0.81.5-restore_selinux_context_on_RUN_FILES_BASE.patch ++++++
--- /var/tmp/diff_new_pack.fLGYgE/_old  2013-11-05 14:09:55.000000000 +0100
+++ /var/tmp/diff_new_pack.fLGYgE/_new  2013-11-05 14:09:55.000000000 +0100
@@ -1,3 +1,6 @@
+Upstream: yes
+References: bnc#845792
+
 Index: sysconfig-0.81.5/scripts/functions.common
 ===================================================================
 --- sysconfig-0.81.5.orig/scripts/functions.common     2013-08-26 
14:07:16.000000000 +0200

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to