diff options
| author | Nathan Rossi <nathan.rossi@xilinx.com> | 2013-10-01 04:19:42 +0000 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-10-01 22:56:04 +0100 |
| commit | 43a960abf46f9fc1391f36936f00d4ab249fc0af (patch) | |
| tree | 723da814cc32dba5a6ed1e56ef08181d97c6d5c5 | |
| parent | b618f74d6e87ac36ca7dad25c830fa8526614320 (diff) | |
| download | poky-43a960abf46f9fc1391f36936f00d4ab249fc0af.tar.gz | |
linux-dummy.bb: Resolve missing task issues
Commit 609d5a9ab9e58bb1c2bcc2145399fbc8b701b85a added additional
initramfs functionality and created an additional task on kernel.bbclass
Adding this task was missed on the linux-dummy recipe, which causes task
dependency issues due to image.bbclass depending on
"virtual/kernel:do_bundle_initramfs". This change adds a dummy task
which resolves the dependency issue.
(From OE-Core rev: c0a8c5c07e0dd6f0ae302e9a4dcf7973e73e68e1)
Signed-off-by: Nathan Rossi <nathan.rossi@xilinx.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
| -rw-r--r-- | meta/recipes-kernel/linux/linux-dummy.bb | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/meta/recipes-kernel/linux/linux-dummy.bb b/meta/recipes-kernel/linux/linux-dummy.bb index a98a0f1e2f..8a211da9e2 100644 --- a/meta/recipes-kernel/linux/linux-dummy.bb +++ b/meta/recipes-kernel/linux/linux-dummy.bb | |||
| @@ -27,3 +27,10 @@ do_compile () { | |||
| 27 | do_install() { | 27 | do_install() { |
| 28 | : | 28 | : |
| 29 | } | 29 | } |
| 30 | |||
| 31 | do_bundle_initramfs() { | ||
| 32 | : | ||
| 33 | } | ||
| 34 | do_bundle_initramfs[nostamp] = "1" | ||
| 35 | addtask bundle_initramfs after do_compile | ||
| 36 | |||
