diff options
author | Ming Liu <ming.liu@windriver.com> | 2013-11-13 13:40:59 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-11-20 14:03:29 +0000 |
commit | ae70c20ce843327a3e52cbe66c99c18ff02e0fa4 (patch) | |
tree | 6f8ffc63e74567295cb8455e5ffd1be9d290c62e /meta/classes | |
parent | 4cf2d7c32bc410e637b8d0c8e4125ab7166a5d30 (diff) | |
download | poky-ae70c20ce843327a3e52cbe66c99c18ff02e0fa4.tar.gz |
kernel.bbclass: move bundle_initramfs after kernel_link_vmlinux
${KERNEL_OUTPUT} is being renamed/restored in bundle_initramfs task, so we
must ensure bundle_initramfs run after kernel_link_vmlinux where the link
of vmlinux is created as the bootable image.
(From OE-Core rev: 3baa63b4d588c3262254528b406ede265dd117bf)
Signed-off-by: Ming Liu <ming.liu@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/kernel.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/kernel.bbclass b/meta/classes/kernel.bbclass index ba13e6784d..48999fe5c2 100644 --- a/meta/classes/kernel.bbclass +++ b/meta/classes/kernel.bbclass | |||
@@ -152,7 +152,7 @@ python do_devshell_prepend () { | |||
152 | os.environ["LDFLAGS"] = '' | 152 | os.environ["LDFLAGS"] = '' |
153 | } | 153 | } |
154 | 154 | ||
155 | addtask bundle_initramfs after do_compile before do_build | 155 | addtask bundle_initramfs after do_kernel_link_vmlinux before do_build |
156 | 156 | ||
157 | kernel_do_compile() { | 157 | kernel_do_compile() { |
158 | unset CFLAGS CPPFLAGS CXXFLAGS LDFLAGS MACHINE | 158 | unset CFLAGS CPPFLAGS CXXFLAGS LDFLAGS MACHINE |