All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] buildtools-tarball: add wic dependency into buildtools
@ 2020-11-19  0:48 Changqing Li
  2020-11-20 11:07 ` [OE-core] " Richard Purdie
  0 siblings, 1 reply; 3+ messages in thread
From: Changqing Li @ 2020-11-19  0:48 UTC (permalink / raw)
  To: openembedded-core

fix below error:
wic ls ./core-image-minimal-intel-x86-64.wic

ERROR: Can't find executable parted

wic depend on some tools like parted/mtools/..., and we have those
tools in native_sysroot. so above problem can be avoided by
run command like wic ls imagename.wic --native-sysroot <path>

but this cannot cover condition that usr don't have build the
image, the image just copy from somewhere.

Signed-off-by: Changqing Li <changqing.li@windriver.com>
---
 meta/recipes-core/meta/buildtools-tarball.bb | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/meta/recipes-core/meta/buildtools-tarball.bb b/meta/recipes-core/meta/buildtools-tarball.bb
index 560b8d67b9..7783fabbf2 100644
--- a/meta/recipes-core/meta/buildtools-tarball.bb
+++ b/meta/recipes-core/meta/buildtools-tarball.bb
@@ -29,6 +29,9 @@ TOOLCHAIN_HOST_TASK ?= "\
     nativesdk-rpcsvc-proto \
     nativesdk-patch \
     nativesdk-mtools \
+    nativesdk-parted \
+    nativesdk-dosfstools \
+    nativesdk-gptfdisk \
     "
 
 MULTIMACH_TARGET_SYS = "${SDK_ARCH}-nativesdk${SDK_VENDOR}-${SDK_OS}"
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [OE-core] [PATCH] buildtools-tarball: add wic dependency into buildtools
  2020-11-19  0:48 [PATCH] buildtools-tarball: add wic dependency into buildtools Changqing Li
@ 2020-11-20 11:07 ` Richard Purdie
  2020-11-25  0:47   ` Changqing Li
  0 siblings, 1 reply; 3+ messages in thread
From: Richard Purdie @ 2020-11-20 11:07 UTC (permalink / raw)
  To: Changqing Li, openembedded-core

On Thu, 2020-11-19 at 08:48 +0800, Changqing Li wrote:
> fix below error:
> wic ls ./core-image-minimal-intel-x86-64.wic
> 
> ERROR: Can't find executable parted
> 
> wic depend on some tools like parted/mtools/..., and we have those
> tools in native_sysroot. so above problem can be avoided by
> run command like wic ls imagename.wic --native-sysroot <path>
> 
> but this cannot cover condition that usr don't have build the
> image, the image just copy from somewhere.
> 
> Signed-off-by: Changqing Li <changqing.li@windriver.com>
> ---
>  meta/recipes-core/meta/buildtools-tarball.bb | 3 +++
>  1 file changed, 3 insertions(+)
> 
> diff --git a/meta/recipes-core/meta/buildtools-tarball.bb
> b/meta/recipes-core/meta/buildtools-tarball.bb
> index 560b8d67b9..7783fabbf2 100644
> --- a/meta/recipes-core/meta/buildtools-tarball.bb
> +++ b/meta/recipes-core/meta/buildtools-tarball.bb
> @@ -29,6 +29,9 @@ TOOLCHAIN_HOST_TASK ?= "\
>      nativesdk-rpcsvc-proto \
>      nativesdk-patch \
>      nativesdk-mtools \
> +    nativesdk-parted \
> +    nativesdk-dosfstools \
> +    nativesdk-gptfdisk \
>      "

These sound more like something which would be in buildtools-extended-
tarball. Our rough metric for inclusion in this recipe is whether the
tools are needed by an OE build and these are not, they're only needed
for standalone wic usage. I'm therefore unsure whether we should be
adding them at all.

Any other opinions?

Cheers,
Richard


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [OE-core] [PATCH] buildtools-tarball: add wic dependency into buildtools
  2020-11-20 11:07 ` [OE-core] " Richard Purdie
@ 2020-11-25  0:47   ` Changqing Li
  0 siblings, 0 replies; 3+ messages in thread
From: Changqing Li @ 2020-11-25  0:47 UTC (permalink / raw)
  To: Richard Purdie, openembedded-core


On 20/11/20 7:07 pm, Richard Purdie wrote:
> [Please note this e-mail is from an EXTERNAL e-mail address]
>
> On Thu, 2020-11-19 at 08:48 +0800, Changqing Li wrote:
>> fix below error:
>> wic ls ./core-image-minimal-intel-x86-64.wic
>>
>> ERROR: Can't find executable parted
>>
>> wic depend on some tools like parted/mtools/..., and we have those
>> tools in native_sysroot. so above problem can be avoided by
>> run command like wic ls imagename.wic --native-sysroot <path>
>>
>> but this cannot cover condition that usr don't have build the
>> image, the image just copy from somewhere.
>>
>> Signed-off-by: Changqing Li <changqing.li@windriver.com>
>> ---
>>   meta/recipes-core/meta/buildtools-tarball.bb | 3 +++
>>   1 file changed, 3 insertions(+)
>>
>> diff --git a/meta/recipes-core/meta/buildtools-tarball.bb
>> b/meta/recipes-core/meta/buildtools-tarball.bb
>> index 560b8d67b9..7783fabbf2 100644
>> --- a/meta/recipes-core/meta/buildtools-tarball.bb
>> +++ b/meta/recipes-core/meta/buildtools-tarball.bb
>> @@ -29,6 +29,9 @@ TOOLCHAIN_HOST_TASK ?= "\
>>       nativesdk-rpcsvc-proto \
>>       nativesdk-patch \
>>       nativesdk-mtools \
>> +    nativesdk-parted \
>> +    nativesdk-dosfstools \
>> +    nativesdk-gptfdisk \
>>       "
> These sound more like something which would be in buildtools-extended-
> tarball. Our rough metric for inclusion in this recipe is whether the
> tools are needed by an OE build and these are not, they're only needed
> for standalone wic usage. I'm therefore unsure whether we should be
> adding them at all.
>
> Any other opinions?
>
> Cheers,
> Richard

ok. I will send a v2 to add them into buildtools-extended-tarbal.  Thanks.

changqing

>

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2020-11-25  0:47 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-19  0:48 [PATCH] buildtools-tarball: add wic dependency into buildtools Changqing Li
2020-11-20 11:07 ` [OE-core] " Richard Purdie
2020-11-25  0:47   ` Changqing Li

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.