aboutsummaryrefslogtreecommitdiffstats
path: root/meta-ti-bsp/classes/kernel-fitimage-legacyhs.bbclass
blob: 5e1fa56a57f33e031085782e7bc5b63ab64a7387 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
inherit ti-secdev kernel-uboot uboot-sign-legacyhs

FITIMAGE_HASH_ALGO ?= "sha1"
FITIMAGE_PACK_TEE ?= "0"
FITIMAGE_DTB_BY_NAME ?= "0"
FITIMAGE_TEE_BY_NAME ?= "0"
FITIMAGE_CONF_BY_NAME ?= "0"

python __anonymous () {
    kerneltypes = d.getVar('KERNEL_IMAGETYPES') or ""
    if 'fitImage' in kerneltypes.split():
        depends = d.getVar("DEPENDS")
        depends = "%s u-boot-mkimage-native dtc-native" % depends
        d.setVar("DEPENDS", depends)

        uarch = d.getVar("UBOOT_ARCH")
        if uarch == "arm64":
            replacementtype = "Image"
        elif uarch == "mips":
            replacementtype = "vmlinuz.bin"
        elif uarch == "x86":
            replacementtype = "bzImage"
        elif uarch == "microblaze":
            replacementtype = "linux.bin"
        else:
            replacementtype = "zImage"

        # Override KERNEL_IMAGETYPE_FOR_MAKE variable, which is internal
        # to kernel.bbclass . We have to override it, since we pack zImage
        # (at least for now) into the fitImage .
        typeformake = d.getVar("KERNEL_IMAGETYPE_FOR_MAKE") or ""
        if 'fitImage' in typeformake.split():
            d.setVar('KERNEL_IMAGETYPE_FOR_MAKE', typeformake.replace('fitImage', replacementtype))

        image = d.getVar('INITRAMFS_IMAGE')
        if image:
            d.appendVarFlag('do_assemble_fitimage_initramfs', 'depends', ' ${INITRAMFS_IMAGE}:do_image_complete')

        # Verified boot will sign the fitImage and append the public key to
        # U-boot dtb. We ensure the U-Boot dtb is deployed before assembling
        # the fitImage:
        if d.getVar('UBOOT_SIGN_ENABLE'):
            uboot_pn = d.getVar('PREFERRED_PROVIDER_u-boot') or 'u-boot'
            d.appendVarFlag('do_assemble_fitimage', 'depends', ' %s:do_deploy' % uboot_pn)

        if d.getVar('FITIMAGE_PACK_TEE') == "1":
            d.appendVarFlag('do_assemble_fitimage', 'depends', ' optee-os:do_deploy')
}

# Options for the device tree compiler passed to mkimage '-D' feature:
UBOOT_MKIMAGE_DTCOPTS ??= ""

fitimage_ti_secure() {
	if test -f "${TI_SECURE_DEV_PKG}/scripts/secure-binary-image.sh"; then
		export TI_SECURE_DEV_PKG=${TI_SECURE_DEV_PKG}
		${TI_SECURE_DEV_PKG}/scripts/secure-binary-image.sh $1 $2
	else
		cp $1 $2
	fi
}

#
# Emit the fitImage ITS header
#
# $1 ... .its filename
fitimage_emit_fit_header() {
	cat << EOF >> ${1}
/dts-v1/;

/ {
        description = "U-Boot fitImage for ${DISTRO_NAME}/${PV}/${MACHINE}";
        #address-cells = <1>;
EOF
}

#
# Emit the fitImage section bits
#
# $1 ... .its filename
# $2 ... Section bit type: imagestart - image section start
#                          confstart  - configuration section start
#                          sectend    - section end
#                          fitend     - fitimage end
#
fitimage_emit_section_maint() {
	case $2 in
	imagestart)
		cat << EOF >> ${1}

        images {
EOF
	;;
	confstart)
		cat << EOF >> ${1}

        configurations {
EOF
	;;
	sectend)
		cat << EOF >> ${1}
        };
EOF
	;;
	fitend)
		cat << EOF >> ${1}
};
EOF
	;;
	esac
}

