On 3 March 2015 at 23:17, Bernhard Reutner-Fischer
<rep.dot....@gmail.com> wrote:
> On 3 March 2015 at 16:46, Naresh Bhat <naresh.b...@linaro.org> wrote:
>> Add support to install kernel image for aarch64
>>
>> Signed-off-by: Naresh Bhat <naresh.b...@linaro.org>
>> Signed-off-by: Matt Fleming <matt.flem...@intel.com>
>> ---
>> meta/classes/bootimg.bbclass | 10 +++++++++-
>> 1 file changed, 9 insertions(+), 1 deletion(-)
>>
>> diff --git a/meta/classes/bootimg.bbclass b/meta/classes/bootimg.bbclass
>> index b1c03ba..a8e0c19 100644
>> --- a/meta/classes/bootimg.bbclass
>> +++ b/meta/classes/bootimg.bbclass
>> @@ -66,8 +66,16 @@ populate() {
>> DEST=$1
>> install -d ${DEST}
>>
>> + SRC_KERNEL_IMAGE=bzImage
>> + DEST_KERNEL_IMAGE=vmlinuz
>> +
>> + if [ "${TARGET_ARCH}" = "aarch64" ]; then
>> + SRC_KERNEL_IMAGE=Image
>> + DEST_KERNEL_IMAGE=Image
>> + fi
>> +
>> # Install bzImage, initrd, and rootfs.img in DEST for all loaders to
>> use.
>> - install -m 0644 ${DEPLOY_DIR_IMAGE}/bzImage ${DEST}/vmlinuz
>> + install -m 0644 ${STAGING_KERNEL_DIR}/${SRC_KERNEL_IMAGE}
>> ${DEST}/${DEST_KERNEL_IMAGE}
>
> while you touch this, I'd remove the -d above and instead -D, like:
> install -m 0644 -D ${STAGING_KERNEL_DIR}/${SRC_KERNEL_IMAGE}
> ${DEST}/${DEST_KERNEL_IMAGE}
>
> thanks,
ok, Thank you very much. That's a good suggestion. I will make the
necessary changes.
--
_______________________________________________
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-core