All the mail mirrored from lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] slugos-image: fix opkg-cl hanging on installing device tables
@ 2010-05-09  1:24 Henry von Tresckow
  2010-05-09  2:00 ` Khem Raj
  2010-05-10  2:12 ` Mike Westerhof
  0 siblings, 2 replies; 5+ messages in thread
From: Henry von Tresckow @ 2010-05-09  1:24 UTC (permalink / raw
  To: openembedded-devel

opkg-cl was hanging during slugos image builds due to opkg-cl waiting for an answer for overwriting the device tables.
adding " -force-defaults" to IPKG_ARGS allows the image to build

Signed-off-by: Henry von Tresckow <hvontres@gmail.com>
---
 recipes/images/slugos-image.inc |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/recipes/images/slugos-image.inc b/recipes/images/slugos-image.inc
index 6a4b7b9..809459c 100644
--- a/recipes/images/slugos-image.inc
+++ b/recipes/images/slugos-image.inc
@@ -23,3 +23,5 @@ IMAGE_LINGUAS = ""
 IMAGE_PREPROCESS_COMMAND += "rm -f ${IMAGE_ROOTFS}/boot/?Image*;"
 
 inherit image
+
+IPKG_ARGS += " -force-default"
\ No newline at end of file
-- 
1.6.3.3




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

* Re: [PATCH] slugos-image: fix opkg-cl hanging on installing device tables
  2010-05-09  1:24 [PATCH] slugos-image: fix opkg-cl hanging on installing device tables Henry von Tresckow
@ 2010-05-09  2:00 ` Khem Raj
  2010-05-09  2:36   ` Hans Henry von Tresckow
  2010-05-10  2:12 ` Mike Westerhof
  1 sibling, 1 reply; 5+ messages in thread
From: Khem Raj @ 2010-05-09  2:00 UTC (permalink / raw
  To: openembedded-devel

On (08/05/10 18:24), Henry von Tresckow wrote:
> opkg-cl was hanging during slugos image builds due to opkg-cl waiting for an answer for overwriting the device tables.
> adding " -force-defaults" to IPKG_ARGS allows the image to build
> 
> Signed-off-by: Henry von Tresckow <hvontres@gmail.com>
> ---
>  recipes/images/slugos-image.inc |    2 ++
>  1 files changed, 2 insertions(+), 0 deletions(-)
> 
> diff --git a/recipes/images/slugos-image.inc b/recipes/images/slugos-image.inc
> index 6a4b7b9..809459c 100644
> --- a/recipes/images/slugos-image.inc
> +++ b/recipes/images/slugos-image.inc
> @@ -23,3 +23,5 @@ IMAGE_LINGUAS = ""
>  IMAGE_PREPROCESS_COMMAND += "rm -f ${IMAGE_ROOTFS}/boot/?Image*;"
>  
>  inherit image
> +
> +IPKG_ARGS += " -force-default"

hmm when I look at the sources of opkg in .dev I dont see -force-default option
am I missing something. 

-Khem



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

* Re: [PATCH] slugos-image: fix opkg-cl hanging on installing device tables
  2010-05-09  2:00 ` Khem Raj
@ 2010-05-09  2:36   ` Hans Henry von Tresckow
  0 siblings, 0 replies; 5+ messages in thread
From: Hans Henry von Tresckow @ 2010-05-09  2:36 UTC (permalink / raw
  To: openembedded-devel

On Sat, May 8, 2010 at 7:00 PM, Khem Raj <raj.khem@gmail.com> wrote:

> On (08/05/10 18:24), Henry von Tresckow wrote:
> > opkg-cl was hanging during slugos image builds due to opkg-cl waiting for
> an answer for overwriting the device tables.
> > adding " -force-defaults" to IPKG_ARGS allows the image to build
> >
> > Signed-off-by: Henry von Tresckow <hvontres@gmail.com>
> > ---
> >  recipes/images/slugos-image.inc |    2 ++
> >  1 files changed, 2 insertions(+), 0 deletions(-)
> >
> > diff --git a/recipes/images/slugos-image.inc
> b/recipes/images/slugos-image.inc
> > index 6a4b7b9..809459c 100644
> > --- a/recipes/images/slugos-image.inc
> > +++ b/recipes/images/slugos-image.inc
> > @@ -23,3 +23,5 @@ IMAGE_LINGUAS = ""
> >  IMAGE_PREPROCESS_COMMAND += "rm -f ${IMAGE_ROOTFS}/boot/?Image*;"
> >
> >  inherit image
> > +
> > +IPKG_ARGS += " -force-default"
>
> hmm when I look at the sources of opkg in .dev I dont see -force-default
> option
> am I missing something.
>
> -Khem


I think slugos still uses an older version of opkg:

slugos:

 henry@FozzieBear:~/oe/slug/tmp/work/nslu2be-linux-gnueabi/slugos-image-1.0-r1/slugos-image-1.0$
opkg-cl --version
 opkg version 0.1.6

angstrom:
henry@FozzieBear:~/oe/dev/tmp/work/poodle-angstrom-linux-gnueabi/console-image-1.0-r0/console-image-1.0$
opkg-cl --version
opkg version 0.1.8



>
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
>



-- 
Henry von Tresckow (hvontres)


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

* Re: [PATCH] slugos-image: fix opkg-cl hanging on installing device tables
  2010-05-09  1:24 [PATCH] slugos-image: fix opkg-cl hanging on installing device tables Henry von Tresckow
  2010-05-09  2:00 ` Khem Raj
@ 2010-05-10  2:12 ` Mike Westerhof
  2010-05-10  3:30   ` Hans Henry von Tresckow
  1 sibling, 1 reply; 5+ messages in thread
From: Mike Westerhof @ 2010-05-10  2:12 UTC (permalink / raw
  To: openembedded-devel

Henry von Tresckow wrote:
> opkg-cl was hanging during slugos image builds due to opkg-cl waiting for an answer for overwriting the device tables.
> adding " -force-defaults" to IPKG_ARGS allows the image to build

This is fixing a symptom, not the real problem.  I've just committed a
SlugOS-specific fix that dodges this problem, so I don't recommend we
apply this.  Specifically, we *do* want to know if we're overwriting a
config file while building the rootfs so that we can use a
PREFERRED_PROVIDER or similar mechanism to select the correct one.

The root cause is the original commit a week or two ago that incorrectly
changed the handling of the device_table file.

The "fix" I committed "backs out" one line of that bad commit in a
SlugOS-specific recipe -- which isn't a fix, but at least it gets SlugOS
building again, is no worse than things were originally, and it affects
no other distros.

-Mike (mwester)

> Signed-off-by: Henry von Tresckow <hvontres@gmail.com>
> ---
>  recipes/images/slugos-image.inc |    2 ++
>  1 files changed, 2 insertions(+), 0 deletions(-)
> 
> diff --git a/recipes/images/slugos-image.inc b/recipes/images/slugos-image.inc
> index 6a4b7b9..809459c 100644
> --- a/recipes/images/slugos-image.inc
> +++ b/recipes/images/slugos-image.inc
> @@ -23,3 +23,5 @@ IMAGE_LINGUAS = ""
>  IMAGE_PREPROCESS_COMMAND += "rm -f ${IMAGE_ROOTFS}/boot/?Image*;"
>  
>  inherit image
> +
> +IPKG_ARGS += " -force-default"
> \ No newline at end of file




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

* Re: [PATCH] slugos-image: fix opkg-cl hanging on installing device tables
  2010-05-10  2:12 ` Mike Westerhof
@ 2010-05-10  3:30   ` Hans Henry von Tresckow
  0 siblings, 0 replies; 5+ messages in thread
From: Hans Henry von Tresckow @ 2010-05-10  3:30 UTC (permalink / raw
  To: openembedded-devel

On Sun, May 9, 2010 at 7:12 PM, Mike Westerhof <mike@mwester.net> wrote:

> Henry von Tresckow wrote:
> > opkg-cl was hanging during slugos image builds due to opkg-cl waiting for
> an answer for overwriting the device tables.
> > adding " -force-defaults" to IPKG_ARGS allows the image to build
>
> This is fixing a symptom, not the real problem.  I've just committed a
> SlugOS-specific fix that dodges this problem, so I don't recommend we
> apply this.  Specifically, we *do* want to know if we're overwriting a
> config file while building the rootfs so that we can use a
> PREFERRED_PROVIDER or similar mechanism to select the correct one.
>
> The root cause is the original commit a week or two ago that incorrectly
> changed the handling of the device_table file.
>
> The "fix" I committed "backs out" one line of that bad commit in a
> SlugOS-specific recipe -- which isn't a fix, but at least it gets SlugOS
> building again, is no worse than things were originally, and it affects
> no other distros.
>
> -Mike (mwester)
>
>
Thanks for fixing this.
-- 
Henry von Tresckow (hvontres)


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

end of thread, other threads:[~2010-05-10  3:34 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-05-09  1:24 [PATCH] slugos-image: fix opkg-cl hanging on installing device tables Henry von Tresckow
2010-05-09  2:00 ` Khem Raj
2010-05-09  2:36   ` Hans Henry von Tresckow
2010-05-10  2:12 ` Mike Westerhof
2010-05-10  3:30   ` Hans Henry von Tresckow

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.