From 5b857eeeb7b03eb5bc43a98888290b022bf42450 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Thu, 23 Jun 2011 21:50:13 +0200 Subject: kernel.bbclass: Stop do_install poking directly into the sysroot and evading sstate do_install was putting files directly into the sysroot which means sstate had no knowledge of them. This meant they didn't get cleaned along with the other files from the task amongst other issues. This patch puts them in ${D} where they were supposted to be. Tested-by: Tom Rini Signed-off-by: Richard Purdie Signed-off-by: Koen Kooi --- meta-oe/classes/kernel.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-oe') diff --git a/meta-oe/classes/kernel.bbclass b/meta-oe/classes/kernel.bbclass index ecd33137da..9c992652f5 100644 --- a/meta-oe/classes/kernel.bbclass +++ b/meta-oe/classes/kernel.bbclass @@ -131,7 +131,7 @@ kernel_do_install() { # Support for external module building - create a minimal copy of the # kernel source tree. # - kerneldir=${STAGING_KERNEL_DIR} + kerneldir=${D}/kernel install -d $kerneldir # -- cgit 1.2.3-korg