Hello community,

here is the log from the commit of package kiwi for openSUSE:12.3 checked in at 
2013-02-17 16:43:59
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:12.3/kiwi (Old)
 and      /work/SRC/openSUSE:12.3/.kiwi.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kiwi", Maintainer is "[email protected]"

Changes:
--------

New:
----
  disable-uefi-for-x86.patch

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

Other differences:
------------------
++++++ kiwi.spec ++++++
--- /var/tmp/diff_new_pack.amG6WP/_old  2013-02-17 16:44:06.000000000 +0100
+++ /var/tmp/diff_new_pack.amG6WP/_new  2013-02-17 16:44:06.000000000 +0100
@@ -118,6 +118,7 @@
 Source4:        %{name}-find-boot-requires.sh
 Patch0:         fix-efi.patch
 Patch1:         fix-systemd.diff
+Patch2:         disable-uefi-for-x86.patch
 # build root path
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 
@@ -470,6 +471,7 @@
 %setup -q -n %name -a2 -a3
 %patch0 -p1
 %patch1
+%patch2
 
 %build
 # empty because of rpmlint warning rpm-buildroot-usage

++++++ disable-uefi-for-x86.patch ++++++
Index: kiwi/modules/KIWIXML.pm
===================================================================
--- kiwi.orig/modules/KIWIXML.pm
+++ kiwi/modules/KIWIXML.pm
@@ -8093,8 +8093,11 @@ sub __populateTypeInfo_legacy {
                                -> getAttribute("luks");
                        $record{cmdline}       = $node
                                -> getAttribute("kernelcmdline");
-                       $record{firmware}      = $node
-                               -> getAttribute("firmware");
+                       my $firmware = $node -> getAttribute("firmware");
+                       if (($firmware eq 'uefi') && $this -> getArch() ne 
'x86_64') {
+                               $firmware = 'bios';
+                       }
+                       $record{firmware}      = $firmware;
                        $record{compressed}    = $node
                                -> getAttribute("compressed");
                        $record{boot}          = $node
-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to