Mike Brady wrote:
> Andrea,
> 
> Distro is openSUSE 10.2
> 

Maybe in openSUSE 10.2 for some strange reasons they changed the parted
output...

Anyway could you try if the following patch works? if it fix the flags
problem I'll check it into the 3.8.1 release...

Regards,
-Andrea

PS 3.8.1 will support also cpio initrds so also your other problem
should be fixed.

===================================================================
--- lib/SystemImager/Common.pm  (revision 3987)
+++ lib/SystemImager/Common.pm  (working copy)
@@ -589,6 +589,9 @@
                         #
                         $leftovers =~ s/^$fs_regex//go;

+                        # Get rid of empty elements in the flags output. -AR-
+                        $leftovers = join(',', grep /\S/, (split(/,/, 
$leftovers)));
+
                         #
                         # Extract any flags, and remove them from the 
leftovers. -BEF-
                         #
@@ -658,6 +661,9 @@
                         #
                         $leftovers =~ s/^$fs_regex//go;

+                        # Get rid of empty elements in the flags output. -AR-
+                        $leftovers = join(',', grep /\S/, (split(/,/, 
$leftovers)));
+
                         #
                         # Extract any flags, and remove them from the 
leftovers. -BEF-
                         #


-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
sisuite-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/sisuite-users

Reply via email to