Re: [meta-virtualization] [PATCH] xen: remove STAGING_DIR_HOST from runtime path for bios.bin

2017-08-14 Thread Christopher Clark
xen: remove STAGING_DIR_HOST from the runtime search path for bios.bin

This configuration option sets a run-time search path rather
than the location of a build-time dependency.

Tested with Xen 4.9 on OpenXT.

Signed-off-by: Christopher Clark 
---
 recipes-extended/xen/xen.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/recipes-extended/xen/xen.inc b/recipes-extended/xen/xen.inc
index a28d474..6a0f226 100644
--- a/recipes-extended/xen/xen.inc
+++ b/recipes-extended/xen/xen.inc
@@ -22,7 +22,7 @@ FLASK_POLICY_FILE ?= "xenpolicy-${PV}"
 PACKAGECONFIG[sdl] = "--enable-sdl,--disable-sdl,virtual/libsdl,"
 PACKAGECONFIG[xsm] =
"--enable-xsmpolicy,--disable-xsmpolicy,checkpolicy-native,"
 PACKAGECONFIG[systemd] = "--enable-systemd,--disable-systemd,systemd,"
-PACKAGECONFIG[hvm] =
"--with-system-seabios="${STAGING_DIR_HOST}/usr/share/firmware/bios.bin",--disable-seabios,seabios
ipxe vgabios,"
+PACKAGECONFIG[hvm] =
"--with-system-seabios="/usr/share/firmware/bios.bin",--disable-seabios,seabios
ipxe vgabios,"

 DEPENDS = " \
 bison-native \

On Mon, Aug 14, 2017 at 9:05 AM, Bruce Ashfield
 wrote:
> This patch came through corrupted:
>
> [/home/bruc...ualization]> git am -s b.mbox
> Applying: xen: remove STAGING_DIR_HOST from runtime path for bios.bin
> fatal: corrupt patch at line 12
> Patch failed at 0001 xen: remove STAGING_DIR_HOST from runtime path for
> bios.bin
>
> Bruce
>
> On Wed, Aug 9, 2017 at 9:06 PM, Christopher Clark
>  wrote:
>>
>> Bug fix: this configuration option sets a run-time search path rather
>> than the location of a build-time dependency.
>>
>> Tested with Xen 4.9 on OpenXT.
>>
>> Signed-off-by: Christopher Clark 
>> ---
>>  recipes-extended/xen/xen.inc | 2 +-
>>  1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/recipes-extended/xen/xen.inc b/recipes-extended/xen/xen.inc
>> index 677ab69..274d0df 100644
>> --- a/recipes-extended/xen/xen.inc
>> +++ b/recipes-extended/xen/xen.inc
>> @@ -22,7 +22,7 @@ FLASK_POLICY_FILE ?= "xenpolicy-${PV}"
>>  PACKAGECONFIG[sdl] = "--enable-sdl,--disable-sdl,virtual/libsdl,"
>>  PACKAGECONFIG[xsm] =
>> "--enable-xsmpolicy,--disable-xsmpolicy,checkpolicy-native,"
>>  PACKAGECONFIG[systemd] = "--enable-systemd,--disable-systemd,systemd,"
>> -PACKAGECONFIG[hvm] =
>>
>> "--with-system-seabios="${STAGING_DIR_HOST}/usr/share/firmware/bios.bin",--disable-seabios,seabios
>> ipxe vgabios,"
>> +PACKAGECONFIG[hvm] =
>>
>> "--with-system-seabios="/usr/share/firmware/bios.bin",--disable-seabios,seabios
>> ipxe vgabios,"
>>
>>  DEPENDS = " \
>>  bison-native \
>> --
>> 2.7.4
>> --
>> ___
>> meta-virtualization mailing list
>> meta-virtualization@yoctoproject.org
>> https://lists.yoctoproject.org/listinfo/meta-virtualization
>
>
>
>
> --
> "Thou shalt not follow the NULL pointer, for chaos and madness await thee at
> its end"
-- 
___
meta-virtualization mailing list
meta-virtualization@yoctoproject.org
https://lists.yoctoproject.org/listinfo/meta-virtualization


Re: [meta-virtualization] [PATCH] xen: remove STAGING_DIR_HOST from runtime path for bios.bin

2017-08-14 Thread Bruce Ashfield
This patch came through corrupted:

[/home/bruc...ualization]> git am -s b.mbox
Applying: xen: remove STAGING_DIR_HOST from runtime path for bios.bin
fatal: corrupt patch at line 12
Patch failed at 0001 xen: remove STAGING_DIR_HOST from runtime path for
bios.bin

Bruce

On Wed, Aug 9, 2017 at 9:06 PM, Christopher Clark <
christopher.w.cl...@gmail.com> wrote:

