From: Richard Purdie <richard.purdie@linuxfoundation.org>
To: Patches and discussions about the oe-core layer
<openembedded-core@lists.openembedded.org>
Cc: Graham Gower <graham.gower@gmail.com>
Subject: Re: opkg: Update svn 625 -> 633 and fix preinst issues
Date: Sat, 17 Dec 2011 11:52:25 +0000 [thread overview]
Message-ID: <1324122745.4568.136.camel@ted> (raw)
In-Reply-To: <20111217103429.GG3997@jama.jama.net>
On Sat, 2011-12-17 at 11:34 +0100, Martin Jansa wrote:
> On Sat, Dec 17, 2011 at 10:22:01AM +0000, Richard Purdie wrote:
> > On Sat, 2011-12-17 at 10:20 +0100, Martin Jansa wrote:
> > > On Sat, Dec 17, 2011 at 01:32:28AM +0000, Richard Purdie wrote:
> > > I've tried to build image with SRCREV=633 and it built image fine
> > > then I tried to apply your patch but without installorder.patch to
> > > confirm that the issue with circular depending packages is really cause
> > > by that only and then try to fix installorder.patch to work even with
> > > such packages, but I got many postinst errors :(.
> > >
> > > From your description I understood that postinst execution should be
> > > almost the same only more logic is moved from rootfs_ipk.bbclass to opkg
> > > itself.
> > >
> > > | Collected errors:
> > > | * pkg_run_script: package "pam-plugin-unix" postinst script returned status 1.
> > > | * opkg_configure: pam-plugin-unix.postinst returned 1.
> > > | * pkg_run_script: package "pango-module-basic-x" postinst script returned status 1.
> > > | * opkg_configure: pango-module-basic-x.postinst returned 1.
> > > | * pkg_run_script: package "pango-module-basic-fc" postinst script returned status 1.
> > > | * opkg_configure: pango-module-basic-fc.postinst returned 1.
> > > | * pkg_run_script: package "update-modules" postinst script returned status 1.
> > > | * opkg_configure: update-modules.postinst returned 1.
> > > | * pkg_run_script: package "gdk-pixbuf-loader-png" postinst script returned status 1.
> > > | * opkg_configure: gdk-pixbuf-loader-png.postinst returned 1.
> > > | * pkg_run_script: package "gdk-pixbuf-loader-jpeg" postinst script returned status 1.
> > > | * opkg_configure: gdk-pixbuf-loader-jpeg.postinst returned 1.
> > > | * pkg_run_script: package "liberation-fonts" postinst script returned status 1.
> > > | * opkg_configure: liberation-fonts.postinst returned 1.
> > > | * pkg_run_script: package "gdk-pixbuf-loader-xpm" postinst script returned status 1.
> > > | * opkg_configure: gdk-pixbuf-loader-xpm.postinst returned 1.
> > > | * pkg_run_script: package "gdk-pixbuf-loader-gif" postinst script returned status 1.
> > > | * opkg_configure: gdk-pixbuf-loader-gif.postinst returned 1.
> > > | * pkg_run_script: package "ppp" postinst script returned status 1.
> > > | * opkg_configure: ppp.postinst returned 1.
> > > | * pkg_run_script: package "ttf-dejavu-common" postinst script returned status 127.
> > > | * opkg_configure: ttf-dejavu-common.postinst returned 127.
> > > | * pkg_run_script: package "ttf-dejavu-sans" postinst script returned status 127.
> > > | * opkg_configure: ttf-dejavu-sans.postinst returned 127.
> > > | * pkg_run_script: package "ffalarms" postinst script returned status 127.
> > > | * opkg_configure: ffalarms.postinst returned 127.
> > > | * pkg_run_script: package "rsyslog" postinst script returned status 1.
> > > | * opkg_configure: rsyslog.postinst returned 1.
> > > | * pkg_run_script: package "ttf-dejavu-sans-mono" postinst script returned status 127.
> > > | * opkg_configure: ttf-dejavu-sans-mono.postinst returned 127.
> > > | * pkg_run_script: package "matchbox-keyboard-im" postinst script returned status 1.
> > > | * opkg_configure: matchbox-keyboard-im.postinst returned 1.
> > > | * pkg_run_script: package "hicolor-icon-theme" postinst script returned status 1.
> > > | * opkg_configure: hicolor-icon-theme.postinst returned 1.
> > > | * pkg_run_script: packaERROR: Function 'do_rootfs' failed (see /OE/shr-core/tmp-eglibc/work/qemuarm-oe-linux-gnueabi/shr-l
> > > ite-image/2.0-r20/temp/log.do_rootfs.10063 for further information)
> > > | ge "ttf-liberation-mono" postinst script returned status 127.
> > > | * opkg_configure: ttf-liberation-mono.postinst returned 127.
> > > | * pkg_run_script: package "gtk-immodule-xim" postinst script returned status 1.
> > > | * opkg_configure: gtk-immodule-xim.postinst returned 1.
> > > | * pkg_run_script: package "ca-certificates" postinst script returned status 1.
> > > | * opkg_configure: ca-certificates.postinst returned 1.
> > > NOTE: package shr-lite-image-2.0-r20: task do_rootfs: Failed
> > > ERROR: Task 9 (/OE/shr-core/meta-smartphone/meta-shr/recipes-shr/images/shr-lite-image.bb, do_rootfs) failed with exit code '
> > > 1'
> >
> > This looks like you don't have the offline_postinstall patch applied?
>
> I have
Please double check. That patch does things like:
Index: trunk/libopkg/pkg.c
===================================================================
--- trunk.orig/libopkg/pkg.c 2011-12-15 15:58:39.000000000 +0000
+++ trunk/libopkg/pkg.c 2011-12-15 20:04:50.109992736 +0000
@@ -1297,8 +1297,9 @@
free(cmd);
if (err) {
- opkg_msg(ERROR, "package \"%s\" %s script returned status %d.\n",
- pkg->name, script, err);
+ if (!conf->offline_root)
+ opkg_msg(ERROR, "package \"%s\" %s script returned status %d.\n",
+ pkg->name, script, err);
return err;
}
and these are clearly showing up as ERRORs above. This means that:
a) offline_root isn't set (extremely unlikely for do_rootfs to work)
b) the patch isn't applied
> > opkg revision 633 will not build correct metadata without the patches
> > included.
>
> Only patch not included in my opkg build was the installorder one.
I have my doubts about this, sorry...
> > > > The question is whether circular depends are something opkg should
> > > > support or not? What's debian's behaviour in that regard?
> > >
> > > Well, it did work before and from quick search it looks that such circular dependencies are
> > > quite common in our metadata.
> >
> > Do you have some examples? I couldn't find any in OE-Core?
>
> I'll try.
>
> > > So I agree that this patch is really needed to fix dbus owner,
> > > but in case there is circular dependency we shouldn't be so strict about order of installs.
> >
> > So how you you handle A depends on B which depends on A and be strict
> > about dependency order?
>
> The problem with dbus/base-passwd can be fixed by this patch, but for
> fsogsmd* modules the order is not so important, so I think that when there
> is circular dependency detected the order _shouldn't_ be so strict and
> maybe warning can be shown, but it shouldn't be fatal.
Looking at fsogsmd, that specific packages split doesn't really make
sense. fsogsmd depends on fsogsmd-connman and fsogsmd-connman depends on
fsogsmd. This means that both or neither can be installed but never
either of them singly so the split is just a waste of space.
I agree we need to improve that patch to detect loops but I'm not sure a
warning makes sense as we can't tell the difference between a case where
we don't care and a case where the resulting image is corrupt...
Cheers,
Richard
next prev parent reply other threads:[~2011-12-17 11:59 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-12-15 21:08 opkg: Update svn 625 -> 633 and fix preinst issues Richard Purdie
2011-12-17 1:16 ` Martin Jansa
2011-12-17 1:32 ` Richard Purdie
2011-12-17 9:20 ` Martin Jansa
2011-12-17 10:22 ` Richard Purdie
2011-12-17 10:34 ` Martin Jansa
2011-12-17 11:52 ` Richard Purdie [this message]
2011-12-17 15:47 ` Martin Jansa
2011-12-18 11:00 ` Martin Jansa
2011-12-18 11:44 ` Andreas Müller
2011-12-18 12:09 ` Martin Jansa
2011-12-18 23:59 ` Richard Purdie
2011-12-19 5:54 ` Martin Jansa
2011-12-19 8:04 ` [PATCH] opkg: add patch to make sure that D is empty when executing postinst scripts on target Martin Jansa
2011-12-18 10:37 ` opkg: Update svn 625 -> 633 and fix preinst issues Enrico Scholz
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1324122745.4568.136.camel@ted \
--to=richard.purdie@linuxfoundation.org \
--cc=graham.gower@gmail.com \
--cc=openembedded-core@lists.openembedded.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.