summaryrefslogtreecommitdiffstats
path: root/meta/classes/kernel.bbclass
diff options
context:
space:
mode:
Diffstat (limited to 'meta/classes/kernel.bbclass')
-rw-r--r--meta/classes/kernel.bbclass12
1 files changed, 12 insertions, 0 deletions
diff --git a/meta/classes/kernel.bbclass b/meta/classes/kernel.bbclass
index 5c3287bb98..dee6f7db24 100644
--- a/meta/classes/kernel.bbclass
+++ b/meta/classes/kernel.bbclass
@@ -417,6 +417,18 @@ python split_kernel_packages () {
417 do_split_packages(d, root='/lib/firmware', file_regex='^(.*)\.(bin|fw|cis|dsp)$', output_pattern='kernel-firmware-%s', description='Firmware for %s', recursive=True, extra_depends='') 417 do_split_packages(d, root='/lib/firmware', file_regex='^(.*)\.(bin|fw|cis|dsp)$', output_pattern='kernel-firmware-%s', description='Firmware for %s', recursive=True, extra_depends='')
418} 418}
419 419
420# Many scripts want to look in arch/$arch/boot for the bootable
421# image. This poses a problem for vmlinux based booting. This
422# task arranges to have vmlinux appear in the normalized directory
423# location.
424do_kernel_link_vmlinux() {
425 if [ ! -d "${B}/arch/${ARCH}/boot" ]; then
426 mkdir ${B}/arch/${ARCH}/boot
427 fi
428 cd ${B}/arch/${ARCH}/boot
429 ln -sf ../../../vmlinux
430}
431
420do_strip() { 432do_strip() {
421 if [ -n "${KERNEL_IMAGE_STRIP_EXTRA_SECTIONS}" ]; then 433 if [ -n "${KERNEL_IMAGE_STRIP_EXTRA_SECTIONS}" ]; then
422 if [ "${KERNEL_IMAGETYPE}" != "vmlinux" ]; then 434 if [ "${KERNEL_IMAGETYPE}" != "vmlinux" ]; then