blob: 45cb4fabc1855447255a5743790017a360eed192 [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}"
133base_do_unpack_append () {
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}
150
151inherit kernel-arch deploy
152
Brad Bishop316dfdd2018-06-25 12:45:53 -0400153PACKAGES_DYNAMIC += "^${KERNEL_PACKAGE_NAME}-module-.*"
154PACKAGES_DYNAMIC += "^${KERNEL_PACKAGE_NAME}-image-.*"
155PACKAGES_DYNAMIC += "^${KERNEL_PACKAGE_NAME}-firmware-.*"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500156
157export OS = "${TARGET_OS}"
158export CROSS_COMPILE = "${TARGET_PREFIX}"
Brad Bishop316dfdd2018-06-25 12:45:53 -0400159export KBUILD_BUILD_VERSION = "1"
Brad Bishop977dc1a2019-02-06 16:01:43 -0500160export KBUILD_BUILD_USER ?= "oe-user"
161export KBUILD_BUILD_HOST ?= "oe-host"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500162
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500163KERNEL_RELEASE ?= "${KERNEL_VERSION}"
164
He Zhefe76b1e2016-05-25 04:47:16 -0400165# The directory where built kernel lies in the kernel tree
166KERNEL_OUTPUT_DIR ?= "arch/${ARCH}/boot"
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800167KERNEL_IMAGEDEST ?= "boot"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500168
169#
170# configuration
171#
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500172export CMDLINE_CONSOLE = "console=${@d.getVar("KERNEL_CONSOLE") or "ttyS0"}"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500173
174KERNEL_VERSION = "${@get_kernelversion_headers('${B}')}"
175
176KERNEL_LOCALVERSION ?= ""
177
178# kernels are generally machine specific
179PACKAGE_ARCH = "${MACHINE_ARCH}"
180
181# U-Boot support
182UBOOT_ENTRYPOINT ?= "20008000"
183UBOOT_LOADADDRESS ?= "${UBOOT_ENTRYPOINT}"
184
185# Some Linux kernel configurations need additional parameters on the command line
186KERNEL_EXTRA_ARGS ?= ""
187
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500188EXTRA_OEMAKE = " HOSTCC="${BUILD_CC} ${BUILD_CFLAGS} ${BUILD_LDFLAGS}" HOSTCPP="${BUILD_CPP}""
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500189KERNEL_ALT_IMAGETYPE ??= ""
190
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500191copy_initramfs() {
192 echo "Copying initramfs into ./usr ..."
193 # In case the directory is not created yet from the first pass compile:
194 mkdir -p ${B}/usr
195 # Find and use the first initramfs image archive type we find
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500196 rm -f ${B}/usr/${INITRAMFS_IMAGE_NAME}.cpio
Brad Bishop37a0e4d2017-12-04 01:01:44 -0500197 for img in cpio cpio.gz cpio.lz4 cpio.lzo cpio.lzma cpio.xz; do
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500198 if [ -e "${DEPLOY_DIR_IMAGE}/${INITRAMFS_IMAGE_NAME}.$img" ]; then
199 cp ${DEPLOY_DIR_IMAGE}/${INITRAMFS_IMAGE_NAME}.$img ${B}/usr/.
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500200 case $img in
201 *gz)
202 echo "gzip decompressing image"
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500203 gunzip -f ${B}/usr/${INITRAMFS_IMAGE_NAME}.$img
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500204 break
205 ;;
206 *lz4)
207 echo "lz4 decompressing image"
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500208 lz4 -df ${B}/usr/${INITRAMFS_IMAGE_NAME}.$img
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500209 break
210 ;;
211 *lzo)
212 echo "lzo decompressing image"
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500213 lzop -df ${B}/usr/${INITRAMFS_IMAGE_NAME}.$img
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500214 break
215 ;;
216 *lzma)
217 echo "lzma decompressing image"
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500218 lzma -df ${B}/usr/${INITRAMFS_IMAGE_NAME}.$img
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500219 break
220 ;;
221 *xz)
222 echo "xz decompressing image"
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500223 xz -df ${B}/usr/${INITRAMFS_IMAGE_NAME}.$img
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500224 break
225 ;;
226 esac
227 fi
228 done
229 echo "Finished copy of initramfs into ./usr"
230}
231
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500232do_bundle_initramfs () {
233 if [ ! -z "${INITRAMFS_IMAGE}" -a x"${INITRAMFS_IMAGE_BUNDLE}" = x1 ]; then
234 echo "Creating a kernel image with a bundled initramfs..."
235 copy_initramfs
He Zhefe76b1e2016-05-25 04:47:16 -0400236 # Backing up kernel image relies on its type(regular file or symbolic link)
237 tmp_path=""
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800238 for imageType in ${KERNEL_IMAGETYPE_FOR_MAKE} ; do
239 if [ -h ${KERNEL_OUTPUT_DIR}/$imageType ] ; then
240 linkpath=`readlink -n ${KERNEL_OUTPUT_DIR}/$imageType`
241 realpath=`readlink -fn ${KERNEL_OUTPUT_DIR}/$imageType`
He Zhefe76b1e2016-05-25 04:47:16 -0400242 mv -f $realpath $realpath.bak
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800243 tmp_path=$tmp_path" "$imageType"#"$linkpath"#"$realpath
244 elif [ -f ${KERNEL_OUTPUT_DIR}/$imageType ]; then
245 mv -f ${KERNEL_OUTPUT_DIR}/$imageType ${KERNEL_OUTPUT_DIR}/$imageType.bak
246 tmp_path=$tmp_path" "$imageType"##"
He Zhefe76b1e2016-05-25 04:47:16 -0400247 fi
248 done
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500249 use_alternate_initrd=CONFIG_INITRAMFS_SOURCE=${B}/usr/${INITRAMFS_IMAGE_NAME}.cpio
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500250 kernel_do_compile
He Zhefe76b1e2016-05-25 04:47:16 -0400251 # Restoring kernel image
252 for tp in $tmp_path ; do
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800253 imageType=`echo $tp|cut -d "#" -f 1`
He Zhefe76b1e2016-05-25 04:47:16 -0400254 linkpath=`echo $tp|cut -d "#" -f 2`
255 realpath=`echo $tp|cut -d "#" -f 3`
256 if [ -n "$realpath" ]; then
257 mv -f $realpath $realpath.initramfs
258 mv -f $realpath.bak $realpath
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800259 ln -sf $linkpath.initramfs ${B}/${KERNEL_OUTPUT_DIR}/$imageType.initramfs
He Zhefe76b1e2016-05-25 04:47:16 -0400260 else
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800261 mv -f ${KERNEL_OUTPUT_DIR}/$imageType ${KERNEL_OUTPUT_DIR}/$imageType.initramfs
262 mv -f ${KERNEL_OUTPUT_DIR}/$imageType.bak ${KERNEL_OUTPUT_DIR}/$imageType
He Zhefe76b1e2016-05-25 04:47:16 -0400263 fi
264 done
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500265 fi
266}
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600267do_bundle_initramfs[dirs] = "${B}"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500268
269python do_devshell_prepend () {
270 os.environ["LDFLAGS"] = ''
271}
272
273addtask bundle_initramfs after do_install before do_deploy
274
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500275get_cc_option () {
276 # Check if KERNEL_CC supports the option "file-prefix-map".
277 # This option allows us to build images with __FILE__ values that do not
278 # contain the host build path.
279 if ${KERNEL_CC} -Q --help=joined | grep -q "\-ffile-prefix-map=<old=new>"; then
280 echo "-ffile-prefix-map=${S}=/kernel-source/"
281 fi
282}
283
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500284kernel_do_compile() {
285 unset CFLAGS CPPFLAGS CXXFLAGS LDFLAGS MACHINE
Brad Bishop316dfdd2018-06-25 12:45:53 -0400286 if [ "${BUILD_REPRODUCIBLE_BINARIES}" = "1" ]; then
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500287 # kernel sources do not use do_unpack, so SOURCE_DATE_EPOCH may not
288 # be set....
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800289 if [ "${SOURCE_DATE_EPOCH}" = "" -o "${SOURCE_DATE_EPOCH}" = "0" ]; then
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500290 olddir=`pwd`
291 cd ${S}
292 SOURCE_DATE_EPOCH=`git log -1 --pretty=%ct`
293 # git repo not guaranteed, so fall back to REPRODUCIBLE_TIMESTAMP_ROOTFS
294 if [ $? -ne 0 ]; then
295 SOURCE_DATE_EPOCH=${REPRODUCIBLE_TIMESTAMP_ROOTFS}
296 fi
297 cd $olddir
298 fi
299
300 ts=`LC_ALL=C date -d @$SOURCE_DATE_EPOCH`
301 export KBUILD_BUILD_TIMESTAMP="$ts"
302 export KCONFIG_NOTIMESTAMP=1
303 bbnote "KBUILD_BUILD_TIMESTAMP: $ts"
304 fi
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500305 # The $use_alternate_initrd is only set from
306 # do_bundle_initramfs() This variable is specifically for the
307 # case where we are making a second pass at the kernel
308 # compilation and we want to force the kernel build to use a
309 # different initramfs image. The way to do that in the kernel
310 # is to specify:
311 # make ...args... CONFIG_INITRAMFS_SOURCE=some_other_initramfs.cpio
312 if [ "$use_alternate_initrd" = "" ] && [ "${INITRAMFS_TASK}" != "" ] ; then
313 # The old style way of copying an prebuilt image and building it
314 # is turned on via INTIRAMFS_TASK != ""
315 copy_initramfs
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500316 use_alternate_initrd=CONFIG_INITRAMFS_SOURCE=${B}/usr/${INITRAMFS_IMAGE_NAME}.cpio
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500317 fi
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500318 cc_extra=$(get_cc_option)
He Zhefe76b1e2016-05-25 04:47:16 -0400319 for typeformake in ${KERNEL_IMAGETYPE_FOR_MAKE} ; do
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500320 oe_runmake ${typeformake} CC="${KERNEL_CC} $cc_extra " LD="${KERNEL_LD}" ${KERNEL_EXTRA_ARGS} $use_alternate_initrd
He Zhefe76b1e2016-05-25 04:47:16 -0400321 done
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500322 # vmlinux.gz is not built by kernel
323 if (echo "${KERNEL_IMAGETYPES}" | grep -wq "vmlinux\.gz"); then
324 mkdir -p "${KERNEL_OUTPUT_DIR}"
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500325 gzip -9cn < ${B}/vmlinux > "${KERNEL_OUTPUT_DIR}/vmlinux.gz"
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500326 fi
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500327}
328
329do_compile_kernelmodules() {
330 unset CFLAGS CPPFLAGS CXXFLAGS LDFLAGS MACHINE
331 if (grep -q -i -e '^CONFIG_MODULES=y$' ${B}/.config); then
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500332 cc_extra=$(get_cc_option)
333 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 -0500334
335 # Module.symvers gets updated during the
336 # building of the kernel modules. We need to
337 # update this in the shared workdir since some
338 # external kernel modules has a dependency on
339 # other kernel modules and will look at this
340 # file to do symbol lookups
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600341 cp ${B}/Module.symvers ${STAGING_KERNEL_BUILDDIR}/
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500342 else
343 bbnote "no modules to compile"
344 fi
345}
346addtask compile_kernelmodules after do_compile before do_strip
347
348kernel_do_install() {
349 #
350 # First install the modules
351 #
352 unset CFLAGS CPPFLAGS CXXFLAGS LDFLAGS MACHINE
353 if (grep -q -i -e '^CONFIG_MODULES=y$' .config); then
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500354 oe_runmake DEPMOD=echo MODLIB=${D}${nonarch_base_libdir}/modules/${KERNEL_VERSION} INSTALL_FW_PATH=${D}${nonarch_base_libdir}/firmware modules_install
355 rm "${D}${nonarch_base_libdir}/modules/${KERNEL_VERSION}/build"
356 rm "${D}${nonarch_base_libdir}/modules/${KERNEL_VERSION}/source"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500357 # If the kernel/ directory is empty remove it to prevent QA issues
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500358 rmdir --ignore-fail-on-non-empty "${D}${nonarch_base_libdir}/modules/${KERNEL_VERSION}/kernel"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500359 else
360 bbnote "no modules to install"
361 fi
362
363 #
364 # Install various kernel output (zImage, map file, config, module support files)
365 #
366 install -d ${D}/${KERNEL_IMAGEDEST}
367 install -d ${D}/boot
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800368 for imageType in ${KERNEL_IMAGETYPES} ; do
369 install -m 0644 ${KERNEL_OUTPUT_DIR}/${imageType} ${D}/${KERNEL_IMAGEDEST}/${imageType}-${KERNEL_VERSION}
Brad Bishop316dfdd2018-06-25 12:45:53 -0400370 if [ "${KERNEL_PACKAGE_NAME}" = "kernel" ]; then
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800371 ln -sf ${imageType}-${KERNEL_VERSION} ${D}/${KERNEL_IMAGEDEST}/${imageType}
Brad Bishop316dfdd2018-06-25 12:45:53 -0400372 fi
He Zhefe76b1e2016-05-25 04:47:16 -0400373 done
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500374 install -m 0644 System.map ${D}/boot/System.map-${KERNEL_VERSION}
375 install -m 0644 .config ${D}/boot/config-${KERNEL_VERSION}
376 install -m 0644 vmlinux ${D}/boot/vmlinux-${KERNEL_VERSION}
377 [ -e Module.symvers ] && install -m 0644 Module.symvers ${D}/boot/Module.symvers-${KERNEL_VERSION}
378 install -d ${D}${sysconfdir}/modules-load.d
379 install -d ${D}${sysconfdir}/modprobe.d
380}
381do_install[prefuncs] += "package_get_auto_pr"
382
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600383# Must be ran no earlier than after do_kernel_checkout or else Makefile won't be in ${S}/Makefile
384do_kernel_version_sanity_check() {
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500385 if [ "x${KERNEL_VERSION_SANITY_SKIP}" = "x1" ]; then
386 exit 0
387 fi
388
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600389 # The Makefile determines the kernel version shown at runtime
390 # Don't use KERNEL_VERSION because the headers it grabs the version from aren't generated until do_compile
391 VERSION=$(grep "^VERSION =" ${S}/Makefile | sed s/.*=\ *//)
392 PATCHLEVEL=$(grep "^PATCHLEVEL =" ${S}/Makefile | sed s/.*=\ *//)
393 SUBLEVEL=$(grep "^SUBLEVEL =" ${S}/Makefile | sed s/.*=\ *//)
394 EXTRAVERSION=$(grep "^EXTRAVERSION =" ${S}/Makefile | sed s/.*=\ *//)
395
396 # Build a string for regex and a plain version string
397 reg="^${VERSION}\.${PATCHLEVEL}"
398 vers="${VERSION}.${PATCHLEVEL}"
399 if [ -n "${SUBLEVEL}" ]; then
400 # Ignoring a SUBLEVEL of zero is fine
401 if [ "${SUBLEVEL}" = "0" ]; then
402 reg="${reg}(\.${SUBLEVEL})?"
403 else
404 reg="${reg}\.${SUBLEVEL}"
405 vers="${vers}.${SUBLEVEL}"
406 fi
407 fi
408 vers="${vers}${EXTRAVERSION}"
409 reg="${reg}${EXTRAVERSION}"
410
411 if [ -z `echo ${PV} | grep -E "${reg}"` ]; then
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500412 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 -0600413 fi
414 exit 0
415}
416
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500417addtask shared_workdir after do_compile before do_compile_kernelmodules
418addtask shared_workdir_setscene
419
420do_shared_workdir_setscene () {
421 exit 1
422}
423
424emit_depmod_pkgdata() {
425 # Stash data for depmod
Brad Bishop316dfdd2018-06-25 12:45:53 -0400426 install -d ${PKGDESTWORK}/${KERNEL_PACKAGE_NAME}-depmod/
427 echo "${KERNEL_VERSION}" > ${PKGDESTWORK}/${KERNEL_PACKAGE_NAME}-depmod/${KERNEL_PACKAGE_NAME}-abiversion
428 cp ${B}/System.map ${PKGDESTWORK}/${KERNEL_PACKAGE_NAME}-depmod/System.map-${KERNEL_VERSION}
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500429}
430
431PACKAGEFUNCS += "emit_depmod_pkgdata"
432
Brad Bishop316dfdd2018-06-25 12:45:53 -0400433do_shared_workdir[cleandirs] += " ${STAGING_KERNEL_BUILDDIR}"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500434do_shared_workdir () {
435 cd ${B}
436
437 kerneldir=${STAGING_KERNEL_BUILDDIR}
438 install -d $kerneldir
439
440 #
441 # Store the kernel version in sysroots for module-base.bbclass
442 #
443
Brad Bishop316dfdd2018-06-25 12:45:53 -0400444 echo "${KERNEL_VERSION}" > $kerneldir/${KERNEL_PACKAGE_NAME}-abiversion
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500445
446 # Copy files required for module builds
447 cp System.map $kerneldir/System.map-${KERNEL_VERSION}
448 cp Module.symvers $kerneldir/
449 cp .config $kerneldir/
450 mkdir -p $kerneldir/include/config
451 cp include/config/kernel.release $kerneldir/include/config/kernel.release
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600452 if [ -e certs/signing_key.pem ]; then
453 # The signing_key.* files are stored in the certs/ dir in
454 # newer Linux kernels
455 mkdir -p $kerneldir/certs
456 cp certs/signing_key.* $kerneldir/certs/
457 elif [ -e signing_key.priv ]; then
458 cp signing_key.* $kerneldir/
459 fi
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500460
461 # We can also copy over all the generated files and avoid special cases
462 # like version.h, but we've opted to keep this small until file creep starts
463 # to happen
464 if [ -e include/linux/version.h ]; then
465 mkdir -p $kerneldir/include/linux
466 cp include/linux/version.h $kerneldir/include/linux/version.h
467 fi
468
469 # As of Linux kernel version 3.0.1, the clean target removes
470 # arch/powerpc/lib/crtsavres.o which is present in
471 # KBUILD_LDFLAGS_MODULE, making it required to build external modules.
472 if [ ${ARCH} = "powerpc" ]; then
Brad Bishop316dfdd2018-06-25 12:45:53 -0400473 if [ -e arch/powerpc/lib/crtsavres.o ]; then
474 mkdir -p $kerneldir/arch/powerpc/lib/
475 cp arch/powerpc/lib/crtsavres.o $kerneldir/arch/powerpc/lib/crtsavres.o
476 fi
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500477 fi
478
479 if [ -d include/generated ]; then
480 mkdir -p $kerneldir/include/generated/
481 cp -fR include/generated/* $kerneldir/include/generated/
482 fi
483
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500484 if [ -d arch/${ARCH}/include/generated ]; then
485 mkdir -p $kerneldir/arch/${ARCH}/include/generated/
486 cp -fR arch/${ARCH}/include/generated/* $kerneldir/arch/${ARCH}/include/generated/
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500487 fi
488}
489
490# We don't need to stage anything, not the modules/firmware since those would clash with linux-firmware
491sysroot_stage_all () {
492 :
493}
494
Brad Bishop977dc1a2019-02-06 16:01:43 -0500495KERNEL_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 -0500496
He Zhefe76b1e2016-05-25 04:47:16 -0400497python check_oldest_kernel() {
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500498 oldest_kernel = d.getVar('OLDEST_KERNEL')
499 kernel_version = d.getVar('KERNEL_VERSION')
500 tclibc = d.getVar('TCLIBC')
He Zhefe76b1e2016-05-25 04:47:16 -0400501 if tclibc == 'glibc':
502 kernel_version = kernel_version.split('-', 1)[0]
503 if oldest_kernel and kernel_version:
504 if bb.utils.vercmp_string(kernel_version, oldest_kernel) < 0:
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500505 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 -0400506}
507
508check_oldest_kernel[vardepsexclude] += "OLDEST_KERNEL KERNEL_VERSION"
509do_configure[prefuncs] += "check_oldest_kernel"
510
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500511kernel_do_configure() {
512 # fixes extra + in /lib/modules/2.6.37+
513 # $ scripts/setlocalversion . => +
514 # $ make kernelversion => 2.6.37
515 # $ make kernelrelease => 2.6.37+
516 touch ${B}/.scmversion ${S}/.scmversion
517
518 if [ "${S}" != "${B}" ] && [ -f "${S}/.config" ] && [ ! -f "${B}/.config" ]; then
519 mv "${S}/.config" "${B}/.config"
520 fi
521
522 # Copy defconfig to .config if .config does not exist. This allows
523 # recipes to manage the .config themselves in do_configure_prepend().
524 if [ -f "${WORKDIR}/defconfig" ] && [ ! -f "${B}/.config" ]; then
525 cp "${WORKDIR}/defconfig" "${B}/.config"
526 fi
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500527
528 ${KERNEL_CONFIG_COMMAND}
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500529}
530
531do_savedefconfig() {
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600532 bbplain "Saving defconfig to:\n${B}/defconfig"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500533 oe_runmake -C ${B} savedefconfig
534}
535do_savedefconfig[nostamp] = "1"
536addtask savedefconfig after do_configure
537
538inherit cml1
539
Brad Bishop316dfdd2018-06-25 12:45:53 -0400540KCONFIG_CONFIG_COMMAND_append = " HOSTLDFLAGS='${BUILD_LDFLAGS}'"
541
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500542EXPORT_FUNCTIONS do_compile do_install do_configure
543
544# kernel-base becomes kernel-${KERNEL_VERSION}
He Zhefe76b1e2016-05-25 04:47:16 -0400545# kernel-image becomes kernel-image-${KERNEL_VERSION}
Brad Bishop316dfdd2018-06-25 12:45:53 -0400546PACKAGES = "${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 -0500547FILES_${PN} = ""
Brad Bishop316dfdd2018-06-25 12:45:53 -0400548FILES_${KERNEL_PACKAGE_NAME}-base = "${nonarch_base_libdir}/modules/${KERNEL_VERSION}/modules.order ${nonarch_base_libdir}/modules/${KERNEL_VERSION}/modules.builtin"
549FILES_${KERNEL_PACKAGE_NAME}-image = ""
550FILES_${KERNEL_PACKAGE_NAME}-dev = "/boot/System.map* /boot/Module.symvers* /boot/config* ${KERNEL_SRC_PATH} ${nonarch_base_libdir}/modules/${KERNEL_VERSION}/build"
551FILES_${KERNEL_PACKAGE_NAME}-vmlinux = "/boot/vmlinux-${KERNEL_VERSION_NAME}"
552FILES_${KERNEL_PACKAGE_NAME}-modules = ""
553RDEPENDS_${KERNEL_PACKAGE_NAME} = "${KERNEL_PACKAGE_NAME}-base"
He Zhefe76b1e2016-05-25 04:47:16 -0400554# Allow machines to override this dependency if kernel image files are
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500555# not wanted in images as standard
Brad Bishop316dfdd2018-06-25 12:45:53 -0400556RDEPENDS_${KERNEL_PACKAGE_NAME}-base ?= "${KERNEL_PACKAGE_NAME}-image"
557PKG_${KERNEL_PACKAGE_NAME}-image = "${KERNEL_PACKAGE_NAME}-image-${@legitimize_package_name('${KERNEL_VERSION}')}"
558RDEPENDS_${KERNEL_PACKAGE_NAME}-image += "${@oe.utils.conditional('KERNEL_IMAGETYPE', 'vmlinux', '${KERNEL_PACKAGE_NAME}-vmlinux', '', d)}"
559PKG_${KERNEL_PACKAGE_NAME}-base = "${KERNEL_PACKAGE_NAME}-${@legitimize_package_name('${KERNEL_VERSION}')}"
560RPROVIDES_${KERNEL_PACKAGE_NAME}-base += "${KERNEL_PACKAGE_NAME}-${KERNEL_VERSION}"
561ALLOW_EMPTY_${KERNEL_PACKAGE_NAME} = "1"
562ALLOW_EMPTY_${KERNEL_PACKAGE_NAME}-base = "1"
563ALLOW_EMPTY_${KERNEL_PACKAGE_NAME}-image = "1"
564ALLOW_EMPTY_${KERNEL_PACKAGE_NAME}-modules = "1"
565DESCRIPTION_${KERNEL_PACKAGE_NAME}-modules = "Kernel modules meta package"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500566
Brad Bishop316dfdd2018-06-25 12:45:53 -0400567pkg_postinst_${KERNEL_PACKAGE_NAME}-base () {
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500568 if [ ! -e "$D/lib/modules/${KERNEL_VERSION}" ]; then
569 mkdir -p $D/lib/modules/${KERNEL_VERSION}
570 fi
571 if [ -n "$D" ]; then
572 depmodwrapper -a -b $D ${KERNEL_VERSION}
573 else
574 depmod -a ${KERNEL_VERSION}
575 fi
576}
577
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500578PACKAGESPLITFUNCS_prepend = "split_kernel_packages "
579
580python split_kernel_packages () {
Brad Bishop316dfdd2018-06-25 12:45:53 -0400581 do_split_packages(d, root='${nonarch_base_libdir}/firmware', file_regex='^(.*)\.(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 -0500582}
583
584# Many scripts want to look in arch/$arch/boot for the bootable
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600585# image. This poses a problem for vmlinux and vmlinuz based
586# booting. This task arranges to have vmlinux and vmlinuz appear
587# in the normalized directory location.
588do_kernel_link_images() {
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500589 if [ ! -d "${B}/arch/${ARCH}/boot" ]; then
590 mkdir ${B}/arch/${ARCH}/boot
591 fi
592 cd ${B}/arch/${ARCH}/boot
593 ln -sf ../../../vmlinux
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600594 if [ -f ../../../vmlinuz ]; then
595 ln -sf ../../../vmlinuz
596 fi
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500597 if [ -f ../../../vmlinuz.bin ]; then
598 ln -sf ../../../vmlinuz.bin
599 fi
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500600}
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500601addtask kernel_link_images after do_compile before do_strip
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500602
603do_strip() {
604 if [ -n "${KERNEL_IMAGE_STRIP_EXTRA_SECTIONS}" ]; then
He Zhefe76b1e2016-05-25 04:47:16 -0400605 if ! (echo "${KERNEL_IMAGETYPES}" | grep -wq "vmlinux"); then
606 bbwarn "image type(s) will not be stripped (not supported): ${KERNEL_IMAGETYPES}"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500607 return
608 fi
609
610 cd ${B}
He Zhefe76b1e2016-05-25 04:47:16 -0400611 headers=`"$CROSS_COMPILE"readelf -S ${KERNEL_OUTPUT_DIR}/vmlinux | \
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500612 grep "^ \{1,\}\[[0-9 ]\{1,\}\] [^ ]" | \
613 sed "s/^ \{1,\}\[[0-9 ]\{1,\}\] //" | \
614 gawk '{print $1}'`
615
616 for str in ${KERNEL_IMAGE_STRIP_EXTRA_SECTIONS}; do {
Patrick Williamsf1e5d692016-03-30 15:21:19 -0500617 if ! (echo "$headers" | grep -q "^$str$"); then
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500618 bbwarn "Section not found: $str";
619 fi
620
He Zhefe76b1e2016-05-25 04:47:16 -0400621 "$CROSS_COMPILE"strip -s -R $str ${KERNEL_OUTPUT_DIR}/vmlinux
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500622 }; done
623
624 bbnote "KERNEL_IMAGE_STRIP_EXTRA_SECTIONS is set, stripping sections:" \
625 "${KERNEL_IMAGE_STRIP_EXTRA_SECTIONS}"
626 fi;
627}
628do_strip[dirs] = "${B}"
629
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500630addtask strip before do_sizecheck after do_kernel_link_images
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500631
632# Support checking the kernel size since some kernels need to reside in partitions
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500633# with a fixed length or there is a limit in transferring the kernel to memory.
634# If more than one image type is enabled, warn on any that don't fit but only fail
635# if none fit.
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500636do_sizecheck() {
637 if [ ! -z "${KERNEL_IMAGE_MAXSIZE}" ]; then
638 invalid=`echo ${KERNEL_IMAGE_MAXSIZE} | sed 's/[0-9]//g'`
639 if [ -n "$invalid" ]; then
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500640 die "Invalid KERNEL_IMAGE_MAXSIZE: ${KERNEL_IMAGE_MAXSIZE}, should be an integer (The unit is Kbytes)"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500641 fi
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500642 at_least_one_fits=
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800643 for imageType in ${KERNEL_IMAGETYPES} ; do
644 size=`du -ks ${B}/${KERNEL_OUTPUT_DIR}/$imageType | awk '{print $1}'`
He Zhefe76b1e2016-05-25 04:47:16 -0400645 if [ $size -ge ${KERNEL_IMAGE_MAXSIZE} ]; then
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800646 bbwarn "This kernel $imageType (size=$size(K) > ${KERNEL_IMAGE_MAXSIZE}(K)) is too big for your device."
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500647 else
648 at_least_one_fits=y
He Zhefe76b1e2016-05-25 04:47:16 -0400649 fi
650 done
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500651 if [ -z "$at_least_one_fits" ]; then
652 die "All kernel images are too big for your device. Please reduce the size of the kernel by making more of it modular."
653 fi
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500654 fi
655}
656do_sizecheck[dirs] = "${B}"
657
658addtask sizecheck before do_install after do_strip
659
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800660inherit kernel-artifact-names
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500661
662kernel_do_deploy() {
Brad Bishop316dfdd2018-06-25 12:45:53 -0400663 deployDir="${DEPLOYDIR}"
664 if [ -n "${KERNEL_DEPLOYSUBDIR}" ]; then
665 deployDir="${DEPLOYDIR}/${KERNEL_DEPLOYSUBDIR}"
666 mkdir "$deployDir"
667 fi
668
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800669 for imageType in ${KERNEL_IMAGETYPES} ; do
670 base_name=${imageType}-${KERNEL_IMAGE_NAME}
671 install -m 0644 ${KERNEL_OUTPUT_DIR}/${imageType} $deployDir/${base_name}.bin
672 symlink_name=${imageType}-${KERNEL_IMAGE_LINK_NAME}
673 ln -sf ${base_name}.bin $deployDir/${symlink_name}.bin
674 ln -sf ${base_name}.bin $deployDir/${imageType}
He Zhefe76b1e2016-05-25 04:47:16 -0400675 done
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800676
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500677 if [ ${MODULE_TARBALL_DEPLOY} = "1" ] && (grep -q -i -e '^CONFIG_MODULES=y$' .config); then
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800678 mkdir -p ${D}${root_prefix}/lib
679 tar -cvzf $deployDir/modules-${MODULE_TARBALL_NAME}.tgz -C ${D}${root_prefix} lib
680 ln -sf modules-${MODULE_TARBALL_NAME}.tgz $deployDir/modules-${MODULE_TARBALL_LINK_NAME}.tgz
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500681 fi
682
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800683 if [ ! -z "${INITRAMFS_IMAGE}" -a x"${INITRAMFS_IMAGE_BUNDLE}" = x1 ]; then
684 for imageType in ${KERNEL_IMAGETYPES} ; do
Brad Bishop977dc1a2019-02-06 16:01:43 -0500685 if [ "$imageType" = "fitImage" ] ; then
686 continue
687 fi
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800688 initramfs_base_name=${imageType}-${INITRAMFS_NAME}
689 initramfs_symlink_name=${imageType}-${INITRAMFS_LINK_NAME}
690 install -m 0644 ${KERNEL_OUTPUT_DIR}/${imageType}.initramfs $deployDir/${initramfs_base_name}.bin
Brad Bishop316dfdd2018-06-25 12:45:53 -0400691 ln -sf ${initramfs_base_name}.bin $deployDir/${initramfs_symlink_name}.bin
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800692 done
693 fi
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500694}
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500695do_deploy[cleandirs] = "${DEPLOYDIR}"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500696do_deploy[dirs] = "${DEPLOYDIR} ${B}"
697do_deploy[prefuncs] += "package_get_auto_pr"
698
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500699addtask deploy after do_populate_sysroot do_packagedata
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500700
701EXPORT_FUNCTIONS do_deploy
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500702
703# Add using Device Tree support
704inherit kernel-devicetree