blob: b346a6059a420135652d8ca37219e52eae5a1ef6 [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001inherit linux-kernel-base kernel-module-split
2
Brad Bishop316dfdd2018-06-25 12:45:53 -04003KERNEL_PACKAGE_NAME ??= "kernel"
4KERNEL_DEPLOYSUBDIR ??= "${@ "" if (d.getVar("KERNEL_PACKAGE_NAME") == "kernel") else d.getVar("KERNEL_PACKAGE_NAME") }"
5
6PROVIDES += "${@ "virtual/kernel" if (d.getVar("KERNEL_PACKAGE_NAME") == "kernel") else "" }"
7DEPENDS += "virtual/${TARGET_PREFIX}binutils virtual/${TARGET_PREFIX}gcc kmod-native bc-native lzop-native bison-native"
Brad Bishopd7bf8c12018-02-25 22:55:05 -05008PACKAGE_WRITE_DEPS += "depmodwrapper-cross"
Brad Bishop6e60e8b2018-02-01 10:27:11 -05009
10do_deploy[depends] += "depmodwrapper-cross:do_populate_sysroot"
11
12CVE_PRODUCT ?= "linux_kernel"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050013
14S = "${STAGING_KERNEL_DIR}"
15B = "${WORKDIR}/build"
16KBUILD_OUTPUT = "${B}"
17OE_TERMINAL_EXPORTS += "KBUILD_OUTPUT"
18
19# we include gcc above, we dont need virtual/libc
20INHIBIT_DEFAULT_DEPS = "1"
21
22KERNEL_IMAGETYPE ?= "zImage"
23INITRAMFS_IMAGE ?= ""
Brad Bishop6e60e8b2018-02-01 10:27:11 -050024INITRAMFS_IMAGE_NAME ?= "${@['${INITRAMFS_IMAGE}-${MACHINE}', ''][d.getVar('INITRAMFS_IMAGE') == '']}"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050025INITRAMFS_TASK ?= ""
26INITRAMFS_IMAGE_BUNDLE ?= ""
27
He Zhefe76b1e2016-05-25 04:47:16 -040028# KERNEL_VERSION is extracted from source code. It is evaluated as
29# None for the first parsing, since the code has not been fetched.
30# After the code is fetched, it will be evaluated as real version
31# number and cause kernel to be rebuilt. To avoid this, make
32# KERNEL_VERSION_NAME and KERNEL_VERSION_PKG_NAME depend on
33# LINUX_VERSION which is a constant.
Brad Bishop6e60e8b2018-02-01 10:27:11 -050034KERNEL_VERSION_NAME = "${@d.getVar('KERNEL_VERSION') or ""}"
He Zhefe76b1e2016-05-25 04:47:16 -040035KERNEL_VERSION_NAME[vardepvalue] = "${LINUX_VERSION}"
Brad Bishop6e60e8b2018-02-01 10:27:11 -050036KERNEL_VERSION_PKG_NAME = "${@legitimize_package_name(d.getVar('KERNEL_VERSION'))}"
He Zhefe76b1e2016-05-25 04:47:16 -040037KERNEL_VERSION_PKG_NAME[vardepvalue] = "${LINUX_VERSION}"
38
Patrick Williamsc124f4f2015-09-15 14:41:29 -050039python __anonymous () {
Brad Bishop316dfdd2018-06-25 12:45:53 -040040 pn = d.getVar("PN")
41 kpn = d.getVar("KERNEL_PACKAGE_NAME")
42
43 # XXX Remove this after bug 11905 is resolved
44 # FILES_${KERNEL_PACKAGE_NAME}-dev doesn't expand correctly
45 if kpn == pn:
46 bb.warn("Some packages (E.g. *-dev) might be missing due to "
47 "bug 11905 (variable KERNEL_PACKAGE_NAME == PN)")
48
49 # The default kernel recipe builds in a shared location defined by
50 # bitbake/distro confs: STAGING_KERNEL_DIR and STAGING_KERNEL_BUILDDIR.
51 # Set these variables to directories under ${WORKDIR} in alternate
52 # kernel recipes (I.e. where KERNEL_PACKAGE_NAME != kernel) so that they
53 # may build in parallel with the default kernel without clobbering.
54 if kpn != "kernel":
55 workdir = d.getVar("WORKDIR")
56 sourceDir = os.path.join(workdir, 'kernel-source')
57 artifactsDir = os.path.join(workdir, 'kernel-build-artifacts')
58 d.setVar("STAGING_KERNEL_DIR", sourceDir)
59 d.setVar("STAGING_KERNEL_BUILDDIR", artifactsDir)
Patrick Williamsc124f4f2015-09-15 14:41:29 -050060
He Zhefe76b1e2016-05-25 04:47:16 -040061 # Merge KERNEL_IMAGETYPE and KERNEL_ALT_IMAGETYPE into KERNEL_IMAGETYPES
Brad Bishop6e60e8b2018-02-01 10:27:11 -050062 type = d.getVar('KERNEL_IMAGETYPE') or ""
63 alttype = d.getVar('KERNEL_ALT_IMAGETYPE') or ""
64 types = d.getVar('KERNEL_IMAGETYPES') or ""
He Zhefe76b1e2016-05-25 04:47:16 -040065 if type not in types.split():
66 types = (type + ' ' + types).strip()
67 if alttype not in types.split():
68 types = (alttype + ' ' + types).strip()
69 d.setVar('KERNEL_IMAGETYPES', types)
Patrick Williamsc124f4f2015-09-15 14:41:29 -050070
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080071 # KERNEL_IMAGETYPES may contain a mixture of image types supported directly
72 # by the kernel build system and types which are created by post-processing
73 # the output of the kernel build system (e.g. compressing vmlinux ->
74 # vmlinux.gz in kernel_do_compile()).
75 # KERNEL_IMAGETYPE_FOR_MAKE should contain only image types supported
76 # directly by the kernel build system.
77 if not d.getVar('KERNEL_IMAGETYPE_FOR_MAKE'):
78 typeformake = set()
79 for type in types.split():
80 if type == 'vmlinux.gz':
81 type = 'vmlinux'
82 typeformake.add(type)
83
84 d.setVar('KERNEL_IMAGETYPE_FOR_MAKE', ' '.join(sorted(typeformake)))
85
86 kname = d.getVar('KERNEL_PACKAGE_NAME') or "kernel"
87 imagedest = d.getVar('KERNEL_IMAGEDEST')
He Zhefe76b1e2016-05-25 04:47:16 -040088
Brad Bishop37a0e4d2017-12-04 01:01:44 -050089 for type in types.split():
He Zhefe76b1e2016-05-25 04:47:16 -040090 typelower = type.lower()
Brad Bishop316dfdd2018-06-25 12:45:53 -040091 d.appendVar('PACKAGES', ' %s-image-%s' % (kname, typelower))
Brad Bishop316dfdd2018-06-25 12:45:53 -040092 d.setVar('FILES_' + kname + '-image-' + typelower, '/' + imagedest + '/' + type + '-${KERNEL_VERSION_NAME}' + ' /' + imagedest + '/' + type)
Brad Bishop316dfdd2018-06-25 12:45:53 -040093 d.appendVar('RDEPENDS_%s-image' % kname, ' %s-image-%s' % (kname, typelower))
Brad Bishop316dfdd2018-06-25 12:45:53 -040094 d.setVar('PKG_%s-image-%s' % (kname,typelower), '%s-image-%s-${KERNEL_VERSION_PKG_NAME}' % (kname, typelower))
Brad Bishop316dfdd2018-06-25 12:45:53 -040095 d.setVar('ALLOW_EMPTY_%s-image-%s' % (kname, typelower), '1')
He Zhefe76b1e2016-05-25 04:47:16 -040096
Brad Bishop6e60e8b2018-02-01 10:27:11 -050097 image = d.getVar('INITRAMFS_IMAGE')
Patrick Williamsc124f4f2015-09-15 14:41:29 -050098 if image:
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050099 d.appendVarFlag('do_bundle_initramfs', 'depends', ' ${INITRAMFS_IMAGE}:do_image_complete')
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500100
101 # NOTE: setting INITRAMFS_TASK is for backward compatibility
102 # The preferred method is to set INITRAMFS_IMAGE, because
103 # this INITRAMFS_TASK has circular dependency problems
104 # if the initramfs requires kernel modules
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500105 image_task = d.getVar('INITRAMFS_TASK')
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500106 if image_task:
107 d.appendVarFlag('do_configure', 'depends', ' ${INITRAMFS_TASK}')
108}
109
110# Here we pull in all various kernel image types which we support.
111#
112# In case you're wondering why kernel.bbclass inherits the other image
113# types instead of the other way around, the reason for that is to
114# maintain compatibility with various currently existing meta-layers.
115# By pulling in the various kernel image types here, we retain the
116# original behavior of kernel.bbclass, so no meta-layers should get
117# broken.
118#
119# KERNEL_CLASSES by default pulls in kernel-uimage.bbclass, since this
120# used to be the default behavior when only uImage was supported. This
121# variable can be appended by users who implement support for new kernel
122# image types.
123
124KERNEL_CLASSES ?= " kernel-uimage "
125inherit ${KERNEL_CLASSES}
126
127# Old style kernels may set ${S} = ${WORKDIR}/git for example
128# We need to move these over to STAGING_KERNEL_DIR. We can't just
129# create the symlink in advance as the git fetcher can't cope with
130# the symlink.
131do_unpack[cleandirs] += " ${S} ${STAGING_KERNEL_DIR} ${B} ${STAGING_KERNEL_BUILDDIR}"
132do_clean[cleandirs] += " ${S} ${STAGING_KERNEL_DIR} ${B} ${STAGING_KERNEL_BUILDDIR}"
Brad Bishopc342db32019-05-15 21:57:59 -0400133python do_symlink_kernsrc () {
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500134 s = d.getVar("S")
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500135 if s[-1] == '/':
136 # drop trailing slash, so that os.symlink(kernsrc, s) doesn't use s as directory name and fail
137 s=s[:-1]
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500138 kernsrc = d.getVar("STAGING_KERNEL_DIR")
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500139 if s != kernsrc:
140 bb.utils.mkdirhier(kernsrc)
141 bb.utils.remove(kernsrc, recurse=True)
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500142 if d.getVar("EXTERNALSRC"):
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500143 # With EXTERNALSRC S will not be wiped so we can symlink to it
144 os.symlink(s, kernsrc)
145 else:
146 import shutil
147 shutil.move(s, kernsrc)
148 os.symlink(kernsrc, s)
149}
Brad Bishopc342db32019-05-15 21:57:59 -0400150addtask symlink_kernsrc before do_configure after do_unpack
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500151
152inherit kernel-arch deploy
153
Brad Bishop316dfdd2018-06-25 12:45:53 -0400154PACKAGES_DYNAMIC += "^${KERNEL_PACKAGE_NAME}-module-.*"
155PACKAGES_DYNAMIC += "^${KERNEL_PACKAGE_NAME}-image-.*"
156PACKAGES_DYNAMIC += "^${KERNEL_PACKAGE_NAME}-firmware-.*"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500157
158export OS = "${TARGET_OS}"
159export CROSS_COMPILE = "${TARGET_PREFIX}"
Brad Bishop316dfdd2018-06-25 12:45:53 -0400160export KBUILD_BUILD_VERSION = "1"
Brad Bishop977dc1a2019-02-06 16:01:43 -0500161export KBUILD_BUILD_USER ?= "oe-user"
162export KBUILD_BUILD_HOST ?= "oe-host"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500163
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500164KERNEL_RELEASE ?= "${KERNEL_VERSION}"
165
He Zhefe76b1e2016-05-25 04:47:16 -0400166# The directory where built kernel lies in the kernel tree
167KERNEL_OUTPUT_DIR ?= "arch/${ARCH}/boot"
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800168KERNEL_IMAGEDEST ?= "boot"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500169
170#
171# configuration
172#
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500173export CMDLINE_CONSOLE = "console=${@d.getVar("KERNEL_CONSOLE") or "ttyS0"}"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500174
175KERNEL_VERSION = "${@get_kernelversion_headers('${B}')}"
176
177KERNEL_LOCALVERSION ?= ""
178
179# kernels are generally machine specific
180PACKAGE_ARCH = "${MACHINE_ARCH}"
181
182# U-Boot support
183UBOOT_ENTRYPOINT ?= "20008000"
184UBOOT_LOADADDRESS ?= "${UBOOT_ENTRYPOINT}"
185
186# Some Linux kernel configurations need additional parameters on the command line
187KERNEL_EXTRA_ARGS ?= ""
188
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500189EXTRA_OEMAKE = " HOSTCC="${BUILD_CC} ${BUILD_CFLAGS} ${BUILD_LDFLAGS}" HOSTCPP="${BUILD_CPP}""
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500190KERNEL_ALT_IMAGETYPE ??= ""
191
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500192copy_initramfs() {
193 echo "Copying initramfs into ./usr ..."
194 # In case the directory is not created yet from the first pass compile:
195 mkdir -p ${B}/usr
196 # Find and use the first initramfs image archive type we find
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500197 rm -f ${B}/usr/${INITRAMFS_IMAGE_NAME}.cpio
Brad Bishop37a0e4d2017-12-04 01:01:44 -0500198 for img in cpio cpio.gz cpio.lz4 cpio.lzo cpio.lzma cpio.xz; do
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500199 if [ -e "${DEPLOY_DIR_IMAGE}/${INITRAMFS_IMAGE_NAME}.$img" ]; then
200 cp ${DEPLOY_DIR_IMAGE}/${INITRAMFS_IMAGE_NAME}.$img ${B}/usr/.
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500201 case $img in
202 *gz)
203 echo "gzip decompressing image"
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500204 gunzip -f ${B}/usr/${INITRAMFS_IMAGE_NAME}.$img
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500205 break
206 ;;
207 *lz4)
208 echo "lz4 decompressing image"
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500209 lz4 -df ${B}/usr/${INITRAMFS_IMAGE_NAME}.$img
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500210 break
211 ;;
212 *lzo)
213 echo "lzo decompressing image"
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500214 lzop -df ${B}/usr/${INITRAMFS_IMAGE_NAME}.$img
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500215 break
216 ;;
217 *lzma)
218 echo "lzma decompressing image"
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500219 lzma -df ${B}/usr/${INITRAMFS_IMAGE_NAME}.$img
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500220 break
221 ;;
222 *xz)
223 echo "xz decompressing image"
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500224 xz -df ${B}/usr/${INITRAMFS_IMAGE_NAME}.$img
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500225 break
226 ;;
227 esac
Brad Bishopf8caae32019-03-25 13:13:56 -0400228 break
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500229 fi
230 done
Brad Bishopf8caae32019-03-25 13:13:56 -0400231 # Verify that the above loop found a initramfs, fail otherwise
232 [ -f ${B}/usr/${INITRAMFS_IMAGE_NAME}.cpio ] && echo "Finished copy of initramfs into ./usr" || die "Could not find any ${DEPLOY_DIR_IMAGE}/${INITRAMFS_IMAGE_NAME}.cpio{.gz|.lz4|.lzo|.lzma|.xz) for bundling; INITRAMFS_IMAGE_NAME might be wrong."
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500233}
234
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500235do_bundle_initramfs () {
236 if [ ! -z "${INITRAMFS_IMAGE}" -a x"${INITRAMFS_IMAGE_BUNDLE}" = x1 ]; then
237 echo "Creating a kernel image with a bundled initramfs..."
238 copy_initramfs
He Zhefe76b1e2016-05-25 04:47:16 -0400239 # Backing up kernel image relies on its type(regular file or symbolic link)
240 tmp_path=""
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800241 for imageType in ${KERNEL_IMAGETYPE_FOR_MAKE} ; do
242 if [ -h ${KERNEL_OUTPUT_DIR}/$imageType ] ; then
243 linkpath=`readlink -n ${KERNEL_OUTPUT_DIR}/$imageType`
244 realpath=`readlink -fn ${KERNEL_OUTPUT_DIR}/$imageType`
He Zhefe76b1e2016-05-25 04:47:16 -0400245 mv -f $realpath $realpath.bak
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800246 tmp_path=$tmp_path" "$imageType"#"$linkpath"#"$realpath
247 elif [ -f ${KERNEL_OUTPUT_DIR}/$imageType ]; then
248 mv -f ${KERNEL_OUTPUT_DIR}/$imageType ${KERNEL_OUTPUT_DIR}/$imageType.bak
249 tmp_path=$tmp_path" "$imageType"##"
He Zhefe76b1e2016-05-25 04:47:16 -0400250 fi
251 done
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500252 use_alternate_initrd=CONFIG_INITRAMFS_SOURCE=${B}/usr/${INITRAMFS_IMAGE_NAME}.cpio
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500253 kernel_do_compile
He Zhefe76b1e2016-05-25 04:47:16 -0400254 # Restoring kernel image
255 for tp in $tmp_path ; do
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800256 imageType=`echo $tp|cut -d "#" -f 1`
He Zhefe76b1e2016-05-25 04:47:16 -0400257 linkpath=`echo $tp|cut -d "#" -f 2`
258 realpath=`echo $tp|cut -d "#" -f 3`
259 if [ -n "$realpath" ]; then
260 mv -f $realpath $realpath.initramfs
261 mv -f $realpath.bak $realpath
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800262 ln -sf $linkpath.initramfs ${B}/${KERNEL_OUTPUT_DIR}/$imageType.initramfs
He Zhefe76b1e2016-05-25 04:47:16 -0400263 else
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800264 mv -f ${KERNEL_OUTPUT_DIR}/$imageType ${KERNEL_OUTPUT_DIR}/$imageType.initramfs
265 mv -f ${KERNEL_OUTPUT_DIR}/$imageType.bak ${KERNEL_OUTPUT_DIR}/$imageType
He Zhefe76b1e2016-05-25 04:47:16 -0400266 fi
267 done
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500268 fi
269}
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600270do_bundle_initramfs[dirs] = "${B}"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500271
272python do_devshell_prepend () {
273 os.environ["LDFLAGS"] = ''
274}
275
276addtask bundle_initramfs after do_install before do_deploy
277
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500278get_cc_option () {
279 # Check if KERNEL_CC supports the option "file-prefix-map".
280 # This option allows us to build images with __FILE__ values that do not
281 # contain the host build path.
282 if ${KERNEL_CC} -Q --help=joined | grep -q "\-ffile-prefix-map=<old=new>"; then
283 echo "-ffile-prefix-map=${S}=/kernel-source/"
284 fi
285}
286
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500287kernel_do_compile() {
288 unset CFLAGS CPPFLAGS CXXFLAGS LDFLAGS MACHINE
Brad Bishop316dfdd2018-06-25 12:45:53 -0400289 if [ "${BUILD_REPRODUCIBLE_BINARIES}" = "1" ]; then
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500290 # kernel sources do not use do_unpack, so SOURCE_DATE_EPOCH may not
291 # be set....
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800292 if [ "${SOURCE_DATE_EPOCH}" = "" -o "${SOURCE_DATE_EPOCH}" = "0" ]; then
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500293 olddir=`pwd`
294 cd ${S}
295 SOURCE_DATE_EPOCH=`git log -1 --pretty=%ct`
296 # git repo not guaranteed, so fall back to REPRODUCIBLE_TIMESTAMP_ROOTFS
297 if [ $? -ne 0 ]; then
298 SOURCE_DATE_EPOCH=${REPRODUCIBLE_TIMESTAMP_ROOTFS}
299 fi
300 cd $olddir
301 fi
302
303 ts=`LC_ALL=C date -d @$SOURCE_DATE_EPOCH`
304 export KBUILD_BUILD_TIMESTAMP="$ts"
305 export KCONFIG_NOTIMESTAMP=1
306 bbnote "KBUILD_BUILD_TIMESTAMP: $ts"
307 fi
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500308 # The $use_alternate_initrd is only set from
309 # do_bundle_initramfs() This variable is specifically for the
310 # case where we are making a second pass at the kernel
311 # compilation and we want to force the kernel build to use a
312 # different initramfs image. The way to do that in the kernel
313 # is to specify:
314 # make ...args... CONFIG_INITRAMFS_SOURCE=some_other_initramfs.cpio
315 if [ "$use_alternate_initrd" = "" ] && [ "${INITRAMFS_TASK}" != "" ] ; then
316 # The old style way of copying an prebuilt image and building it
317 # is turned on via INTIRAMFS_TASK != ""
318 copy_initramfs
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500319 use_alternate_initrd=CONFIG_INITRAMFS_SOURCE=${B}/usr/${INITRAMFS_IMAGE_NAME}.cpio
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500320 fi
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500321 cc_extra=$(get_cc_option)
He Zhefe76b1e2016-05-25 04:47:16 -0400322 for typeformake in ${KERNEL_IMAGETYPE_FOR_MAKE} ; do
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500323 oe_runmake ${typeformake} CC="${KERNEL_CC} $cc_extra " LD="${KERNEL_LD}" ${KERNEL_EXTRA_ARGS} $use_alternate_initrd
He Zhefe76b1e2016-05-25 04:47:16 -0400324 done
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500325 # vmlinux.gz is not built by kernel
326 if (echo "${KERNEL_IMAGETYPES}" | grep -wq "vmlinux\.gz"); then
327 mkdir -p "${KERNEL_OUTPUT_DIR}"
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500328 gzip -9cn < ${B}/vmlinux > "${KERNEL_OUTPUT_DIR}/vmlinux.gz"
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500329 fi
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500330}
331
332do_compile_kernelmodules() {
333 unset CFLAGS CPPFLAGS CXXFLAGS LDFLAGS MACHINE
334 if (grep -q -i -e '^CONFIG_MODULES=y$' ${B}/.config); then
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500335 cc_extra=$(get_cc_option)
336 oe_runmake -C ${B} ${PARALLEL_MAKE} modules CC="${KERNEL_CC} $cc_extra " LD="${KERNEL_LD}" ${KERNEL_EXTRA_ARGS}
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500337
338 # Module.symvers gets updated during the
339 # building of the kernel modules. We need to
340 # update this in the shared workdir since some
341 # external kernel modules has a dependency on
342 # other kernel modules and will look at this
343 # file to do symbol lookups
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600344 cp ${B}/Module.symvers ${STAGING_KERNEL_BUILDDIR}/
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500345 else
346 bbnote "no modules to compile"
347 fi
348}
349addtask compile_kernelmodules after do_compile before do_strip
350
351kernel_do_install() {
352 #
353 # First install the modules
354 #
355 unset CFLAGS CPPFLAGS CXXFLAGS LDFLAGS MACHINE
356 if (grep -q -i -e '^CONFIG_MODULES=y$' .config); then
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500357 oe_runmake DEPMOD=echo MODLIB=${D}${nonarch_base_libdir}/modules/${KERNEL_VERSION} INSTALL_FW_PATH=${D}${nonarch_base_libdir}/firmware modules_install
358 rm "${D}${nonarch_base_libdir}/modules/${KERNEL_VERSION}/build"
359 rm "${D}${nonarch_base_libdir}/modules/${KERNEL_VERSION}/source"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500360 # If the kernel/ directory is empty remove it to prevent QA issues
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500361 rmdir --ignore-fail-on-non-empty "${D}${nonarch_base_libdir}/modules/${KERNEL_VERSION}/kernel"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500362 else
363 bbnote "no modules to install"
364 fi
365
366 #
367 # Install various kernel output (zImage, map file, config, module support files)
368 #
369 install -d ${D}/${KERNEL_IMAGEDEST}
370 install -d ${D}/boot
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800371 for imageType in ${KERNEL_IMAGETYPES} ; do
372 install -m 0644 ${KERNEL_OUTPUT_DIR}/${imageType} ${D}/${KERNEL_IMAGEDEST}/${imageType}-${KERNEL_VERSION}
Brad Bishop316dfdd2018-06-25 12:45:53 -0400373 if [ "${KERNEL_PACKAGE_NAME}" = "kernel" ]; then
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800374 ln -sf ${imageType}-${KERNEL_VERSION} ${D}/${KERNEL_IMAGEDEST}/${imageType}
Brad Bishop316dfdd2018-06-25 12:45:53 -0400375 fi
He Zhefe76b1e2016-05-25 04:47:16 -0400376 done
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500377 install -m 0644 System.map ${D}/boot/System.map-${KERNEL_VERSION}
378 install -m 0644 .config ${D}/boot/config-${KERNEL_VERSION}
379 install -m 0644 vmlinux ${D}/boot/vmlinux-${KERNEL_VERSION}
380 [ -e Module.symvers ] && install -m 0644 Module.symvers ${D}/boot/Module.symvers-${KERNEL_VERSION}
381 install -d ${D}${sysconfdir}/modules-load.d
382 install -d ${D}${sysconfdir}/modprobe.d
383}
384do_install[prefuncs] += "package_get_auto_pr"
385
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600386# Must be ran no earlier than after do_kernel_checkout or else Makefile won't be in ${S}/Makefile
387do_kernel_version_sanity_check() {
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500388 if [ "x${KERNEL_VERSION_SANITY_SKIP}" = "x1" ]; then
389 exit 0
390 fi
391
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600392 # The Makefile determines the kernel version shown at runtime
393 # Don't use KERNEL_VERSION because the headers it grabs the version from aren't generated until do_compile
394 VERSION=$(grep "^VERSION =" ${S}/Makefile | sed s/.*=\ *//)
395 PATCHLEVEL=$(grep "^PATCHLEVEL =" ${S}/Makefile | sed s/.*=\ *//)
396 SUBLEVEL=$(grep "^SUBLEVEL =" ${S}/Makefile | sed s/.*=\ *//)
397 EXTRAVERSION=$(grep "^EXTRAVERSION =" ${S}/Makefile | sed s/.*=\ *//)
398
399 # Build a string for regex and a plain version string
400 reg="^${VERSION}\.${PATCHLEVEL}"
401 vers="${VERSION}.${PATCHLEVEL}"
402 if [ -n "${SUBLEVEL}" ]; then
403 # Ignoring a SUBLEVEL of zero is fine
404 if [ "${SUBLEVEL}" = "0" ]; then
405 reg="${reg}(\.${SUBLEVEL})?"
406 else
407 reg="${reg}\.${SUBLEVEL}"
408 vers="${vers}.${SUBLEVEL}"
409 fi
410 fi
411 vers="${vers}${EXTRAVERSION}"
412 reg="${reg}${EXTRAVERSION}"
413
414 if [ -z `echo ${PV} | grep -E "${reg}"` ]; then
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500415 bbfatal "Package Version (${PV}) does not match of kernel being built (${vers}). Please update the PV variable to match the kernel source or set KERNEL_VERSION_SANITY_SKIP=\"1\" in your recipe."
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600416 fi
417 exit 0
418}
419
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500420addtask shared_workdir after do_compile before do_compile_kernelmodules
421addtask shared_workdir_setscene
422
423do_shared_workdir_setscene () {
424 exit 1
425}
426
427emit_depmod_pkgdata() {
428 # Stash data for depmod
Brad Bishop316dfdd2018-06-25 12:45:53 -0400429 install -d ${PKGDESTWORK}/${KERNEL_PACKAGE_NAME}-depmod/
430 echo "${KERNEL_VERSION}" > ${PKGDESTWORK}/${KERNEL_PACKAGE_NAME}-depmod/${KERNEL_PACKAGE_NAME}-abiversion
431 cp ${B}/System.map ${PKGDESTWORK}/${KERNEL_PACKAGE_NAME}-depmod/System.map-${KERNEL_VERSION}
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500432}
433
434PACKAGEFUNCS += "emit_depmod_pkgdata"
435
Brad Bishop316dfdd2018-06-25 12:45:53 -0400436do_shared_workdir[cleandirs] += " ${STAGING_KERNEL_BUILDDIR}"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500437do_shared_workdir () {
438 cd ${B}
439
440 kerneldir=${STAGING_KERNEL_BUILDDIR}
441 install -d $kerneldir
442
443 #
444 # Store the kernel version in sysroots for module-base.bbclass
445 #
446
Brad Bishop316dfdd2018-06-25 12:45:53 -0400447 echo "${KERNEL_VERSION}" > $kerneldir/${KERNEL_PACKAGE_NAME}-abiversion
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500448
449 # Copy files required for module builds
450 cp System.map $kerneldir/System.map-${KERNEL_VERSION}
451 cp Module.symvers $kerneldir/
452 cp .config $kerneldir/
453 mkdir -p $kerneldir/include/config
454 cp include/config/kernel.release $kerneldir/include/config/kernel.release
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600455 if [ -e certs/signing_key.pem ]; then
456 # The signing_key.* files are stored in the certs/ dir in
457 # newer Linux kernels
458 mkdir -p $kerneldir/certs
459 cp certs/signing_key.* $kerneldir/certs/
460 elif [ -e signing_key.priv ]; then
461 cp signing_key.* $kerneldir/
462 fi
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500463
464 # We can also copy over all the generated files and avoid special cases
465 # like version.h, but we've opted to keep this small until file creep starts
466 # to happen
467 if [ -e include/linux/version.h ]; then
468 mkdir -p $kerneldir/include/linux
469 cp include/linux/version.h $kerneldir/include/linux/version.h
470 fi
471
472 # As of Linux kernel version 3.0.1, the clean target removes
473 # arch/powerpc/lib/crtsavres.o which is present in
474 # KBUILD_LDFLAGS_MODULE, making it required to build external modules.
475 if [ ${ARCH} = "powerpc" ]; then
Brad Bishop316dfdd2018-06-25 12:45:53 -0400476 if [ -e arch/powerpc/lib/crtsavres.o ]; then
477 mkdir -p $kerneldir/arch/powerpc/lib/
478 cp arch/powerpc/lib/crtsavres.o $kerneldir/arch/powerpc/lib/crtsavres.o
479 fi
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500480 fi
481
482 if [ -d include/generated ]; then
483 mkdir -p $kerneldir/include/generated/
484 cp -fR include/generated/* $kerneldir/include/generated/
485 fi
486
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500487 if [ -d arch/${ARCH}/include/generated ]; then
488 mkdir -p $kerneldir/arch/${ARCH}/include/generated/
489 cp -fR arch/${ARCH}/include/generated/* $kerneldir/arch/${ARCH}/include/generated/
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500490 fi
Brad Bishop19323692019-04-05 15:28:33 -0400491
492 if (grep -q -i -e '^CONFIG_UNWINDER_ORC=y$' $kerneldir/.config); then
493 # With CONFIG_UNWINDER_ORC (the default in 4.14), objtool is required for
494 # out-of-tree modules to be able to generate object files.
495 if [ -x tools/objtool/objtool ]; then
496 mkdir -p ${kerneldir}/tools/objtool
497 cp tools/objtool/objtool ${kerneldir}/tools/objtool/
498 fi
499 fi
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500500}
501
502# We don't need to stage anything, not the modules/firmware since those would clash with linux-firmware
503sysroot_stage_all () {
504 :
505}
506
Brad Bishop977dc1a2019-02-06 16:01:43 -0500507KERNEL_CONFIG_COMMAND ?= "oe_runmake_call -C ${S} CC="${KERNEL_CC}" O=${B} olddefconfig || oe_runmake -C ${S} O=${B} CC="${KERNEL_CC}" oldnoconfig"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500508
He Zhefe76b1e2016-05-25 04:47:16 -0400509python check_oldest_kernel() {
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500510 oldest_kernel = d.getVar('OLDEST_KERNEL')
511 kernel_version = d.getVar('KERNEL_VERSION')
512 tclibc = d.getVar('TCLIBC')
He Zhefe76b1e2016-05-25 04:47:16 -0400513 if tclibc == 'glibc':
514 kernel_version = kernel_version.split('-', 1)[0]
515 if oldest_kernel and kernel_version:
516 if bb.utils.vercmp_string(kernel_version, oldest_kernel) < 0:
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500517 bb.warn('%s: OLDEST_KERNEL is "%s" but the version of the kernel you are building is "%s" - therefore %s as built may not be compatible with this kernel. Either set OLDEST_KERNEL to an older version, or build a newer kernel.' % (d.getVar('PN'), oldest_kernel, kernel_version, tclibc))
He Zhefe76b1e2016-05-25 04:47:16 -0400518}
519
520check_oldest_kernel[vardepsexclude] += "OLDEST_KERNEL KERNEL_VERSION"
521do_configure[prefuncs] += "check_oldest_kernel"
522
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500523kernel_do_configure() {
524 # fixes extra + in /lib/modules/2.6.37+
525 # $ scripts/setlocalversion . => +
526 # $ make kernelversion => 2.6.37
527 # $ make kernelrelease => 2.6.37+
528 touch ${B}/.scmversion ${S}/.scmversion
529
530 if [ "${S}" != "${B}" ] && [ -f "${S}/.config" ] && [ ! -f "${B}/.config" ]; then
531 mv "${S}/.config" "${B}/.config"
532 fi
533
534 # Copy defconfig to .config if .config does not exist. This allows
535 # recipes to manage the .config themselves in do_configure_prepend().
536 if [ -f "${WORKDIR}/defconfig" ] && [ ! -f "${B}/.config" ]; then
537 cp "${WORKDIR}/defconfig" "${B}/.config"
538 fi
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500539
540 ${KERNEL_CONFIG_COMMAND}
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500541}
542
543do_savedefconfig() {
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600544 bbplain "Saving defconfig to:\n${B}/defconfig"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500545 oe_runmake -C ${B} savedefconfig
546}
547do_savedefconfig[nostamp] = "1"
548addtask savedefconfig after do_configure
549
550inherit cml1
551
Brad Bishop316dfdd2018-06-25 12:45:53 -0400552KCONFIG_CONFIG_COMMAND_append = " HOSTLDFLAGS='${BUILD_LDFLAGS}'"
553
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500554EXPORT_FUNCTIONS do_compile do_install do_configure
555
556# kernel-base becomes kernel-${KERNEL_VERSION}
He Zhefe76b1e2016-05-25 04:47:16 -0400557# kernel-image becomes kernel-image-${KERNEL_VERSION}
Brad Bishop316dfdd2018-06-25 12:45:53 -0400558PACKAGES = "${KERNEL_PACKAGE_NAME} ${KERNEL_PACKAGE_NAME}-base ${KERNEL_PACKAGE_NAME}-vmlinux ${KERNEL_PACKAGE_NAME}-image ${KERNEL_PACKAGE_NAME}-dev ${KERNEL_PACKAGE_NAME}-modules"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500559FILES_${PN} = ""
Brad Bishop316dfdd2018-06-25 12:45:53 -0400560FILES_${KERNEL_PACKAGE_NAME}-base = "${nonarch_base_libdir}/modules/${KERNEL_VERSION}/modules.order ${nonarch_base_libdir}/modules/${KERNEL_VERSION}/modules.builtin"
561FILES_${KERNEL_PACKAGE_NAME}-image = ""
562FILES_${KERNEL_PACKAGE_NAME}-dev = "/boot/System.map* /boot/Module.symvers* /boot/config* ${KERNEL_SRC_PATH} ${nonarch_base_libdir}/modules/${KERNEL_VERSION}/build"
563FILES_${KERNEL_PACKAGE_NAME}-vmlinux = "/boot/vmlinux-${KERNEL_VERSION_NAME}"
564FILES_${KERNEL_PACKAGE_NAME}-modules = ""
565RDEPENDS_${KERNEL_PACKAGE_NAME} = "${KERNEL_PACKAGE_NAME}-base"
He Zhefe76b1e2016-05-25 04:47:16 -0400566# Allow machines to override this dependency if kernel image files are
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500567# not wanted in images as standard
Brad Bishop316dfdd2018-06-25 12:45:53 -0400568RDEPENDS_${KERNEL_PACKAGE_NAME}-base ?= "${KERNEL_PACKAGE_NAME}-image"
569PKG_${KERNEL_PACKAGE_NAME}-image = "${KERNEL_PACKAGE_NAME}-image-${@legitimize_package_name('${KERNEL_VERSION}')}"
570RDEPENDS_${KERNEL_PACKAGE_NAME}-image += "${@oe.utils.conditional('KERNEL_IMAGETYPE', 'vmlinux', '${KERNEL_PACKAGE_NAME}-vmlinux', '', d)}"
571PKG_${KERNEL_PACKAGE_NAME}-base = "${KERNEL_PACKAGE_NAME}-${@legitimize_package_name('${KERNEL_VERSION}')}"
572RPROVIDES_${KERNEL_PACKAGE_NAME}-base += "${KERNEL_PACKAGE_NAME}-${KERNEL_VERSION}"
573ALLOW_EMPTY_${KERNEL_PACKAGE_NAME} = "1"
574ALLOW_EMPTY_${KERNEL_PACKAGE_NAME}-base = "1"
575ALLOW_EMPTY_${KERNEL_PACKAGE_NAME}-image = "1"
576ALLOW_EMPTY_${KERNEL_PACKAGE_NAME}-modules = "1"
577DESCRIPTION_${KERNEL_PACKAGE_NAME}-modules = "Kernel modules meta package"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500578
Brad Bishop316dfdd2018-06-25 12:45:53 -0400579pkg_postinst_${KERNEL_PACKAGE_NAME}-base () {
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500580 if [ ! -e "$D/lib/modules/${KERNEL_VERSION}" ]; then
581 mkdir -p $D/lib/modules/${KERNEL_VERSION}
582 fi
583 if [ -n "$D" ]; then
584 depmodwrapper -a -b $D ${KERNEL_VERSION}
585 else
586 depmod -a ${KERNEL_VERSION}
587 fi
588}
589
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500590PACKAGESPLITFUNCS_prepend = "split_kernel_packages "
591
592python split_kernel_packages () {
Brad Bishop19323692019-04-05 15:28:33 -0400593 do_split_packages(d, root='${nonarch_base_libdir}/firmware', file_regex=r'^(.*)\.(bin|fw|cis|csp|dsp)$', output_pattern='${KERNEL_PACKAGE_NAME}-firmware-%s', description='Firmware for %s', recursive=True, extra_depends='')
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500594}
595
596# Many scripts want to look in arch/$arch/boot for the bootable
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600597# image. This poses a problem for vmlinux and vmlinuz based
598# booting. This task arranges to have vmlinux and vmlinuz appear
599# in the normalized directory location.
600do_kernel_link_images() {
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500601 if [ ! -d "${B}/arch/${ARCH}/boot" ]; then
602 mkdir ${B}/arch/${ARCH}/boot
603 fi
604 cd ${B}/arch/${ARCH}/boot
605 ln -sf ../../../vmlinux
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600606 if [ -f ../../../vmlinuz ]; then
607 ln -sf ../../../vmlinuz
608 fi
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500609 if [ -f ../../../vmlinuz.bin ]; then
610 ln -sf ../../../vmlinuz.bin
611 fi
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500612}
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500613addtask kernel_link_images after do_compile before do_strip
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500614
615do_strip() {
616 if [ -n "${KERNEL_IMAGE_STRIP_EXTRA_SECTIONS}" ]; then
He Zhefe76b1e2016-05-25 04:47:16 -0400617 if ! (echo "${KERNEL_IMAGETYPES}" | grep -wq "vmlinux"); then
618 bbwarn "image type(s) will not be stripped (not supported): ${KERNEL_IMAGETYPES}"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500619 return
620 fi
621
622 cd ${B}
He Zhefe76b1e2016-05-25 04:47:16 -0400623 headers=`"$CROSS_COMPILE"readelf -S ${KERNEL_OUTPUT_DIR}/vmlinux | \
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500624 grep "^ \{1,\}\[[0-9 ]\{1,\}\] [^ ]" | \
625 sed "s/^ \{1,\}\[[0-9 ]\{1,\}\] //" | \
626 gawk '{print $1}'`
627
628 for str in ${KERNEL_IMAGE_STRIP_EXTRA_SECTIONS}; do {
Patrick Williamsf1e5d692016-03-30 15:21:19 -0500629 if ! (echo "$headers" | grep -q "^$str$"); then
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500630 bbwarn "Section not found: $str";
631 fi
632
He Zhefe76b1e2016-05-25 04:47:16 -0400633 "$CROSS_COMPILE"strip -s -R $str ${KERNEL_OUTPUT_DIR}/vmlinux
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500634 }; done
635
636 bbnote "KERNEL_IMAGE_STRIP_EXTRA_SECTIONS is set, stripping sections:" \
637 "${KERNEL_IMAGE_STRIP_EXTRA_SECTIONS}"
638 fi;
639}
640do_strip[dirs] = "${B}"
641
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500642addtask strip before do_sizecheck after do_kernel_link_images
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500643
644# Support checking the kernel size since some kernels need to reside in partitions
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500645# with a fixed length or there is a limit in transferring the kernel to memory.
646# If more than one image type is enabled, warn on any that don't fit but only fail
647# if none fit.
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500648do_sizecheck() {
649 if [ ! -z "${KERNEL_IMAGE_MAXSIZE}" ]; then
650 invalid=`echo ${KERNEL_IMAGE_MAXSIZE} | sed 's/[0-9]//g'`
651 if [ -n "$invalid" ]; then
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500652 die "Invalid KERNEL_IMAGE_MAXSIZE: ${KERNEL_IMAGE_MAXSIZE}, should be an integer (The unit is Kbytes)"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500653 fi
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500654 at_least_one_fits=
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800655 for imageType in ${KERNEL_IMAGETYPES} ; do
656 size=`du -ks ${B}/${KERNEL_OUTPUT_DIR}/$imageType | awk '{print $1}'`
He Zhefe76b1e2016-05-25 04:47:16 -0400657 if [ $size -ge ${KERNEL_IMAGE_MAXSIZE} ]; then
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800658 bbwarn "This kernel $imageType (size=$size(K) > ${KERNEL_IMAGE_MAXSIZE}(K)) is too big for your device."
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500659 else
660 at_least_one_fits=y
He Zhefe76b1e2016-05-25 04:47:16 -0400661 fi
662 done
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500663 if [ -z "$at_least_one_fits" ]; then
664 die "All kernel images are too big for your device. Please reduce the size of the kernel by making more of it modular."
665 fi
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500666 fi
667}
668do_sizecheck[dirs] = "${B}"
669
670addtask sizecheck before do_install after do_strip
671
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800672inherit kernel-artifact-names
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500673
674kernel_do_deploy() {
Brad Bishop316dfdd2018-06-25 12:45:53 -0400675 deployDir="${DEPLOYDIR}"
676 if [ -n "${KERNEL_DEPLOYSUBDIR}" ]; then
677 deployDir="${DEPLOYDIR}/${KERNEL_DEPLOYSUBDIR}"
678 mkdir "$deployDir"
679 fi
680
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800681 for imageType in ${KERNEL_IMAGETYPES} ; do
682 base_name=${imageType}-${KERNEL_IMAGE_NAME}
683 install -m 0644 ${KERNEL_OUTPUT_DIR}/${imageType} $deployDir/${base_name}.bin
684 symlink_name=${imageType}-${KERNEL_IMAGE_LINK_NAME}
685 ln -sf ${base_name}.bin $deployDir/${symlink_name}.bin
686 ln -sf ${base_name}.bin $deployDir/${imageType}
He Zhefe76b1e2016-05-25 04:47:16 -0400687 done
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800688
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500689 if [ ${MODULE_TARBALL_DEPLOY} = "1" ] && (grep -q -i -e '^CONFIG_MODULES=y$' .config); then
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800690 mkdir -p ${D}${root_prefix}/lib
691 tar -cvzf $deployDir/modules-${MODULE_TARBALL_NAME}.tgz -C ${D}${root_prefix} lib
692 ln -sf modules-${MODULE_TARBALL_NAME}.tgz $deployDir/modules-${MODULE_TARBALL_LINK_NAME}.tgz
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500693 fi
694
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800695 if [ ! -z "${INITRAMFS_IMAGE}" -a x"${INITRAMFS_IMAGE_BUNDLE}" = x1 ]; then
696 for imageType in ${KERNEL_IMAGETYPES} ; do
Brad Bishop977dc1a2019-02-06 16:01:43 -0500697 if [ "$imageType" = "fitImage" ] ; then
698 continue
699 fi
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800700 initramfs_base_name=${imageType}-${INITRAMFS_NAME}
701 initramfs_symlink_name=${imageType}-${INITRAMFS_LINK_NAME}
702 install -m 0644 ${KERNEL_OUTPUT_DIR}/${imageType}.initramfs $deployDir/${initramfs_base_name}.bin
Brad Bishop316dfdd2018-06-25 12:45:53 -0400703 ln -sf ${initramfs_base_name}.bin $deployDir/${initramfs_symlink_name}.bin
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800704 done
705 fi
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500706}
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500707do_deploy[cleandirs] = "${DEPLOYDIR}"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500708do_deploy[dirs] = "${DEPLOYDIR} ${B}"
709do_deploy[prefuncs] += "package_get_auto_pr"
710
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500711addtask deploy after do_populate_sysroot do_packagedata
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500712
713EXPORT_FUNCTIONS do_deploy
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500714
715# Add using Device Tree support
716inherit kernel-devicetree