#
# Emit the fitImage ITS kernel section
#
# $1 ... .its filename
# $2 ... Image counter
# $3 ... Path to kernel image
# $4 ... Compression type
fitimage_emit_section_kernel() {

	kernel_csum=${FITIMAGE_HASH_ALGO}

	ENTRYPOINT="${UBOOT_ENTRYPOINT}"
	if test -n "${UBOOT_ENTRYSYMBOL}"; then
		ENTRYPOINT=`${HOST_PREFIX}nm ${S}/vmlinux | \
			awk '$4=="${UBOOT_ENTRYSYMBOL}" {print $2}'`
	fi

	cat << EOF >> ${1}
                kernel-${2} {
                        description = "Linux kernel";
                        data = /incbin/("${3}");
                        type = "kernel";
                        arch = "${UBOOT_ARCH}";
                        os = "linux";
                        compression = "${4}";
                        load = <${UBOOT_LOADADDRESS}>;
                        entry = <${ENTRYPOINT}>;
EOF
	if test -n "${FITIMAGE_HASH_ALGO}"; then
		cat << EOF >> ${1}
                        hash-1 {
                                algo = "${kernel_csum}";
                        };
EOF
	fi
	cat << EOF >> ${1}
                };
EOF
}

#
# Emit the fitImage ITS DTB section
#
# $1 ... .its filename
# $2 ... Image counter/name
# $3 ... Path to DTB image
# $4 ... Load address
fitimage_emit_section_dtb() {

	dtb_csum=${FITIMAGE_HASH_ALGO}
	dtb_loadline="${4}"

	cat << EOF >> ${1}
                ${2} {
                        description = "Flattened Device Tree blob";
                        data = /incbin/("${3}");
                        type = "flat_dt";
                        arch = "${UBOOT_ARCH}";
                        compression = "none";
                        ${dtb_loadline}
EOF
	if test -n "${FITIMAGE_HASH_ALGO}"; then
		cat << EOF >> ${1}
                        hash-1 {
                                algo = "${dtb_csum}";
                        };
EOF
	fi
	cat << EOF >> ${1}
                };
EOF
}

#
# Emit the fitImage ITS TEE section
#
# $1 ... .its filename
# $2 ... Image counter/name
# $3 ... Path to TEE image
fitimage_emit_section_tee() {

	tee_csum=${FITIMAGE_HASH_ALGO}

	cat << EOF >> ${1}
                ${2} {
                        description = "OPTEE OS Image";
                        data = /incbin/("${3}");
                        type = "tee";
                        arch = "${UBOOT_ARCH}";
                        compression = "none";
EOF
	if test -n "${FITIMAGE_HASH_ALGO}"; then
		cat << EOF >> ${1}
                        hash-1 {
                                algo = "${tee_csum}";
                        };
EOF
	fi
	cat << EOF >> ${1}
                };
EOF
}

#
# Emit the fitImage ITS setup section
#
# $1 ... .its filename
# $2 ... Image counter
# $3 ... Path to setup image
fitimage_emit_section_setup() {

	setup_csum=${FITIMAGE_HASH_ALGO}

	cat << EOF >> ${1}
                setup-${2} {
                        description = "Linux setup.bin";
                        data = /incbin/("${3}");
                        type = "x86_setup";
                        arch = "${UBOOT_ARCH}";
                        os = "linux";
                        compression = "none";
                        load = <0x00090000>;
                        entry = <0x00090000>;
EOF
	if test -n "${FITIMAGE_HASH_ALGO}"; then
		cat << EOF >> ${1}
                        hash-1 {
                                algo = "${setup_csum}";
                        };
EOF
	fi
	cat << EOF >> ${1}
                };
EOF
}

