All of lore.kernel.org
 help / color / mirror / Atom feed
* do_rootfs fails
@ 2007-05-11 17:45 Tom Walsh
  2007-05-11 18:07 ` Koen Kooi
  0 siblings, 1 reply; 16+ messages in thread
From: Tom Walsh @ 2007-05-11 17:45 UTC (permalink / raw)
  To: openembedded-devel

Ok, I admit it, I am totally confused by this whole "debian", 
"multimachine", "package_ipk" stuff.  I've been able to avoid 
understanding this and think that this might be why bootstrap.image 
won't build a filesystem image.

Prior to a month ago, I was using my own task + image bb files to build 
my image.  Since a lot of work has been done to make the task-base more 
generic, I have moved my project over to using the stock 
bootstrap-image.bb and task-base.bb files.  However, it fails to build 
properly.

When running a "bitbake bootstrap-image", everything builds but then 
fails with:

========= begin ============
[tom@jtag oezipit]$ bitbake bootstrap-image
NOTE: Using cache in '/home/tom/oezipit/tmp/cache/zipit'
NOTE: Handling BitBake files: \ (4534/4534) [100 %]
NOTE: Parsing finished. 4329 cached, 0 parsed, 205 skipped, 0 masked.

NOTE: build 200705111324: started

OE Build Configuration:
BB_VERSION     = "1.6.7"
OE_REVISION    = "<unknown>"
TARGET_ARCH    = "arm"
TARGET_OS      = "linux"
MACHINE        = "zipit"
DISTRO         = "zipit"
DISTRO_VERSION = "1.0"
TARGET_FPU     = "soft"

NOTE: multiple providers are available (db3, db);
NOTE: consider defining PREFERRED_PROVIDER_virtual/db
NOTE: multiple providers are available (db3-native, db-native);
NOTE: consider defining PREFERRED_PROVIDER_virtual/db-native
NOTE: package bootstrap-image-1.0: started
NOTE: package bootstrap-image-1.0-r0: task do_rootfs: started
ERROR: function do_rootfs failed
ERROR: see log in 
/home/tom/oezipit/tmp/work/zipit-linux/bootstrap-image-1.0-r0/temp/log.do_rootfs.17150
NOTE: Task failed: 
/home/tom/oezipit/tmp/work/zipit-linux/bootstrap-image-1.0-r0/temp/log.do_rootfs.17150
NOTE: package bootstrap-image-1.0-r0: task do_rootfs: failed
ERROR: TaskFailed event exception, aborting
NOTE: package bootstrap-image-1.0: failed
ERROR: Build of bootstrap-image failed
========= snip =============

When I check the logfile, it says that "sh: fakeroot: command not 
found".  This is correct, fakeroot-native has NOT been built.  So, I do 
a "bitbake -c rebuild fakeroot-native", then run "bitbake 
bootstrap-image" again.

It then fails with a logfile message of 
"/home/tom/oezipit/tmp/work/zipit-linux/bootstrap-image-1.0-r0/temp/run.do_rootfs.24175: 
line 312: ipkg-cl: command not found".  Again, this is true, ipkg-native 
is not present.  So, I do a "bitbake -c rebuild ipkg-native", then run 
"bitbake bootstrap-image" again.

Now it builds the filesystem target tarball image.

How can I automate those needs for fakeroot-native and ipkg-native?  I'm 
not sure where to look, this was working a few weeks ago.

Regards,

TomW





-- 
Tom Walsh - WN3L - Embedded Systems Consultant
http://openhardware.net http://cyberiansoftware.com http://openzipit.org
"Windows? No thanks, I have work to do..."
----------------------------------------------------





^ permalink raw reply	[flat|nested] 16+ messages in thread
* do_rootfs fails
@ 2012-07-31 10:37 Andreas Müller
  2012-07-31 10:42 ` Martin Jansa
  0 siblings, 1 reply; 16+ messages in thread
