From: "David Nyström" <david.nystrom@enea.com>
To: Laurentiu Palcu <laurentiu.palcu@intel.com>,
<openembedded-core@lists.openembedded.org>
Subject: Re: [PATCH v5 00/53] Rootfs/image generation refactoring (cover letter only)
Date: Tue, 11 Feb 2014 09:42:49 +0100 [thread overview]
Message-ID: <52F9E289.2080002@enea.com> (raw)
In-Reply-To: <cover.1392034327.git.laurentiu.palcu@intel.com>
On 2014-02-10 13:15, Laurentiu Palcu wrote:
> V5:
> * dump command output in case errors occur;
>
> V4:
> * fix multilib build issue for RPM backend;
>
> V3:
> * add simple check to just return if we're attempting to install packages and
> the list is empty;
>
> V2:
> * fix building from feeds for opkg;
> * rebase;
>
When stubbing license manifest creation for the FEEDS functionality:
diff --git a/meta/classes/license.bbclass b/meta/classes/license.bbclass
index c668783..a0413b9 100644
--- a/meta/classes/license.bbclass
+++ b/meta/classes/license.bbclass
@@ -26,6 +26,12 @@ python write_package_manifest() {
}
license_create_manifest() {
+ # Test if BUILD_IMAGES_FROM_FEEDS is defined in env
+ echo ${BUILD_IMAGES_FROM_FEEDS}
+ if [ -n "${BUILD_IMAGES_FROM_FEEDS}" ]; then
+ exit 0
+ fi
+
I get this error message on v5.
Br,
David
$ bitbake -c rootfs core-image-minimal
Parsing recipes: 100%
|######################################################################################################################################################################|
Time: 00:00:12
Parsing of 852 .bb files complete (0 cached, 852 parsed). 1212 targets,
56 skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies
Build Configuration:
BB_VERSION = "1.21.1"
BUILD_SYS = "x86_64-linux"
NATIVELSBSTRING = "Ubuntu-13.10"
TARGET_SYS = "powerpc-poky-linux"
MACHINE = "qemuppc"
DISTRO = "poky"
DISTRO_VERSION = "1.5+snapshot-20140211"
TUNE_FEATURES = "m32 fpu-hard ppc7400 altivec"
TARGET_FPU = ""
meta
meta-yocto
meta-yocto-bsp =
"(detachedfromFETCH_HEAD):20104ecbb94a1ada0cb3a26c7801b56a897dc900"
NOTE: Preparing runqueue
NOTE: Executing SetScene Tasks
NOTE: Executing RunQueue Tasks
ERROR: Error executing a python function in
/media/sdb5/poky-contrib/meta/recipes-core/images/core-image-minimal.bb:
The stack trace of python calls that resulted in this exception/failure was:
File: 'do_rootfs', lineno: 17, function: <module>
0013: # generate final images
0014: create_image(d)
0015:
0016:
*** 0017:do_rootfs(d)
0018:
File: 'do_rootfs', lineno: 14, function: do_rootfs
0010: # generate rootfs
0011: create_rootfs(d)
0012:
0013: # generate final images
*** 0014: create_image(d)
0015:
0016:
0017:do_rootfs(d)
0018:
File: '/media/sdb5/poky-contrib/meta/lib/oe/image.py', lineno: 231,
function: create_image
0227: execute_pre_post_process(self.d, post_process_cmds)
0228:
0229:
0230:def create_image(d):
*** 0231: Image(d).create()
0232:
0233:if __name__ == "__main__":
0234: """
0235: Image creation can be called independent from bitbake
environment.
File: '/media/sdb5/poky-contrib/meta/lib/oe/image.py', lineno: 210,
function: create
0206: execute_pre_post_process(self.d, pre_process_cmds)
0207:
0208: self._remove_old_symlinks()
0209:
*** 0210: image_cmds = self._get_imagecmds()
0211:
0212: # create the images in parallel
0213: nproc = multiprocessing.cpu_count()
0214: pool = bb.utils.multiprocessingpool(nproc)
File: '/media/sdb5/poky-contrib/meta/lib/oe/image.py', lineno: 195,
function: _get_imagecmds
0191: cmds.append(localdata.expand("\trm
${IMAGE_NAME}.rootfs.${type}"))
0192: else:
0193: subimages.append(type)
0194:
*** 0195: script_name = self._write_script(type, cmds)
0196:
0197: image_cmds.append((type, subimages, script_name))
0198:
0199: return image_cmds
File: '/media/sdb5/poky-contrib/meta/lib/oe/image.py', lineno: 158,
function: _write_script
0154: self.d.setVarFlag('img_creation_func', 'func', 1)
0155: self.d.setVarFlag('img_creation_func', 'fakeroot', 1)
0156:
0157: with open(script_name, "w+") as script:
*** 0158: script.write("%s" % bb.build.shell_trap_code())
0159: script.write("export ROOTFS_SIZE=%d\n" %
self._get_rootfs_size())
0160: bb.data.emit_func('img_creation_func', script,
self.d)
0161: script.write("img_creation_func\n")
0162:
Exception: AttributeError: 'module' object has no attribute
'shell_trap_code'
ERROR: Function failed: do_rootfs
ERROR: Logfile of failure stored in:
/media/sdb5/bld/tmp/work/qemuppc-poky-linux/core-image-minimal/1.0-r0/temp/log.do_rootfs.9994
ERROR: Task 6
(/media/sdb5/poky-contrib/meta/recipes-core/images/core-image-minimal.bb, do_rootfs)
failed with exit code '1'
next prev parent reply other threads:[~2014-02-11 8:42 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-02-03 11:38 [PATCH 00/49] Rootfs/image generation refactoring (cover letter only) Laurentiu Palcu
2014-02-03 11:54 ` Laurentiu Palcu
2014-02-03 14:32 ` David Nyström
2014-02-03 16:47 ` Laurentiu Palcu
2014-02-04 14:08 ` David Nyström
2014-02-04 14:49 ` David Nyström
2014-02-04 15:34 ` Laurentiu Palcu
2014-02-04 15:40 ` David Nyström
2014-02-05 10:07 ` [PATCH v2 00/50] " Laurentiu Palcu
2014-02-05 10:58 ` David Nystrom
2014-02-05 12:09 ` David Nyström
2014-02-05 14:43 ` Laurentiu Palcu
2014-02-05 18:00 ` David Nystrom
2014-02-05 15:05 ` [PATCH v3 00/51] " Laurentiu Palcu
2014-02-10 7:53 ` [PATCH v4 00/52] " Laurentiu Palcu
2014-02-10 12:15 ` [PATCH v5 00/53] " Laurentiu Palcu
2014-02-11 8:42 ` David Nyström [this message]
2014-02-11 8:50 ` Laurentiu Palcu
2014-02-11 8:56 ` David Nyström
2014-02-11 9:36 ` David Nyström
2014-02-11 14:33 ` David Nyström
2014-02-11 14:50 ` David Nyström
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=52F9E289.2080002@enea.com \
--to=david.nystrom@enea.com \
--cc=laurentiu.palcu@intel.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.