Hello community,

here is the log from the commit of package dracut for openSUSE:Factory checked 
in at 2016-11-16 13:31:31
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/dracut (Old)
 and      /work/SRC/openSUSE:Factory/.dracut.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "dracut"

Changes:
--------
--- /work/SRC/openSUSE:Factory/dracut/dracut.changes    2016-11-12 
12:58:59.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.dracut.new/dracut.changes       2016-11-16 
13:31:32.000000000 +0100
@@ -1,0 +2,13 @@
+Tue Nov 15 11:13:39 UTC 2016 - dmolken...@suse.com
+
+- Try to always add pinctrl-cherryview (bsc#998440)
+  * add 0452-Always-try-to-add-pinctrl-cherryview.patch
+
+-------------------------------------------------------------------
+Sun Nov 13 23:51:31 CET 2016 - ku...@suse.de
+
+- nfs/rpcbind: rpcbind uses now /run/rpcbind for temporary data.
+  Create the needed directory.
+  * add 0314-run-rpcbind.patch
+
+-------------------------------------------------------------------

New:
----
  0314-run-rpcbind.patch
  0452-Always-try-to-add-pinctrl-cherryview.patch

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

Other differences:
------------------
++++++ dracut.spec ++++++
--- /var/tmp/diff_new_pack.048lbM/_old  2016-11-16 13:31:35.000000000 +0100
+++ /var/tmp/diff_new_pack.048lbM/_new  2016-11-16 13:31:35.000000000 +0100
@@ -163,6 +163,7 @@
 Patch311:       0311-95iscsi-ip-ibft-is-deprecated.patch
 Patch312:       0312-40network-Do-not-print-message-about-tmp-net.ibft0.c.patch
 Patch313:       0313-90mdraid-Use-stock-MD-rules-to-assemble-RAID-arrays.patch
+Patch314:       0314-run-rpcbind.patch
 
 # New features/improvements
 Patch402:       0402-driver-fail-summary.patch
@@ -172,6 +173,7 @@
 # Workarounds/Patches no longer relevant in 045
 Patch450:       0450-Strip-NUL-bytes-in-stream-before-push-in-string.patch
 Patch451:       0451-systemd-initrd-add-initrd-root-device.target.patch
+Patch452:       0452-Always-try-to-add-pinctrl-cherryview.patch
 
 # On top patches/fixes which have to be applied late
 Patch500:       0500-Reset-IFS-variable.patch
@@ -368,6 +370,7 @@
 %patch311 -p1
 %patch312 -p1
 %patch313 -p1
+%patch314 -p0
 
 %patch402 -p1
 %patch403 -p1
@@ -375,6 +378,7 @@
 
 %patch450 -p1
 %patch451 -p1
+%patch452 -p1
 
 %patch500 -p1
 %patch501 -p1

++++++ 0314-run-rpcbind.patch ++++++
--- modules.d/95nfs/module-setup.sh
+++ modules.d/95nfs/module-setup.sh     2016/11/13 20:56:50
@@ -70,7 +70,7 @@
     local _i
     local _nsslibs
     inst_multiple -o portmap rpcbind rpc.statd mount.nfs \
-        mount.nfs4 umount rpc.idmapd sed /etc/netconfig
+        mount.nfs4 umount rpc.idmapd sed chown /etc/netconfig
     inst_multiple /etc/services /etc/nsswitch.conf /etc/rpc /etc/protocols 
/etc/idmapd.conf
 
     if [[ $hostonly_cmdline == "yes" ]]; then
--- modules.d/95nfs/nfs-start-rpc.sh
+++ modules.d/95nfs/nfs-start-rpc.sh    2016/11/13 20:57:31
@@ -6,6 +6,9 @@
     [ ! -d /var/lib/nfs/rpc_pipefs/nfs ] && \
         mount -t rpc_pipefs rpc_pipefs /var/lib/nfs/rpc_pipefs
 
+    mkdir -p -m 0755 /run/rpcbind
+    /bin/chown rpc /run/rpcbind
+
     # Start rpcbind or rpcbind
     # FIXME occasionally saw 'rpcbind: fork failed: No such device' -- why?
     command -v portmap >/dev/null && [ -z "$(pidof portmap)" ] && portmap
++++++ 0452-Always-try-to-add-pinctrl-cherryview.patch ++++++
>From 9ffab3f3a5105691b4b640649c3a99e3cce39c1a Mon Sep 17 00:00:00 2001
From: Daniel Molkentin <dmolken...@suse.com>
Date: Tue, 15 Nov 2016 11:51:01 +0100
Subject: [PATCH] Always try to add pinctrl-cherryview

Contrary to previous intel pinctrl drivers, the cherryview driver can be
and usually is built as a module. However, it sets up the SDIO pinout
so sdhci can make use of the SD card reader, which may subsequently
hold a root file system on a card  (bsc#998440).
---
 modules.d/90kernel-modules/module-setup.sh | 1 +
 1 file changed, 1 insertion(+)

Index: dracut-044/modules.d/90kernel-modules/module-setup.sh
===================================================================
--- dracut-044.orig/modules.d/90kernel-modules/module-setup.sh
+++ dracut-044/modules.d/90kernel-modules/module-setup.sh
@@ -39,7 +39,8 @@ installkernel() {
             ehci-hcd ehci-pci ehci-platform \
             ohci-hcd ohci-pci \
             uhci-hcd \
-            xhci-hcd xhci-pci xhci-plat-hcd
+            xhci-hcd xhci-pci xhci-plat-hcd \
+            pinctrl-cherryview
 
         instmods \
             "=drivers/hid" \

Reply via email to