Displaying 6 results from an estimated 6 matches for "firstbootapp".
Did you mean:
firstboot_op
2010 May 26
1
[PATCH] Windows: Display an error containing all missing when any are missing
...les
+ my @missing;
+ my %files;
- my ($app, $depnames) = $config->match_app ($desc, "viostor", $desc->{arch});
- $app = $config->get_transfer_path ($g, $app);
- $g->cp ($app, $driverpath);
-}
+ for my $file ("viostor", "firstboot", "firstbootapp", "rhsrvany") {
+ my ($path) = $config->match_app ($desc, $file, $desc->{arch});
+ my $local = $config->get_transfer_path ($g, $path);
+ push (@missing, $path) unless ($g->exists($local));
-sub _upload_service
-{
- my $g = shift;
- my $tmpdir...
2011 Jan 25
1
[PATCH] Fix a Windows conversion error when C:\Temp exists in the guest
...$path .= '/'.$d;
+
+ eval { $path = $g->case_sensitive_path($path) };
+
+ # case_sensitive_path will fail if the path doesn't exist
+ if ($@) {
+ $g->mkdir($path);
+ }
+ }
+
$g->cp ($files{firstboot}, $path);
$g->cp ($files{firstbootapp}, $path);
$g->cp ($files{rhsrvany}, $path);
--
1.7.3.5
2010 Aug 16
2
[PATCH 1/2] Allow absolute paths in virt-v2v.conf
This patch allows paths in virt-v2v.conf to be either relative or absolute. If
relative, they are relative to software-root.
This allows virt-v2v.conf to use files provided by packages independent of
virt-v2v.
---
lib/Sys/VirtV2V/Config.pm | 10 ++++++----
1 files changed, 6 insertions(+), 4 deletions(-)
diff --git a/lib/Sys/VirtV2V/Config.pm b/lib/Sys/VirtV2V/Config.pm
index f703152..121e774
2010 May 13
1
Emailing: 0002-use-single-registry-change-for-all-supported-windows.patch
if it works thank god for notepad2 (If it's not then be patience, I am
just a windows user).
Amos.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: 0002-use-single-registry-change-for-all-supported-windows.patch
Type: application/octet-stream
Size: 10635 bytes
Desc: not available
URL:
2010 May 16
1
FW: Emailing: 0002-use-single-registry-change-for-all-supported-windows.patch
...'firstboot'>
> > <path>windows/firstboot.bat</path>
> > </app>
> > - <app os='windows' name='firstbootzip'>
> > - <path>windows/firstboot.zip</path>
> > + <app os='windows' name='firstbootapp'>
> > + <path>windows/rhev-apt.exe</path>
> > </app>
>
> This seems fine. Do we have separate versions of viostor for all the
> versions of Windows, or are all those just the same file?
In the build system we have separate viostore for each, I...
2010 May 26
1
[PATCH] Fix error in Converter::Windows when there is no transfer iso
...epnames) =
$config->match_app ($desc, "firstboot", $desc->{arch});
- $app = _transfer_path ($transfer_mount, $app);
+ $app = $config->get_transfer_path ($g, $app);
$g->cp ($app, $path);
($app, $depnames) =
$config->match_app ($desc, "firstbootapp", $desc->{arch});
- $app = _transfer_path ($transfer_mount, $app);
+ $app = $config->get_transfer_path ($g, $app);
$g->cp ($app, $path);
($app, $depnames) =
$config->match_app ($desc, "rhsrvany", $desc->{arch});
- $app = _transfer_path ($t...