search for: firstbootzip

Displaying 3 results from an estimated 3 matches for "firstbootzip".

Did you mean: firstboot_op
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
...#39;> > > <path>windows/rhsrvany.exe</path> @@ -94,8 +103,8 @@ > > <app os='windows' name='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 viosto...
2010 May 06
1
[PATCH v2v] Pre-convert Windows guests.
...ath = $g->case_sensitive_path ($path); + + my ($app, $depnames) = + $config->match_app ($desc, "firstboot", $desc->{arch}); + $app = $self->_transfer_path ($app); + $g->cp ($app, $path); + + ($app, $depnames) = + $config->match_app ($desc, "firstbootzip", $desc->{arch}); + $app = $self->_transfer_path ($app); + $g->cp ($app, $path); +} + +# Get full, local path of a file on the transfer mount +sub _transfer_path +{ + my $self = shift; + + my ($path) = @_; + + $self->_ensure_transfer_mounted(); + + return File::Sp...