Discussion:
[Sisuite-devel] [Fwd: [systemimager-commits] r4041 - branches/3.9.x/sbin]
Andrea Righi
2007-04-27 14:14:47 UTC
Permalink
FYI si_mkautoinstalldisk is broken in 3.9.0... it seems that we
should tag 3.9.1 soon (see also the minix initrd bug).

Fortunately this bug is not present in 3.8.1, so we don't need to tag
a new stable yet.

-Andrea

-------- Original Message --------
Subject: [systemimager-commits] r4041 - branches/3.9.x/sbin
Date: Fri, 27 Apr 2007 09:05:51 -0500
From: ***@systemimager.ci.uchicago.edu
Reply-To: sisuite-***@lists.sourceforge.net
To: systemimager-***@lists.sourceforge.net

Author: arighi
Date: 2007-04-27 09:05:51 -0500 (Fri, 27 Apr 2007)
New Revision: 4041

Modified:
branches/3.9.x/sbin/si_mkautoinstalldisk
Log:
This commit is a merge from trunk -> 3.9.x:
svn merge -r 4038:4039 svn://svn.systemimager.org/var/lib/svn/systemimager/trunk .

Original commit message:
- fix: remove $local_cfg undefined reference that breaks
si_mkautoinstalldisk.


Modified: branches/3.9.x/sbin/si_mkautoinstalldisk
===================================================================
--- branches/3.9.x/sbin/si_mkautoinstalldisk 2007-04-27 14:05:44 UTC (rev 4040)
+++ branches/3.9.x/sbin/si_mkautoinstalldisk 2007-04-27 14:05:51 UTC (rev 4041)
@@ -201,7 +201,7 @@
# Copy boot stuff to the device.
eval {
SystemImager::Server->copy_boot_files_to_boot_media(
- $kernel, $initrd, $local_cfg, $arch,
+ $kernel, $initrd, undef, $arch,
$mnt_dir, $append);
};
if ($@) {

Loading...