Hello community,

here is the log from the commit of package kiwi for openSUSE:Factory checked in 
at 2011-11-10 15:48:25
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kiwi (Old)
 and      /work/SRC/openSUSE:Factory/.kiwi.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kiwi", Maintainer is "m...@suse.com"

Changes:
--------
--- /work/SRC/openSUSE:Factory/kiwi/kiwi.changes        2011-11-08 
17:38:41.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.kiwi.new/kiwi.changes   2011-11-10 
15:48:28.000000000 +0100
@@ -1,0 +2,16 @@
+Thu Nov 10 11:14:28 CET 2011 - m...@suse.de
+  
+- fixed parameter quoting in setupBootLoader (bnc #729315)
+  
+-------------------------------------------------------------------
+Wed Nov  9 16:59:03 CET 2011 - m...@suse.de
+  
+- make sure partedSectorInit() comes up with an initial value for
+  the start sector if the partition table is empty (bnc #729251)
+  
+-------------------------------------------------------------------
+Tue Nov  8 16:46:31 CET 2011 - m...@suse.de
+  
+- fixed setLogFile path writable check (bnc #728885)
+  
+-------------------------------------------------------------------

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

Other differences:
------------------
++++++ kiwi-docu.tar.bz2 ++++++
/work/SRC/openSUSE:Factory/kiwi/kiwi-docu.tar.bz2 
/work/SRC/openSUSE:Factory/.kiwi.new/kiwi-docu.tar.bz2 differ: char 11, line 1

++++++ kiwi-repo.tar.bz2 ++++++

++++++ kiwi.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kiwi/.revision new/kiwi/.revision
--- old/kiwi/.revision  2011-11-08 16:21:40.000000000 +0100
+++ new/kiwi/.revision  2011-11-10 11:26:01.000000000 +0100
@@ -1 +1 @@
-5f6c38df848ddb7a72a27d786bc29ba598ab7119
+20b09a54a5a2e7194e0bf5e062b7f44819d46e1a
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kiwi/modules/KIWIBoot.pm new/kiwi/modules/KIWIBoot.pm
--- old/kiwi/modules/KIWIBoot.pm        2011-11-08 16:21:40.000000000 +0100
+++ new/kiwi/modules/KIWIBoot.pm        2011-11-10 11:26:05.000000000 +0100
@@ -2538,7 +2538,7 @@
        #------------------------------------------
        my $unzip  = "$this->{gdata}->{Gzip} -cd $initrd 2>&1";
        my $status = qxx ("$unzip | (cd $irddir && cpio -di 2>&1)");
-       my $result = $? >> 8;
+       $result = $? >> 8;
        if ($result != 0) {
                $kiwi -> error  ("Failed to extract initrd data: $!");
                $kiwi -> failed ();
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kiwi/modules/KIWICommandLine.pm 
new/kiwi/modules/KIWICommandLine.pm
--- old/kiwi/modules/KIWICommandLine.pm 2011-11-08 16:21:40.000000000 +0100
+++ new/kiwi/modules/KIWICommandLine.pm 2011-11-10 11:26:05.000000000 +0100
@@ -675,6 +675,9 @@
        }
        my $absPath = File::Spec->rel2abs($logPath);
        my ($volume, $path, $file) = File::Spec->splitpath($logPath);
+       if ($path eq '') {
+               $path = './';
+       }
        if (! -w $path) {
                my $msg = "Unable to write to location $path, cannot create log 
file.";
                $this -> {kiwi} -> error ($msg);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kiwi/modules/KIWILinuxRC.sh 
new/kiwi/modules/KIWILinuxRC.sh
--- old/kiwi/modules/KIWILinuxRC.sh     2011-11-08 16:21:40.000000000 +0100
+++ new/kiwi/modules/KIWILinuxRC.sh     2011-11-10 11:26:05.000000000 +0100
@@ -1068,7 +1068,7 @@
        local arch=`uname -m`
        local para=""
        while [ $# -gt 0 ];do
-               para="$para \"$1\""
+               para="$para '$1'"
                shift
        done
        case $arch-$loader in
@@ -1137,7 +1137,7 @@
        local arch=`uname -m`
        local para=""
        while [ $# -gt 0 ];do
-               para="$para \"$1\""
+               para="$para '$1'"
                shift
        done
        case $arch-$loader in
@@ -6795,6 +6795,12 @@
                        endSectors=$endSectors:$((s_stopp/8*8+8))s
                fi
        done
+       # /.../
+       # in case of an empty disk we use the following start sector
+       # ----
+       if [ -z "$startSectors" ];then
+               startSectors=2048s
+       fi
 }
 #======================================
 # partedEndCylinder
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kiwi/modules/KIWIOverlay.pm 
new/kiwi/modules/KIWIOverlay.pm
--- old/kiwi/modules/KIWIOverlay.pm     2011-11-08 16:21:40.000000000 +0100
+++ new/kiwi/modules/KIWIOverlay.pm     2011-11-10 11:26:05.000000000 +0100
@@ -214,7 +214,9 @@
                        qxx ("$cmd 2>&1");
                }
        }
-       qxx ("rm -rf $tmpdir 2>&1");
+       if (($tmpdir) && (-d $tmpdir)) {
+               qxx ("rm -rf $tmpdir 2>&1");
+       }
        return $this;
 }
 

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to