[oe-commits] [openembedded-core] 09/41: kernel: Make symbol link to vmlinux.64 in boot directory

git at git.openembedded.org git at git.openembedded.org
Sat Dec 28 23:48:18 UTC 2019


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit 19040c25f3e1a6b5883c798eef1ef482bc96f9fd
Author: Vasyl Gomonovych <gomonovych at gmail.com>
AuthorDate: Thu Dec 26 13:50:56 2019 +0200

    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 <gomonovych at gmail.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/classes/kernel.bbclass | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/meta/classes/kernel.bbclass b/meta/classes/kernel.bbclass
index ebcb79a..750988f 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
 

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list