> Bug fix: this configuration option sets a run-time search path rather
> than the location of a build-time dependency.
>
> Tested with Xen 4.9 on OpenXT.
>
> Signed-off-by: Christopher Clark 
> ---
>  recipes-extended/xen/xen.inc | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/recipes-extended/xen/xen.inc b/recipes-extended/xen/xen.inc
> index 677ab69..274d0df 100644
> --- a/recipes-extended/xen/xen.inc
> +++ b/recipes-extended/xen/xen.inc
> @@ -22,7 +22,7 @@ FLASK_POLICY_FILE ?= "xenpolicy-${PV}"
>  PACKAGECONFIG[sdl] = "--enable-sdl,--disable-sdl,virtual/libsdl,"
>  PACKAGECONFIG[xsm] =
> "--enable-xsmpolicy,--disable-xsmpolicy,checkpolicy-native,"
>  PACKAGECONFIG[systemd] = "--enable-systemd,--disable-systemd,systemd,"
> -PACKAGECONFIG[hvm] =
> "--with-system-seabios="${STAGING_DIR_HOST}/usr/share/
> firmware/bios.bin",--disable-seabios,seabios
> ipxe vgabios,"
> +PACKAGECONFIG[hvm] =
> "--with-system-seabios="/usr/share/firmware/bios.bin",--
> disable-seabios,seabios
> ipxe vgabios,"
>
>  DEPENDS = " \
>  bison-native \
> --
> 2.7.4
> --
> ___
> meta-virtualization mailing list
> meta-virtualization@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/meta-virtualization
>



-- 
"Thou shalt not follow the NULL pointer, for chaos and madness await thee
at its end"
-- 
___
meta-virtualization mailing list
meta-virtualization@yoctoproject.org
https://lists.yoctoproject.org/listinfo/meta-virtualization


Re: [meta-virtualization] [PATCH] xen: remove STAGING_DIR_HOST from runtime path for bios.bin

2017-08-10 Thread Doug Goldstein
On 8/9/17 8:06 PM, Christopher Clark wrote:
> Bug fix: this configuration option sets a run-time search path rather
> than the location of a build-time dependency.
> 
> Tested with Xen 4.9 on OpenXT.
> 
> Signed-off-by: Christopher Clark 
> ---
>  recipes-extended/xen/xen.inc | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/recipes-extended/xen/xen.inc b/recipes-extended/xen/xen.inc
> index 677ab69..274d0df 100644
> --- a/recipes-extended/xen/xen.inc
> +++ b/recipes-extended/xen/xen.inc
> @@ -22,7 +22,7 @@ FLASK_POLICY_FILE ?= "xenpolicy-${PV}"
>  PACKAGECONFIG[sdl] = "--enable-sdl,--disable-sdl,virtual/libsdl,"
>  PACKAGECONFIG[xsm] =
> "--enable-xsmpolicy,--disable-xsmpolicy,checkpolicy-native,"
>  PACKAGECONFIG[systemd] = "--enable-systemd,--disable-systemd,systemd,"
> -PACKAGECONFIG[hvm] =
> "--with-system-seabios="${STAGING_DIR_HOST}/usr/share/firmware/bios.bin",--disable-seabios,seabios
> ipxe vgabios,"
> +PACKAGECONFIG[hvm] =
> "--with-system-seabios="/usr/share/firmware/bios.bin",--disable-seabios,seabios
> ipxe vgabios,"
> 
>  DEPENDS = " \
>  bison-native \
> 

ACK

-- 
Doug Goldstein



signature.asc
Description: OpenPGP digital signature
-- 
___
meta-virtualization mailing list
meta-virtualization@yoctoproject.org
https://lists.yoctoproject.org/listinfo/meta-virtualization


[meta-virtualization] [PATCH] xen: remove STAGING_DIR_HOST from runtime path for bios.bin

2017-08-09 Thread Christopher Clark
Bug fix: this configuration option sets a run-time search path rather
than the location of a build-time dependency.

Tested with Xen 4.9 on OpenXT.

Signed-off-by: Christopher Clark 
---
 recipes-extended/xen/xen.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/recipes-extended/xen/xen.inc b/recipes-extended/xen/xen.inc
index 677ab69..274d0df 100644
--- a/recipes-extended/xen/xen.inc
+++ b/recipes-extended/xen/xen.inc
@@ -22,7 +22,7 @@ FLASK_POLICY_FILE ?= "xenpolicy-${PV}"
 PACKAGECONFIG[sdl] = "--enable-sdl,--disable-sdl,virtual/libsdl,"
 PACKAGECONFIG[xsm] =
"--enable-xsmpolicy,--disable-xsmpolicy,checkpolicy-native,"
 PACKAGECONFIG[systemd] = "--enable-systemd,--disable-systemd,systemd,"
-PACKAGECONFIG[hvm] =
"--with-system-seabios="${STAGING_DIR_HOST}/usr/share/firmware/bios.bin",--disable-seabios,seabios
ipxe vgabios,"
+PACKAGECONFIG[hvm] =
"--with-system-seabios="/usr/share/firmware/bios.bin",--disable-seabios,seabios
ipxe vgabios,"

 DEPENDS = " \
 bison-native \
-- 
2.7.4
-- 
___
meta-virtualization mailing list
meta-virtualization@yoctoproject.org
https://lists.yoctoproject.org/listinfo/meta-virtualization