From: Vasyl Gomonovych Date: Thu, 26 Dec 2019 11:50:56 +0000 (+0200) Subject: kernel: Make symbol link to vmlinux.64 in boot directory X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f9739e0f58f5d8a5dc01fdb0efaa778af4edd671;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git kernel: Make symbol link to vmlinux.64 in boot directory Some mips 64 bit platforms use vmlinux.64 image name Make a symbol link to vmlinux.64 in arch/mips/boot/ Signed-off-by: Vasyl Gomonovych Signed-off-by: Richard Purdie (cherry picked from commit 70626b52e5e61c80018e9f1f85bc169d0434b986) Signed-off-by: Armin Kuster --- diff --git a/meta/classes/kernel.bbclass b/meta/classes/kernel.bbclass index ebcb79a5286..750988f4e5a 100644 --- a/meta/classes/kernel.bbclass +++ b/meta/classes/kernel.bbclass @@ -613,6 +613,9 @@ do_kernel_link_images() { if [ -f ../../../vmlinuz.bin ]; then ln -sf ../../../vmlinuz.bin fi + if [ -f ../../../vmlinux.64 ]; then + ln -sf ../../../vmlinux.64 + fi } addtask kernel_link_images after do_compile before do_strip