[oe] [RFC] kernel NOTE messages fix

Frans Meulenbroeks fransmeulenbroeks at gmail.com
Wed Sep 29 20:16:47 UTC 2010


2010/9/29 Denys Dmytriyenko <denis at denix.org>:
> On Tue, Sep 28, 2010 at 06:39:42PM +0200, Frans Meulenbroeks wrote:

>> -sysroot_stage_all_append() {
>> -       sysroot_stage_dir ${D}/kernel ${SYSROOT_DESTDIR}${STAGING_KERNEL_DIR}
>
> BTW, won't this patch break packaged-staging? Has anyone tried rebuilding from
> pstage after this fix?

I don't think it will break packaged staging. This is the function
sysroot_stage_dir:

sysroot_stage_dir() {
        src="$1"
        dest="$2"
        # This will remove empty directories so we can ignore them
        rmdir "$src" 2> /dev/null || true
        if [ -d "$src" ]; then
                mkdir -p "$dest"
                cp -fpPR "$src"/* "$dest"
        fi
}

Nothing related to packaged staging here.
And we still copy to ${SYSROOT_DESTDIR}${STAGING_KERNEL_DIR} (which is
the place where I assume things are packaged from)

Frans




More information about the Openembedded-devel mailing list