]> code.ossystems Code Review - openembedded-core.git/commit
kernel bbclass: return to original directory in do_deploy
authorChase Maupin <Chase.Maupin@ti.com>
Wed, 13 Mar 2013 12:03:50 +0000 (07:03 -0500)
committerRoss Burton <ross.burton@intel.com>
Tue, 23 Apr 2013 09:40:50 +0000 (10:40 +0100)
commitcfac9cc41c98eb1858bd3b0dee3dcc672d53f78b
treecb1c6cae6e8a0ff5a9aff68f1843f57e3df8bee9
parent9a5ed565758a6fcc94bc85ce6205375d2fd282ea
kernel bbclass: return to original directory in do_deploy

* During the base kernel_do_deploy function the directory is
  changed to DEPLOYDIR in order to do some cleanup and symlinking.
  However, the directory is not changed back to the original
  starting directory ${S} at the end.  For append functions this
  means that the starting directory is not ${S} as expected but
  instead ${DEPLOYDIR}.

  For functions like the do_deploy_append in
  recipes-kernel/linux/linux-dtb.inc there is an assumption that
  you are still in the source directory and not the DEPLOYDIR.
  Without this change the .dtb files are not copied because the
  check for the existence of ${DTS_FILE} which is a relative
  path from the ${S} directory fails.  This means that the .dtb
  files are not copied into the deploy directory and subsequently
  the deploy/images directory.

  In the log.do_deploy file you will see lines like:

    Warning: arch/arm/boot/dts/xxxxx.dts is not available!

Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
meta/classes/kernel.bbclass