#
# Emit the fitImage ITS ramdisk section
#
# $1 ... .its filename
# $2 ... Image counter
# $3 ... Path to ramdisk image
fitimage_emit_section_ramdisk() {

	ramdisk_csum=${FITIMAGE_HASH_ALGO}
	ramdisk_ctype="none"

	case $3 in
		*.gz|*.gz.sec)
			ramdisk_ctype="gzip"
			;;
		*.bz2|*.bz2.sec)
			ramdisk_ctype="bzip2"
			;;
		*.lzma|*.lzma.sec)
			ramdisk_ctype="lzma"
			;;
		*.lzo|*.lzo.sec)
			ramdisk_ctype="lzo"
			;;
		*.lz4|*.lz4.sec)
			ramdisk_ctype="lz4"
			;;
	esac

	cat << EOF >> ${1}
                ramdisk-${2} {
                        description = "ramdisk image";
                        data = /incbin/("${3}");
                        type = "ramdisk";
                        arch = "${UBOOT_ARCH}";
                        os = "linux";
                        compression = "${ramdisk_ctype}";
EOF
	if test -n "${UBOOT_RD_LOADADDRESS}"; then
		cat << EOF >> ${1}
                        load = <${UBOOT_RD_LOADADDRESS}>;
EOF
	fi

	if test -n "${UBOOT_RD_ENTRYPOINT}"; then
		cat << EOF >> ${1}
                        entry = <${UBOOT_RD_ENTRYPOINT}>;
EOF
	fi

	if test -n "${FITIMAGE_HASH_ALGO}"; then
		cat << EOF >> ${1}
                        hash-1 {
                                algo = "${ramdisk_csum}";
                        };
EOF
	fi
	cat << EOF >> ${1}
                };
EOF
}

