[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH v5 08/13] TestSupport.pm: introduce iso_gen_flags_basic
... which returns the flags that can be passed to xorriso to create a bootable image (not EFI capable though). Signed-off-by: Wei Liu <wei.liu2@xxxxxxxxxx> Acked-by: Ian Jackson <ian.jackson@xxxxxxxxxxxxx> --- Osstest/TestSupport.pm | 10 ++++++++++ ts-redhat-install | 7 +------ 2 files changed, 11 insertions(+), 6 deletions(-) diff --git a/Osstest/TestSupport.pm b/Osstest/TestSupport.pm index 1b90d17..82d3baa 100644 --- a/Osstest/TestSupport.pm +++ b/Osstest/TestSupport.pm @@ -103,6 +103,7 @@ BEGIN { iso_create_xorriso iso_create_empty + iso_gen_flags_basic guest_editconfig_nocd ); %EXPORT_TAGS = ( ); @@ -1919,6 +1920,15 @@ sub iso_create_empty($$$) { iso_create_xorriso($ho, $emptyiso, $emptydir, 60, @isogen_opts); } +sub iso_gen_flags_basic() { + return qw(-as mkisofs -R -J + -b isolinux/isolinux.bin + -c isolinux/boot.cat + -no-emul-boot + -boot-load-size 4 + -boot-info-table); +} + sub guest_editconfig_nocd ($$) { my ($gho,$emptyiso) = @_; guest_editconfig($gho->{Host}, $gho, sub { diff --git a/ts-redhat-install b/ts-redhat-install index 88fec62..01e3615 100755 --- a/ts-redhat-install +++ b/ts-redhat-install @@ -125,12 +125,7 @@ sub prep () { iso_create_empty($ho, $emptyiso, $emptydir); - my @isogen= qw(-as mkisofs -R -J - -b isolinux/isolinux.bin - -c isolinux/boot.cat - -no-emul-boot - -boot-load-size 4 - -boot-info-table); + my @isogen= iso_gen_flags_basic(); more_prepareguest_hvm($ho,$gho, $ram_mb, $disk_mb, OnReboot => 'preserve', -- 1.7.10.4 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |