From 17e346ad3489908895177caf63c620eeff6d9a97 Mon Sep 17 00:00:00 2001 From: "koen.kooi@gmail.com" Date: Thu, 15 Apr 2010 00:35:49 +0000 Subject: recipes/linux: convert users of do_stage_append to new style staging Acked-by: Graeme Gregory Acked-by: Philip Balister Signed-off-by: Koen Kooi --- recipes/linux/linux-magicbox_2.6.18.6.bb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'recipes/linux/linux-magicbox_2.6.18.6.bb') diff --git a/recipes/linux/linux-magicbox_2.6.18.6.bb b/recipes/linux/linux-magicbox_2.6.18.6.bb index 89f1c14497..248f50200a 100644 --- a/recipes/linux/linux-magicbox_2.6.18.6.bb +++ b/recipes/linux/linux-magicbox_2.6.18.6.bb @@ -40,15 +40,15 @@ do_configure_prepend() { } -do_stage_append () { +do_install_append () { #need ppc platforms includes + friends in order for external kernel modules to compile as headers as still split - install -d ${STAGING_KERNEL_DIR}/arch/ - cp -pPR arch/ppc ${STAGING_KERNEL_DIR}/arch/ - cp -pPR arch/powerpc ${STAGING_KERNEL_DIR}/arch/ + install -d $kerneldir/arch/ + cp -pPR arch/ppc $kerneldir/arch/ + cp -pPR arch/powerpc $kerneldir/arch/ - cp -pPR include/asm-powerpc ${STAGING_KERNEL_DIR}/include/ - cp -pPR include/asm-ppc ${STAGING_KERNEL_DIR}/include/ + cp -pPR include/asm-powerpc $kerneldir/include/ + cp -pPR include/asm-ppc $kerneldir/include/ } -- cgit 1.2.3-korg