[OE-core] [PATCH] bootimg bbclass: quoting fixes

Koen Kooi koen at dominion.thruhere.net
Tue Feb 28 17:04:41 UTC 2012


Op 28 feb. 2012, om 17:48 heeft Saul Wold het volgende geschreven:

> On 02/28/2012 07:50 AM, Koen Kooi wrote:
>> Signed-off-by: Koen Kooi<koen at dominion.thruhere.net>
>> ---
>>  meta/classes/bootimg.bbclass |    4 ++--
>>  1 files changed, 2 insertions(+), 2 deletions(-)
>> 
>> diff --git a/meta/classes/bootimg.bbclass b/meta/classes/bootimg.bbclass
>> index 1d1a3d0..c4a4c2a 100644
>> --- a/meta/classes/bootimg.bbclass
>> +++ b/meta/classes/bootimg.bbclass
>> @@ -35,8 +35,8 @@ ISODIR = "${S}/iso"
>>  BOOTIMG_VOLUME_ID   ?= "boot"
>>  BOOTIMG_EXTRA_SPACE ?= "512"
>> 
>> -EFI = ${@base_contains("MACHINE_FEATURES", "efi", "1", "0", d)}
>> -EFI_CLASS = ${@base_contains("MACHINE_FEATURES", "efi", "grub-efi", "dummy", d)}
>> +EFI = '${@base_contains("MACHINE_FEATURES", "efi", "1", "0", d)}'
>> +EFI_CLASS = '${@base_contains("MACHINE_FEATURES", "efi", "grub-efi", "dummy", d)}'
>> 
>>  # Include legacy boot if MACHINE_FEATURES includes "pcbios" or if it does not
>>  # contain "efi". This way legacy is supported by default if neither is
> This actually needs more changes, see my patch.

Indeed, I resorted to using 'rm' for fix quoting issues :)



More information about the Openembedded-core mailing list