diff options
author | Vasyl Gomonovych <gomonovych@gmail.com> | 2019-12-26 13:50:56 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-12-30 08:47:12 +0000 |
commit | 61f8a68e4e443fffd1c9eedd7f8100939fb14dd9 (patch) | |
tree | 25a117f40940d158c922e36f3749be97fdcf8fb4 | |
parent | e2a0c27364c260ec2e088fc34a4805269e862079 (diff) | |
download | poky-61f8a68e4e443fffd1c9eedd7f8100939fb14dd9.tar.gz |
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/
(From OE-Core rev: 70626b52e5e61c80018e9f1f85bc169d0434b986)
Signed-off-by: Vasyl Gomonovych <gomonovych@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/classes/kernel.bbclass | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/classes/kernel.bbclass b/meta/classes/kernel.bbclass index ebcb79a528..750988f4e5 100644 --- a/meta/classes/kernel.bbclass +++ b/meta/classes/kernel.bbclass | |||
@@ -613,6 +613,9 @@ do_kernel_link_images() { | |||
613 | if [ -f ../../../vmlinuz.bin ]; then | 613 | if [ -f ../../../vmlinuz.bin ]; then |
614 | ln -sf ../../../vmlinuz.bin | 614 | ln -sf ../../../vmlinuz.bin |
615 | fi | 615 | fi |
616 | if [ -f ../../../vmlinux.64 ]; then | ||
617 | ln -sf ../../../vmlinux.64 | ||
618 | fi | ||
616 | } | 619 | } |
617 | addtask kernel_link_images after do_compile before do_strip | 620 | addtask kernel_link_images after do_compile before do_strip |
618 | 621 | ||