Mailinglist Archive: opensuse-commit (1083 mails)
| < Previous | Next > |
commit kiwi
- From: root@xxxxxxxxxxxxxxx (h_root)
- Date: Tue, 18 Sep 2007 14:38:29 +0200
- Message-id: <20070918123829.B7C2E6781B8@xxxxxxxxxxxxxxx>
Hello community,
here is the log from the commit of package kiwi
checked in at Tue Sep 18 14:38:29 CEST 2007.
--------
--- arch/i386/kiwi/kiwi.changes 2007-09-17 16:53:21.000000000 +0200
+++ /mounts/work_src_done/STABLE/kiwi/kiwi.changes 2007-09-18 14:16:26.146523000 +0200
@@ -1,0 +2,8 @@
+Tue Sep 18 11:44:28 CEST 2007 - ms@xxxxxxx
+
+- fixed missing message file for vmx type
+- added usage information for --add-profile option
+- added baseGetProfilesUsed() function to get information
+ about the used profile
+
+-------------------------------------------------------------------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ kiwi.spec ++++++
--- /var/tmp/diff_new_pack.K32450/_old 2007-09-18 14:38:08.000000000 +0200
+++ /var/tmp/diff_new_pack.K32450/_new 2007-09-18 14:38:08.000000000 +0200
@@ -16,7 +16,7 @@
Requires: perl perl-XML-LibXML perl-libwww-perl screen
Summary: OpenSuSE - KIWI Image System
Version: 1.64
-Release: 9
+Release: 11
Group: System/Management
License: GPL v2 or later
Source: kiwi.tar.bz2
@@ -327,6 +327,11 @@
%{_datadir}/kiwi/image/oemboot/suse*
%changelog
+* Tue Sep 18 2007 - ms@xxxxxxx
+- fixed missing message file for vmx type
+- added usage information for --add-profile option
+- added baseGetProfilesUsed() function to get information
+ about the used profile
* Mon Sep 17 2007 - ms@xxxxxxx
- missing mksquashfs is now handled as fatal error
* Mon Sep 17 2007 - ms@xxxxxxx
++++++ kiwi.tar.bz2 ++++++
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/kiwi/kiwi.pl new/kiwi/kiwi.pl
--- old/kiwi/kiwi.pl 2007-09-17 16:49:39.000000000 +0200
+++ new/kiwi/kiwi.pl 2007-09-18 11:59:00.000000000 +0200
@@ -779,6 +779,7 @@
print "Image Preparation/Creation:\n";
print " kiwi -p | --prepare <image-path>\n";
print " [ --base-root <base-path> ]\n";
+ print " [ --add-profile <profile-name> ]\n";
print " kiwi -c | --create <image-root>\n";
print " [ --base-root <base-path> ]\n";
print "Image Upgrade:\n";
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 2007-09-14 15:17:38.000000000 +0200
+++ new/kiwi/modules/KIWIBoot.pm 2007-09-18 11:44:16.000000000 +0200
@@ -991,7 +991,10 @@
# Import grub stages
#------------------------------------------
my $stages = "'usr/lib/grub/*'";
+ my $message= "'image/loader/message'";
$kiwi -> info ("Importing grub stages for VM boot");
+ $status = qx (gzip -cd $initrd | (cd $tmpdir && cpio -d -i $message 2>&1));
+ $status = qx ( mv $tmpdir/$message $tmpdir/boot/message 2>&1 );
$status = qx (gzip -cd $initrd | (cd $tmpdir && cpio -d -i $stages 2>&1));
$status = qx ( mv $tmpdir/usr/lib/grub/* $tmpdir/boot/grub 2>&1 );
$result = $? >> 8;
@@ -1015,7 +1018,7 @@
print FD "color cyan/blue white/blue\n";
print FD "default 0\n";
print FD "timeout 10\n";
- print FD "gfxmenu (hd0,0)/image/loader/message\n";
+ print FD "gfxmenu (hd0,0)/boot/message\n";
print FD "\n";
print FD "title KIWI VM boot\n";
print FD " root (hd0,0)\n";
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/kiwi/modules/KIWIConfig.sh new/kiwi/modules/KIWIConfig.sh
--- old/kiwi/modules/KIWIConfig.sh 2007-09-14 15:18:08.000000000 +0200
+++ new/kiwi/modules/KIWIConfig.sh 2007-09-18 13:58:26.000000000 +0200
@@ -205,6 +205,13 @@
}
#======================================
+# baseGetProfilesUsed
+#--------------------------------------
+function baseGetProfilesUsed {
+ echo $profiles
+}
+
+#======================================
# baseCleanMount
#--------------------------------------
function baseCleanMount {
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/kiwi/modules/KIWIPattern.pm new/kiwi/modules/KIWIPattern.pm
--- old/kiwi/modules/KIWIPattern.pm 2007-09-14 15:17:38.000000000 +0200
+++ new/kiwi/modules/KIWIPattern.pm 2007-09-18 14:05:36.000000000 +0200
@@ -268,7 +268,7 @@
my $this = shift;
my $pattref = shift;
my $kiwi = $this->{kiwi};
- my $pattype = $this->{patpactype};
+ my $pattype = $this->{pattype};
my @pattern = @{$pattref};
my @patdata = $this -> getPatternContents (\@pattern);
my @reqs;
@@ -315,7 +315,7 @@
#------------------------------------------
sub getPackages {
my $this = shift;
- my $pattype = $this->{pattype};
+ my $pattype = $this->{patpactype};
my %result;
my @reqs = $this -> getRequiredPatterns ($this->{pattern});
my @pacs;
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/kiwi/.revision new/kiwi/.revision
--- old/kiwi/.revision 2007-09-17 16:53:01.000000000 +0200
+++ new/kiwi/.revision 2007-09-18 14:16:03.000000000 +0200
@@ -1 +1 @@
-623
\ No newline at end of file
+626
\ No newline at end of file
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
---------------------------------------------------------------------
To unsubscribe, e-mail: opensuse-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: opensuse-commit+help@xxxxxxxxxxxx
| < Previous | Next > |