Hello community,

here is the log from the commit of package dracut for openSUSE:Factory checked 
in at 2014-10-05 20:30:43
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
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    2014-10-01 
11:21:58.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.dracut.new/dracut.changes       2014-10-05 
20:31:16.000000000 +0200
@@ -1,0 +2,9 @@
+Thu Oct  2 14:33:20 UTC 2014 - [email protected]
+
+- Fix install-kernel with xen for self build kernels to show up in grub2
+  properly (bsc#897901)
+* Modify dracut-installkernel (source file)
+- Fix foreign fonts in plymouth and console (bnc#897972)
+* Add 0163-Install-etc-sysconfig-console-to-see-specific-fonts.patch
+
+-------------------------------------------------------------------

New:
----
  0163-Install-etc-sysconfig-console-to-see-specific-fonts.patch

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

Other differences:
------------------
++++++ dracut.spec ++++++
--- /var/tmp/diff_new_pack.B1gfzh/_old  2014-10-05 20:31:18.000000000 +0200
+++ /var/tmp/diff_new_pack.B1gfzh/_new  2014-10-05 20:31:18.000000000 +0200
@@ -183,6 +183,7 @@
 Patch160:       0160-nfs-Add-ip-.-and-root-nfs.-parameters-to-internal-dr.patch
 Patch161:       0161-Fix-error-message-when-there-are-no-internal-kernel-.patch
 Patch162:       0162-network-Request-DHCP-lease-instead-of-getting-applyi.patch
+Patch163:       0163-Install-etc-sysconfig-console-to-see-specific-fonts.patch
 
 BuildRequires:  asciidoc
 BuildRequires:  bash
@@ -388,6 +389,7 @@
 %patch160 -p1
 %patch161 -p1
 %patch162 -p1
+%patch163 -p1
 
 %build
 %configure\

++++++ 0163-Install-etc-sysconfig-console-to-see-specific-fonts.patch ++++++
>From 4ef054c0510f24e8652726674461833a33643b26 Mon Sep 17 00:00:00 2001
From: Thomas Renninger <[email protected]>
Date: Tue, 30 Sep 2014 16:58:05 +0200
Subject: Install /etc/sysconfig/console to see specific fonts

bnc#897972

Author: Werner Fink <[email protected]>
Signed-off-by: Thomas Renninger <[email protected]>
---
 modules.d/10i18n/module-setup.sh | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/modules.d/10i18n/module-setup.sh b/modules.d/10i18n/module-setup.sh
index a091f89..f7ec0d9 100755
--- a/modules.d/10i18n/module-setup.sh
+++ b/modules.d/10i18n/module-setup.sh
@@ -221,6 +221,10 @@ install() {
             print_vars KEYMAP EXT_KEYMAPS UNICODE FONT FONT_MAP FONT_UNIMAP >> 
${initdir}${VCONFIG_CONF}
         fi
 
+        if dracut_module_included "systemd" && [[ -f /etc/sysconfig/console 
]]; then
+            inst_simple /etc/sysconfig/console
+        fi
+
         return 0
     }
 
-- 
1.8.4.5

++++++ dracut-installkernel ++++++
--- /var/tmp/diff_new_pack.B1gfzh/_old  2014-10-05 20:31:19.000000000 +0200
+++ /var/tmp/diff_new_pack.B1gfzh/_new  2014-10-05 20:31:19.000000000 +0200
@@ -15,6 +15,7 @@
 KERNEL_VERSION=$1
 BOOTIMAGE=$2
 MAPFILE=$3
+CONFIGFILE=config-$KERNEL_VERSION
 
 case "$(uname -m)" in
     s390|s390x)
@@ -56,12 +57,19 @@
         $INSTALL_PATH/System.map-$KERNEL_VERSION.old; 
 fi
 
+
+if [ -f $INSTALL_PATH/$CONFIGFILE ]; then
+    mv $INSTALL_PATH/$CONFIGFILE \
+        $INSTALL_PATH/$CONFIGFILE.old;
+fi
+
 #
 # Install new files
 #
 
 cp -fp $BOOTIMAGE $INSTALL_PATH/$BOOTFILE-$KERNEL_VERSION
 cp -fp $MAPFILE $INSTALL_PATH/System.map-$KERNEL_VERSION
+cp -fp .config $INSTALL_PATH/$CONFIGFILE
 
 CONFIG=$(dirname $MAPFILE)/.config
 CHECK_SUPPORTED=

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

Reply via email to