From 2b84fbbe3ab24d3d93e970abff6e220bcd525230 Mon Sep 17 00:00:00 2001 From: jbjohnso Date: Fri, 31 Oct 2008 13:30:00 +0000 Subject: [PATCH] -Add physical device support for xen (from Mike Lovell) git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@2433 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-server/lib/xcat/plugins/xen.pm | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/xCAT-server/lib/xcat/plugins/xen.pm b/xCAT-server/lib/xcat/plugins/xen.pm index 5332d4b8a..192b11e3b 100644 --- a/xCAT-server/lib/xcat/plugins/xen.pm +++ b/xCAT-server/lib/xcat/plugins/xen.pm @@ -105,9 +105,17 @@ sub build_diskstruct { my $disklocs=$vmhash->{$node}->[0]->{storage}; my @locations=split /\|/,$disklocs; foreach (@locations) { + my $disk = $_; + my $disktype = substr($disk, 0, 3): $currdev='hd'.$suffixes[$suffidx++]; - $diskhash->{type}='file'; - $diskhash->{source}->{file}=$_; #"/vms/$node"; + if ($disktype eq "phy") { + my $diskdev = substr($disk, 4); + $diskhash->{type}='dev'; + $diskhash->{source}->{dev}=$diskdev; + } else { + $diskhash->{type}='file'; + $diskhash->{source}->{file}=$_; + } $diskhash->{target}->{dev}=$currdev; push @returns,$diskhash; }