Hello community, here is the log from the commit of package kiwi for openSUSE:Factory checked in at Thu Mar 31 13:44:43 CEST 2011.
-------- --- kiwi/kiwi.changes 2011-03-30 12:14:33.000000000 +0200 +++ /mounts/work_src_done/STABLE/kiwi/kiwi.changes 2011-03-31 11:53:17.000000000 +0200 @@ -1,0 +2,29 @@ +Thu Mar 31 10:14:46 CEST 2011 - [email protected] + +- fixed LVM repartition code. if no recovery partition is + requested just us the default end sector suggested by the + partition tool + +------------------------------------------------------------------- +Wed Mar 30 18:34:53 CEST 2011 - [email protected] + +- fixed s390 LVM repartition code [2] + +------------------------------------------------------------------- +Wed Mar 30 18:04:37 CEST 2011 - [email protected] + +- fixed s390 LVM repartition code + +------------------------------------------------------------------- +Wed Mar 30 17:07:58 CEST 2011 - [email protected] + +- fixed zipl setup if used with LVM images + +------------------------------------------------------------------- +Wed Mar 30 13:21:28 CEST 2011 - [email protected] + +- suse 11.4 doesn't provide the by-id disk paths anymore. + Because of that change kiwi switches to the by-path method + with this commit + +------------------------------------------------------------------- calling whatdependson for head-i586 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kiwi.spec ++++++ --- /var/tmp/diff_new_pack.HIJgiI/_old 2011-03-31 13:43:19.000000000 +0200 +++ /var/tmp/diff_new_pack.HIJgiI/_new 2011-03-31 13:43:19.000000000 +0200 @@ -66,7 +66,7 @@ %endif Summary: OpenSuSE - KIWI Image System Version: 4.83 -Release: 5 +Release: 7 Group: System/Management License: GPLv2 Source: %{name}.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-03-25 14:47:34.000000000 +0100 +++ new/kiwi/.revision 2011-03-25 14:47:34.000000000 +0100 @@ -1 +1 @@ -78b2fed47441b022998ece32918d3192d06aafb4 +3ce9b1d00c9723deef8343f8948a1987c9a52c55 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-03-25 14:47:34.000000000 +0100 +++ new/kiwi/modules/KIWIBoot.pm 2011-03-31 11:49:12.000000000 +0200 @@ -3904,6 +3904,11 @@ $bootdev = $diskname."2"; if (! -e $bootdev) { $bootdev = $diskname."1"; + } else { + my $type = qxx ("blkid $bootdev -s TYPE -o value"); + if ($type =~ /LVM/) { + $bootdev = $diskname."1"; + } } $haveRealDevice = 1; } 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-03-29 18:00:22.000000000 +0200 +++ new/kiwi/modules/KIWILinuxRC.sh 2011-03-31 11:49:12.000000000 +0200 @@ -4989,7 +4989,7 @@ echo $device return fi - for i in /dev/disk/by-id/*;do + for i in /dev/disk/by-path/*;do if [ -z "$i" ];then continue fi diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kiwi/system/boot/ix86/oemboot/suse-repart new/kiwi/system/boot/ix86/oemboot/suse-repart --- old/kiwi/system/boot/ix86/oemboot/suse-repart 2011-03-17 18:50:53.000000000 +0100 +++ new/kiwi/system/boot/ix86/oemboot/suse-repart 2011-03-31 11:49:12.000000000 +0200 @@ -382,8 +382,12 @@ # resize LVM partition #-------------------------------------- disk2MBytes=$((diskXMBytes - disk1MBytes - recoMByte)) + disk2MBytes=+"$disk2MBytes"M + if [ $recoMByte -eq 0 ];then + disk2MBytes=. + fi createPartitionerInput \ - d $pID n p $pID . +"$disk2MBytes"M t $pID 8e + d $pID n p $pID . $disk2MBytes t $pID 8e extendID=$pID pID=$((pID + 1)) #====================================== diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kiwi/system/boot/ppc/oemboot/suse-repart new/kiwi/system/boot/ppc/oemboot/suse-repart --- old/kiwi/system/boot/ppc/oemboot/suse-repart 2011-03-17 18:50:53.000000000 +0100 +++ new/kiwi/system/boot/ppc/oemboot/suse-repart 2011-03-31 11:49:12.000000000 +0200 @@ -387,8 +387,12 @@ # resize LVM partition #-------------------------------------- disk2MBytes=$((diskXMBytes - disk1MBytes - recoMByte)) + disk2MBytes=+"$disk2MBytes"M + if [ $recoMByte -eq 0 ];then + disk2MBytes=. + fi createPartitionerInput \ - d $pID n p $pID . +"$disk2MBytes"M t $pID 8e + d $pID n p $pID . $disk2MBytes t $pID 8e extendID=$pID pID=$((pID + 1)) #====================================== diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kiwi/system/boot/s390/oemboot/suse-repart new/kiwi/system/boot/s390/oemboot/suse-repart --- old/kiwi/system/boot/s390/oemboot/suse-repart 2011-03-17 18:50:53.000000000 +0100 +++ new/kiwi/system/boot/s390/oemboot/suse-repart 2011-03-31 11:49:12.000000000 +0200 @@ -384,8 +384,12 @@ # resize LVM partition #-------------------------------------- disk2MBytes=$((diskXMBytes - disk1MBytes - recoMByte)) + disk2MBytes=+"$disk2MBytes"M + if [ $recoMByte -eq 0 ];then + disk2MBytes=. + fi createPartitionerInput \ - d u y $pID n p $pID . +"$disk2MBytes"M t $pID 8e + d $pID u y n p $pID . $disk2MBytes t $pID 8e extendID=$pID pID=$((pID + 1)) #====================================== ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