From: Andreas Müller @ 2012-07-31 10:37 UTC (permalink / raw)
  To: openembedded-core

Hi,

after long journey mending recipes I now get with latest updates:

|  * opkg_install_cmd: Cannot install package gnome-icon-theme-locale-fr.
|  * opkg_install_cmd: Cannot install package gnome-icon-theme-locale-en-gb.
|  * opkg_install_cmd: Cannot install package gnome-icon-theme-locale-de.
|  * satisfy_dependencies_for: Cannot satisfy the following
dependencies for gcc-runtime-locale-fr:
|  * 	gcc-runtime *
|  * opkg_install_cmd: Cannot install package gcc-runtime-locale-fr.
|  * satisfy_dependencies_for: Cannot satisfy the following
dependencies for gcc-runtime-locale-de:
|  * 	gcc-runtime *
|  * opkg_install_cmd: Cannot install package gcc-runtime-locale-de.

I checked:

* gnome-icon-theme-locale-* are empty
* gcc-runtime is not there

Any suggestion what causes this?

Andreas



^ permalink raw reply	[flat|nested] 16+ messages in thread
* do_rootfs fails
@ 2013-04-09  8:07 Jaap de Jong
  2013-04-09 11:37 ` Jaap de Jong
  0 siblings, 1 reply; 16+ messages in thread
From: Jaap de Jong @ 2013-04-09  8:07 UTC (permalink / raw)
  To: openembedded-devel@lists.openembedded.org

I have this problem that do_rootfs finds.
Any ideas?
Thanks!
Jaap

//
log_check: There were error messages in the logfile
log_check: Matched keyword: [Collected errors]

Configuring angstrom-packagegroup-boot.
Configuring util-linux-losetup.
Configuring util-linux.
Configuring sysvinit.
Collected errors:
  * extract_archive: Cannot create symlink from ./var/log to 
'volatile/log': File exists.
  * extract_archive: Cannot create symlink from ./var/run to 
'volatile/run': File exists.
+ '[' '!' -z '' ']'
+ package_tryout_install_multilib_ipk
+ multilib_tryout_dirs=
//

My image.bb contains:

inherit core-image

IMAGE_LOGIN_MANAGER = "tinylogin shadow"
IMAGE_DEV_MANAGER = ""
IMAGE_INIT_MANAGER = "sysvinit sysvinit-pidof"
IMAGE_INITSCRIPTS = "initscripts"

export IMAGE_BASENAME = "${PN}"

IMAGE_FEATURES += " \
     package-management \
     debug-tweaks \
"

IMAGE_INSTALL += " \
     angstrom-packagegroup-boot \
     initscripts \
     busybox-mdev \
     ca-certificates \
     dropbear \
     e2fsprogs-e2fsck \
     ntp \
     ntpdate \
     openssl \
     rsync \
     screen \
     shadow \
     mtd-utils \
     util-linux \
     watchdog \
     "




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

end of thread, other threads:[~2013-04-09 11:55 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-05-11 17:45 do_rootfs fails Tom Walsh
2007-05-11 18:07 ` Koen Kooi
2007-05-11 18:24   ` Michael Krelin
2007-05-12 21:33     ` Stelios Koroneos
2007-05-19 17:50     ` Richard Purdie
2007-05-12  0:07   ` Matthias Hentges
2007-05-12 10:28     ` Koen Kooi
2007-05-14 12:42     ` Richard Purdie
2007-05-14 22:23     ` Matthias Hentges
  -- strict thread matches above, loose matches on Subject: below --
2012-07-31 10:37 Andreas Müller
2012-07-31 10:42 ` Martin Jansa
2012-07-31 11:01   ` Andreas Müller
2012-07-31 11:21     ` Paul Eggleton
2012-07-31 11:34       ` Paul Eggleton
2013-04-09  8:07 Jaap de Jong
2013-04-09 11:37 ` Jaap de Jong

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.