Search
j0ke.net Open Build Service
>
Projects
>
home:netmax
:
playground
>
kiwi
> kiwi-qemu-img_dbg.diff
Sign Up
|
Log In
Username
Password
Cancel
Overview
Repositories
Revisions
Requests
Users
Advanced
Attributes
Meta
File kiwi-qemu-img_dbg.diff of Package kiwi
--- kiwi/modules/KIWIImage.pm.orig 2015-09-11 14:16:19.362798613 +0200 +++ kiwi/modules/KIWIImage.pm 2015-09-11 14:21:53.185753436 +0200 @@ -3622,7 +3622,7 @@ # loop setup a disk device as file... #------------------------------------------ unlink ($out); - my $data = qxx ("qemu-img create $out $seek 2>&1"); + my $data = qx ("/usr/bin/qemu-img create $out $seek 2>&1"); my $code = $? >> 8; if ($code != 0) { $kiwi -> error ("Couldn't create logical extend"); --- kiwi/modules/KIWIConfig.txt.orig 2015-09-11 15:22:55.824188396 +0200 +++ kiwi/modules/KIWIConfig.txt 2015-09-11 15:23:22.283981200 +0200 @@ -178,6 +178,7 @@ <file name="plymouth"/> <file name="plymouthd"/> <file name="plymouth-set-default-theme"/> + <file name="qemu-img"/> <file name="qeth_configure"/> <file name="readlink"/> <file name="reboot"/> --- kiwi/modules/KIWIQX.pm.orig 2015-09-11 14:18:13.202237752 +0200 +++ kiwi/modules/KIWIQX.pm 2015-09-11 16:24:27.102485122 +0200 @@ -98,7 +98,10 @@ #========================================== # Try to find program name in PATH #------------------------------------------ - $prog = qx (bash -c "type $prog" 2>&1); + my $path = $ENV{'PATH'}; + print $path; + + $prog = qx (bash -c "type $prog" 2>&1); my $exit = $?; my $code = $exit >> 8; if (($code != 0) || ($exit == -1)) {