#
# Emit the fitImage ITS configuration section
#
# $1 ... .its filename
# $2 ... Linux kernel ID
# $3 ... DTB image ID/name
# $4 ... ramdisk ID
# $5 ... config ID
# $6 ... tee ID/name
fitimage_emit_section_config() {

	conf_csum=${FITIMAGE_HASH_ALGO}
	if [ -n "${UBOOT_SIGN_ENABLE}" ] ; then
		conf_sign_keyname="${UBOOT_SIGN_KEYNAME}"
	fi

	sep=""
	conf_desc=""
	kernel_line=""
	fdt_line=""
	ramdisk_line=""
	setup_line=""
	default_line=""

	if [ -n "${2}" ]; then
		conf_desc="Linux kernel"
		sep=", "
		kernel_line="kernel = \"kernel-${2}\";"
	fi

	if [ -n "${3}" ]; then
		conf_desc="${conf_desc}${sep}FDT blob"
		sep=", "
	fi

	if [ -n "${4}" ]; then
		conf_desc="${conf_desc}${sep}ramdisk"
		sep=", "
		ramdisk_line="ramdisk = \"ramdisk-${4}\";"
	fi

	if [ -n "${5}" ]; then
		conf_desc="${conf_desc}${sep}setup"
		sep=", "
		setup_line="setup = \"setup-${5}\";"
	fi

	if [ -n "${6}" -a "x${FITIMAGE_PACK_TEE}" = "x1" ]; then
		if [ "x${FITIMAGE_TEE_BY_NAME}" = "x1" ]; then
			loadables_line="loadables = \"${6}.optee\";"
			loadables_pager_line="loadables = \"${6}-pager.optee\";"
		else
			loadables_line="loadables = \"tee-${6}\";"
			nextnum=`expr ${6} + 1`
			loadables_pager_line="loadables = \"tee-${nextnum}\";"
		fi
		final_conf_desc="${conf_desc}${sep}OPTEE OS Image"
	else
		loadables_line=""
		loadables_pager_line=""
		final_conf_desc="${conf_desc}"
	fi

	dtbcount=1
	for DTB in ${KERNEL_DEVICETREE}; do
		DTB=$(basename "${DTB}")
		dtb_ext=${DTB##*.}
		if [ "x${FITIMAGE_CONF_BY_NAME}" = "x1" ] ; then
			conf_name="${DTB}"
		else
			conf_name="conf-${dtbcount}"
		fi

		if [ "x${FITIMAGE_DTB_BY_NAME}" = "x1" ] ; then
			fdt_line="fdt = \"${DTB}\";"
		else
			fdt_line="fdt = \"fdt-${dtbcount}\";"
		fi

		if [ "x${dtbcount}" = "x1" ]; then
			cat << EOF >> ${1}
                default = "${conf_name}";
EOF
		fi

# Generate a single configuration section
			cat << EOF >> ${1}
                ${conf_name} {
                        description = "${final_conf_desc}";
                        ${fdt_line}
EOF
			if [ "${dtb_ext}" != "dtbo" ]; then
			cat << EOF >> ${1}
                        ${kernel_line}
                        ${ramdisk_line}
                        ${setup_line}
                        ${loadables_line}
EOF
			fi
			if test -n "${FITIMAGE_HASH_ALGO}"; then
				cat << EOF >> ${1}
                        hash-1 {
                                algo = "${conf_csum}";
                        };
EOF
			fi

			if [ ! -z "${conf_sign_keyname}" ] ; then

				sign_line="sign-images = \"kernel\""

				if [ -n "${3}" ]; then
					sign_line="${sign_line}, \"fdt\""
				fi

				if [ -n "${4}" ]; then
					sign_line="${sign_line}, \"ramdisk\""
				fi

				if [ -n "${5}" ]; then
					sign_line="${sign_line}, \"setup\""
				fi

				sign_line="${sign_line};"

				cat << EOF >> ${1}
                        signature-1 {
                                algo = "${conf_csum},rsa2048";
                                key-name-hint = "${conf_sign_keyname}";
                                ${sign_line}
                        };
EOF
			fi

			cat << EOF >> ${1}
                };
EOF
# End single config section

# Generate a single "pager" configuration section
		if [ "${OPTEEPAGER}" = "y" ]; then
			if [ "x${FITIMAGE_CONF_BY_NAME}" = "x1" ] ; then
				conf_name="${DTB}-pager"
			else
				conf_name="conf-${dtbcount}"
			fi

			cat << EOF >> ${1}
                ${conf_name} {
                        description = "${final_conf_desc}";
                        ${fdt_line}
EOF
			if [ "${dtb_ext}" != "dtbo" ]; then
			cat << EOF >> ${1}
                        ${kernel_line}
                        ${ramdisk_line}
                        ${setup_line}
                        ${loadables_pager_line}
EOF
			fi
			if test -n "${FITIMAGE_HASH_ALGO}"; then
				cat << EOF >> ${1}
                        hash-1 {
                                algo = "${conf_csum}";
                        };
EOF
			fi

			if [ ! -z "${conf_sign_keyname}" ] ; then

				sign_line="sign-images = \"kernel\""

				if [ -n "${3}" ]; then
					sign_line="${sign_line}, \"fdt\""
				fi

				if [ -n "${4}" ]; then
					sign_line="${sign_line}, \"ramdisk\""
				fi

				if [ -n "${5}" ]; then
					sign_line="${sign_line}, \"setup\""
				fi

				sign_line="${sign_line};"

				cat << EOF >> ${1}
                        signature-1 {
                                algo = "${conf_csum},rsa2048";
                                key-name-hint = "${conf_sign_keyname}";
                                ${sign_line}
                        };
EOF
			fi

			cat << EOF >> ${1}
                };
EOF
		fi
# End single config section

		dtbcount=`expr ${dtbcount} + 1`
	done
}

#
# Assemble fitImage
#
# $1 ... .its filename
# $2 ... fitImage name
# $3 ... include ramdisk
fitimage_assemble() {
	kernelcount=1
	dtbcount=""
	ramdiskcount=${3}
	setupcount=""
	teecount=1
	rm -f ${1} arch/${ARCH}/boot/${2}

	fitimage_emit_fit_header ${1}

	#
	# Step 1: Prepare a kernel image section.
	#
	fitimage_emit_section_maint ${1} imagestart

	uboot_prep_kimage
	fitimage_ti_secure linux.bin linux.bin.sec
	fitimage_emit_section_kernel ${1} "${kernelcount}" linux.bin.sec "${linux_comp}"

	#
	# Step 2: Prepare a DTB image section
	#
	if test -n "${KERNEL_DEVICETREE}"; then
		dtbcount=1
		dtboaddress="${UBOOT_DTBO_LOADADDRESS}"
		for DTB in ${KERNEL_DEVICETREE}; do
			if echo ${DTB} | grep -q '/dts/'; then
				bbwarn "${DTB} contains the full path to the the dts file, but only the dtb name should be used."
				DTB=`basename ${DTB} | sed 's,\.dts$,.dtb,g'`
			fi
			DTB_PATH="arch/${ARCH}/boot/dts/${DTB}"
			if [ ! -e "${DTB_PATH}" ]; then
				DTB_PATH="arch/${ARCH}/boot/${DTB}"
			fi
			DTB=$(basename "${DTB}")

			dtb_ext=${DTB##*.}
			if [ "${dtb_ext}" = "dtbo" ]; then
				if [ -n "${UBOOT_DTBO_LOADADDRESS}" ]; then
					dtb_loadline="load = <${dtboaddress}>;"
					num1=`printf "%d\n" ${dtboaddress}`
					num2=`printf "%d\n" ${UBOOT_DTBO_OFFSET}`
					num3=`expr $num1 + $num2`
					dtboaddress=`printf "0x%x\n" $num3`
				fi
			elif [ -n "${UBOOT_DTB_LOADADDRESS}" ]; then
				dtb_loadline="load = <${UBOOT_DTB_LOADADDRESS}>;"
			fi

			fitimage_ti_secure ${DTB_PATH} ${DTB_PATH}.sec
			if [ "x${FITIMAGE_DTB_BY_NAME}" = "x1" ] ; then
				fitimage_emit_section_dtb ${1} ${DTB} ${DTB_PATH}.sec "${dtb_loadline}"
			else
				fitimage_emit_section_dtb ${1} "fdt-${dtbcount}" ${DTB_PATH}.sec "${dtb_loadline}"
			fi
			if [ "x${dtbcount}" = "x1" ]; then
				dtbref=${DTB}
			fi
			dtbcount=`expr ${dtbcount} + 1`
		done
	fi

	#
	# Step 2a: Prepare OP/TEE image section
	#
	if [ "x${FITIMAGE_PACK_TEE}" = "x1" ] ; then
		mkdir -p ${B}/usr
		rm -f ${B}/usr/${OPTEEFLAVOR}.optee
		if [ -e "${DEPLOY_DIR_IMAGE}/${OPTEEFLAVOR}.optee" ]; then
			cp ${DEPLOY_DIR_IMAGE}/${OPTEEFLAVOR}.optee ${B}/usr/.
		fi
		TEE_PATH="usr/${OPTEEFLAVOR}.optee"
		fitimage_ti_secure ${TEE_PATH} ${TEE_PATH}.sec
		if [ "x${FITIMAGE_TEE_BY_NAME}" = "x1" ] ; then
			fitimage_emit_section_tee ${1} ${OPTEEFLAVOR}.optee ${TEE_PATH}.sec
		else
			fitimage_emit_section_tee ${1} "tee-${teecount}" ${TEE_PATH}.sec
		fi

		if [ "${OPTEEPAGER}" = "y" ]; then
			teecount=`expr ${teecount} + 1`
			rm -f ${B}/usr/${OPTEEFLAVOR}-pager.optee
			if [ -e "${DEPLOY_DIR_IMAGE}/${OPTEEFLAVOR}-pager.optee" ]; then
				cp ${DEPLOY_DIR_IMAGE}/${OPTEEFLAVOR}-pager.optee ${B}/usr/.
			fi
			TEE_PATH="usr/${OPTEEFLAVOR}-pager.optee"
			fitimage_ti_secure ${TEE_PATH} ${TEE_PATH}.sec
			if [ "x${FITIMAGE_TEE_BY_NAME}" = "x1" ] ; then
				fitimage_emit_section_tee ${1} ${OPTEEFLAVOR}-pager.optee ${TEE_PATH}.sec
			else
				fitimage_emit_section_tee ${1} "tee-${teecount}" ${TEE_PATH}.sec
			fi
		fi
	fi

	#
	# Step 3: Prepare a setup section. (For x86)
	#
	if test -e arch/${ARCH}/boot/setup.bin ; then
		setupcount=1
		fitimage_emit_section_setup ${1} "${setupcount}" arch/${ARCH}/boot/setup.bin
	fi

	#
	# Step 4: Prepare a ramdisk section.
	#
	if [ "x${ramdiskcount}" = "x1" ] ; then
		# Find and use the first initramfs image archive type we find
		for img in cpio.lz4 cpio.lzo cpio.lzma cpio.xz cpio.gz cpio; do
			initramfs_path="${DEPLOY_DIR_IMAGE}/${INITRAMFS_IMAGE}-${MACHINE}.${img}"
			initramfs_local="usr/${INITRAMFS_IMAGE}-${MACHINE}.${img}"
			echo "Using $initramfs_path"
			if [ -e "${initramfs_path}" ]; then
				fitimage_ti_secure ${initramfs_path} ${initramfs_local}.sec
				fitimage_emit_section_ramdisk ${1} "${ramdiskcount}" ${initramfs_local}.sec
				break
			fi
		done
	fi

	fitimage_emit_section_maint ${1} sectend

	# Force the first Kernel and DTB in the default config
	kernelcount=1
	if test -n "${dtbcount}"; then
		dtbcount=1
	fi
	teecount=1

	#
	# Step 5: Prepare a configurations section
	#
	fitimage_emit_section_maint ${1} confstart

	if [ "x${FITIMAGE_DTB_BY_NAME}" != "x1" ] ; then
		dtbref="fdt-${dtbcount}"
	fi
	if [ "x${FITIMAGE_TEE_BY_NAME}" = "x1" ] ; then
		teeref="${OPTEEFLAVOR}"
	else
		teeref="${teecount}"
	fi
	fitimage_emit_section_config ${1} "${kernelcount}" "${dtbref}" "${ramdiskcount}" "${setupcount}" "${teeref}"

	fitimage_emit_section_maint ${1} sectend

	fitimage_emit_section_maint ${1} fitend

	#
	# Step 6: Assemble the image
	#
	uboot-mkimage \
		${@'-D "${UBOOT_MKIMAGE_DTCOPTS}"' if len('${UBOOT_MKIMAGE_DTCOPTS}') else ''} \
		-f ${1} \
		arch/${ARCH}/boot/${2}

	#
	# Step 7: Sign the image and add public key to U-Boot dtb
	#
	if [ "x${UBOOT_SIGN_ENABLE}" = "x1" ] ; then
		uboot-mkimage \
			${@'-D "${UBOOT_MKIMAGE_DTCOPTS}"' if len('${UBOOT_MKIMAGE_DTCOPTS}') else ''} \
			-F -k "${UBOOT_SIGN_KEYDIR}" \
			-K "${DEPLOY_DIR_IMAGE}/${UBOOT_DTB_BINARY}" \
			-r arch/${ARCH}/boot/${2}
	fi
}

do_assemble_fitimage() {
	if echo ${KERNEL_IMAGETYPES} | grep -wq "fitImage"; then
		cd ${B}
		fitimage_assemble fit-image.its fitImage
	fi
}

addtask assemble_fitimage before do_install after do_compile

do_assemble_fitimage_initramfs() {
	if echo ${KERNEL_IMAGETYPES} | grep -wq "fitImage" && \
		test -n "${INITRAMFS_IMAGE}" ; then
		cd ${B}
		fitimage_assemble fit-image-${INITRAMFS_IMAGE}.its fitImage-${INITRAMFS_IMAGE} 1
	fi
}

addtask assemble_fitimage_initramfs before do_deploy after do_install

FITIMAGE_ITS_SUFFIX ?= "its"
FITIMAGE_ITB_SUFFIX ?= "itb"

FITIMAGE_ITS_IMAGE ?= "fitImage-its-${PKGE}-${PKGV}-${PKGR}-${MACHINE}-${DATETIME}.${FITIMAGE_ITS_SUFFIX}"
FITIMAGE_ITS_IMAGE[vardepsexclude] = "DATETIME"
FITIMAGE_ITS_BINARY ?= "fitImage-its.${FITIMAGE_ITS_SUFFIX}"
FITIMAGE_ITS_SYMLINK ?= "fitImage-its-${MACHINE}.${FITIMAGE_ITS_SUFFIX}"

FITIMAGE_ITB_IMAGE ?= "fitImage-linux.bin-${PKGE}-${PKGV}-${PKGR}-${MACHINE}-${DATETIME}.${FITIMAGE_ITB_SUFFIX}"
FITIMAGE_ITB_IMAGE[vardepsexclude] = "DATETIME"
FITIMAGE_ITB_BINARY ?= "fitImage-linux.bin.${FITIMAGE_ITB_SUFFIX}"
FITIMAGE_ITB_SYMLINK ?= "fitImage-linux.bin-${MACHINE}.${FITIMAGE_ITB_SUFFIX}"

FITIMAGE_INITRAMFS_ITS_IMAGE ?= "fitImage-its-${INITRAMFS_IMAGE}-${PKGE}-${PKGV}-${PKGR}-${MACHINE}-${DATETIME}.${FITIMAGE_ITS_SUFFIX}"
FITIMAGE_INITRAMFS_ITS_IMAGE[vardepsexclude] = "DATETIME"
FITIMAGE_INITRAMFS_ITS_BINARY ?= "fitImage-its-${INITRAMFS_IMAGE}.${FITIMAGE_ITS_SUFFIX}"
FITIMAGE_INITRAMFS_ITS_SYMLINK ?= "fitImage-its-${INITRAMFS_IMAGE}-${MACHINE}.${FITIMAGE_ITS_SUFFIX}"

FITIMAGE_INITRAMFS_ITB_IMAGE ?= "fitImage-${INITRAMFS_IMAGE}-${PKGE}-${PKGV}-${PKGR}-${MACHINE}-${DATETIME}.${FITIMAGE_ITB_SUFFIX}"
FITIMAGE_INITRAMFS_ITB_IMAGE[vardepsexclude] = "DATETIME"
FITIMAGE_INITRAMFS_ITB_BINARY ?= "fitImage-${INITRAMFS_IMAGE}.${FITIMAGE_ITB_SUFFIX}"
FITIMAGE_INITRAMFS_ITB_SYMLINK ?= "fitImage-${INITRAMFS_IMAGE}-${MACHINE}.${FITIMAGE_ITB_SUFFIX}"

kernel_do_deploy:append() {
	# Update deploy directory
	if echo ${KERNEL_IMAGETYPES} | grep -wq "fitImage"; then
		cd ${B}
		echo "Copying fit-image.its source file..."
		install -m 0644 fit-image.its ${DEPLOYDIR}/${FITIMAGE_ITS_IMAGE}
		install -m 0644 arch/${ARCH}/boot/fitImage ${DEPLOYDIR}/${FITIMAGE_ITB_IMAGE}

		if [ -n "${INITRAMFS_IMAGE}" ]; then
			echo "Copying fit-image-${INITRAMFS_IMAGE}.its source file..."
			install -m 0644 fit-image-${INITRAMFS_IMAGE}.its ${DEPLOYDIR}/${FITIMAGE_INITRAMFS_ITS_IMAGE}
			install -m 0644 arch/${ARCH}/boot/fitImage-${INITRAMFS_IMAGE} ${DEPLOYDIR}/${FITIMAGE_INITRAMFS_ITB_IMAGE}
		fi

		cd ${DEPLOYDIR}
		ln -sf ${FITIMAGE_ITS_IMAGE} ${FITIMAGE_ITS_SYMLINK}
		ln -sf ${FITIMAGE_ITS_IMAGE} ${FITIMAGE_ITS_BINARY}
		ln -sf ${FITIMAGE_ITB_IMAGE} ${FITIMAGE_ITB_SYMLINK}
		ln -sf ${FITIMAGE_ITB_IMAGE} ${FITIMAGE_ITB_BINARY}

		if [ -n "${INITRAMFS_IMAGE}" ]; then
			ln -sf ${FITIMAGE_INITRAMFS_ITS_IMAGE} ${FITIMAGE_INITRAMFS_ITS_SYMLINK}
			ln -sf ${FITIMAGE_INITRAMFS_ITS_IMAGE} ${FITIMAGE_INITRAMFS_ITS_BINARY}
			ln -sf ${FITIMAGE_INITRAMFS_ITB_IMAGE} ${FITIMAGE_INITRAMFS_ITB_SYMLINK}
			ln -sf ${FITIMAGE_INITRAMFS_ITB_IMAGE} ${FITIMAGE_INITRAMFS_ITB_BINARY}
		fi
	fi
}