1
0
mirror of https://git.yoctoproject.org/poky synced 2026-06-02 13:29:49 +00:00

kernel-fitimage: add initramfs support

If INITRAMFS_IMAGE is set, build an additional fitImage containing the
initramfs. Copy the additional fitImage and the source (*.its) file, used
to create it to DEPLOYDIR. The fitImage containing the initramfs must be
built before do_deploy and after do_install to avoid circular dependencies.

UBOOT_RD_LOADADDRESS - Specifies the load address used by u-boot for the
                       initramfs.
UBOOT_RD_ENTRYPOINT  - Specifies the entry point used by u-boot for the
                       initramfs.

(From OE-Core rev: b406a89935f148779569fa3770776e009dd51f13)

Signed-off-by: George McCollister <george.mccollister@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
George McCollister
2016-05-26 08:55:16 -05:00
committed by Richard Purdie
parent 3153bd381c
commit ec755d2524
+185 -92
View File
@@ -16,7 +16,7 @@ python __anonymous () {
image = d.getVar('INITRAMFS_IMAGE', True) image = d.getVar('INITRAMFS_IMAGE', True)
if image: if image:
d.appendVarFlag('do_assemble_fitimage', 'depends', ' ${INITRAMFS_IMAGE}:do_image_complete') d.appendVarFlag('do_assemble_fitimage_initramfs', 'depends', ' ${INITRAMFS_IMAGE}:do_image_complete')
# Verified boot will sign the fitImage and append the public key to # 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 # U-boot dtb. We ensure the U-Boot dtb is deployed before assembling
@@ -32,8 +32,9 @@ UBOOT_MKIMAGE_DTCOPTS ??= ""
# #
# Emit the fitImage ITS header # Emit the fitImage ITS header
# #
# $1 ... .its filename
fitimage_emit_fit_header() { fitimage_emit_fit_header() {
cat << EOF >> fit-image.its cat << EOF >> ${1}
/dts-v1/; /dts-v1/;
/ { / {
@@ -45,32 +46,33 @@ EOF
# #
# Emit the fitImage section bits # Emit the fitImage section bits
# #
# $1 ... Section bit type: imagestart - image section start # $1 ... .its filename
# $2 ... Section bit type: imagestart - image section start
# confstart - configuration section start # confstart - configuration section start
# sectend - section end # sectend - section end
# fitend - fitimage end # fitend - fitimage end
# #
fitimage_emit_section_maint() { fitimage_emit_section_maint() {
case $1 in case $2 in
imagestart) imagestart)
cat << EOF >> fit-image.its cat << EOF >> ${1}
images { images {
EOF EOF
;; ;;
confstart) confstart)
cat << EOF >> fit-image.its cat << EOF >> ${1}
configurations { configurations {
EOF EOF
;; ;;
sectend) sectend)
cat << EOF >> fit-image.its cat << EOF >> ${1}
}; };
EOF EOF
;; ;;
fitend) fitend)
cat << EOF >> fit-image.its cat << EOF >> ${1}
}; };
EOF EOF
;; ;;
@@ -80,9 +82,10 @@ EOF
# #
# Emit the fitImage ITS kernel section # Emit the fitImage ITS kernel section
# #
# $1 ... Image counter # $1 ... .its filename
# $2 ... Path to kernel image # $2 ... Image counter
# $3 ... Compression type # $3 ... Path to kernel image
# $4 ... Compression type
fitimage_emit_section_kernel() { fitimage_emit_section_kernel() {
kernel_csum="sha1" kernel_csum="sha1"
@@ -90,17 +93,17 @@ fitimage_emit_section_kernel() {
ENTRYPOINT=${UBOOT_ENTRYPOINT} ENTRYPOINT=${UBOOT_ENTRYPOINT}
if test -n "${UBOOT_ENTRYSYMBOL}"; then if test -n "${UBOOT_ENTRYSYMBOL}"; then
ENTRYPOINT=`${HOST_PREFIX}nm ${S}/vmlinux | \ ENTRYPOINT=`${HOST_PREFIX}nm ${S}/vmlinux | \
awk '$3=="${UBOOT_ENTRYSYMBOL}" {print $1}'` awk '$4=="${UBOOT_ENTRYSYMBOL}" {print $2}'`
fi fi
cat << EOF >> fit-image.its cat << EOF >> ${1}
kernel@${1} { kernel@${2} {
description = "Linux kernel"; description = "Linux kernel";
data = /incbin/("${2}"); data = /incbin/("${3}");
type = "kernel"; type = "kernel";
arch = "${UBOOT_ARCH}"; arch = "${UBOOT_ARCH}";
os = "linux"; os = "linux";
compression = "${3}"; compression = "${4}";
load = <${UBOOT_LOADADDRESS}>; load = <${UBOOT_LOADADDRESS}>;
entry = <${ENTRYPOINT}>; entry = <${ENTRYPOINT}>;
hash@1 { hash@1 {
@@ -113,16 +116,17 @@ EOF
# #
# Emit the fitImage ITS DTB section # Emit the fitImage ITS DTB section
# #
# $1 ... Image counter # $1 ... .its filename
# $2 ... Path to DTB image # $2 ... Image counter
# $3 ... Path to DTB image
fitimage_emit_section_dtb() { fitimage_emit_section_dtb() {
dtb_csum="sha1" dtb_csum="sha1"
cat << EOF >> fit-image.its cat << EOF >> ${1}
fdt@${1} { fdt@${2} {
description = "Flattened Device Tree blob"; description = "Flattened Device Tree blob";
data = /incbin/("${2}"); data = /incbin/("${3}");
type = "flat_dt"; type = "flat_dt";
arch = "${UBOOT_ARCH}"; arch = "${UBOOT_ARCH}";
compression = "none"; compression = "none";
@@ -133,11 +137,40 @@ fitimage_emit_section_dtb() {
EOF EOF
} }
#
# Emit the fitImage ITS ramdisk section
#
# $1 ... .its filename
# $2 ... Image counter
# $3 ... Path to ramdisk image
fitimage_emit_section_ramdisk() {
ramdisk_csum="sha1"
cat << EOF >> ${1}
ramdisk@${2} {
description = "ramdisk image";
data = /incbin/("${3}");
type = "ramdisk";
arch = "${UBOOT_ARCH}";
os = "linux";
compression = "none";
load = <${UBOOT_RD_LOADADDRESS}>;
entry = <${UBOOT_RD_ENTRYPOINT}>;
hash@1 {
algo = "${ramdisk_csum}";
};
};
EOF
}
# #
# Emit the fitImage ITS configuration section # Emit the fitImage ITS configuration section
# #
# $1 ... Linux kernel ID # $1 ... .its filename
# $2 ... DTB image ID # $2 ... Linux kernel ID
# $3 ... DTB image ID
# $4 ... ramdisk ID
fitimage_emit_section_config() { fitimage_emit_section_config() {
conf_csum="sha1" conf_csum="sha1"
@@ -146,21 +179,32 @@ fitimage_emit_section_config() {
fi fi
# Test if we have any DTBs at all # Test if we have any DTBs at all
if [ -z "${2}" ] ; then if [ -z "${3}" -a -z "${4}" ] ; then
conf_desc="Boot Linux kernel" conf_desc="Boot Linux kernel"
fdt_line="" fdt_line=""
else ramdisk_line=""
elif [ -z "${4}" ]; then
conf_desc="Boot Linux kernel with FDT blob" conf_desc="Boot Linux kernel with FDT blob"
fdt_line="fdt = \"fdt@${2}\";" fdt_line="fdt = \"fdt@${3}\";"
ramdisk_line=""
elif [ -z "${3}" ]; then
conf_desc="Boot Linux kernel with ramdisk"
fdt_line=""
ramdisk_line="ramdisk = \"ramdisk@${4}\";"
else
conf_desc="Boot Linux kernel with FDT blob, ramdisk"
fdt_line="fdt = \"fdt@${3}\";"
ramdisk_line="ramdisk = \"ramdisk@${4}\";"
fi fi
kernel_line="kernel = \"kernel@${1}\";" kernel_line="kernel = \"kernel@${2}\";"
cat << EOF >> fit-image.its cat << EOF >> ${1}
default = "conf@1"; default = "conf@1";
conf@1 { conf@1 {
description = "${conf_desc}"; description = "${conf_desc}";
${kernel_line} ${kernel_line}
${fdt_line} ${fdt_line}
${ramdisk_line}
hash@1 { hash@1 {
algo = "${conf_csum}"; algo = "${conf_csum}";
}; };
@@ -168,103 +212,137 @@ EOF
if [ ! -z "${conf_sign_keyname}" ] ; then if [ ! -z "${conf_sign_keyname}" ] ; then
if [ -z "${2}" ] ; then if [ -z "${3}" -a -z "${4}" ] ; then
sign_line="sign-images = \"kernel\";" sign_line="sign-images = \"kernel\";"
else elif [ -z "${4}" ]; then
sign_line="sign-images = \"fdt\", \"kernel\";" sign_line="sign-images = \"fdt\", \"kernel\";"
elif [ -z "${3}" ]; then
sign_line="sign-images = \"ramdisk\", \"kernel\";"
else
sign_line="sign-images = \"ramdisk\", \"fdt\", \"kernel\";"
fi fi
cat << EOF >> fit-image.its cat << EOF >> ${1}
signature@1 { signature@1 {
algo = "${conf_csum},rsa2048"; algo = "${conf_csum},rsa2048";
key-name-hint = "${conf_sign_keyname}"; key-name-hint = "${conf_sign_keyname}";
sign-images = "fdt", "kernel"; ${sign_line}
}; };
EOF EOF
fi fi
cat << EOF >> fit-image.its cat << EOF >> ${1}
}; };
EOF EOF
} }
do_assemble_fitimage() { #
cd ${B} # Assemble fitImage
if echo ${KERNEL_IMAGETYPES} | grep -wq "fitImage"; then #
kernelcount=1 # $1 ... .its filename
dtbcount="" # $2 ... fitImage name
rm -f fit-image.its arch/${ARCH}/boot/fitImage # $3 ... include ramdisk
fitimage_assemble() {
kernelcount=1
dtbcount=""
ramdiskcount=${3}
rm -f ${1} arch/${ARCH}/boot/${2}
fitimage_emit_fit_header fitimage_emit_fit_header ${1}
# #
# Step 1: Prepare a kernel image section. # Step 1: Prepare a kernel image section.
# #
fitimage_emit_section_maint imagestart fitimage_emit_section_maint ${1} imagestart
uboot_prep_kimage uboot_prep_kimage
fitimage_emit_section_kernel "${kernelcount}" linux.bin "${linux_comp}" fitimage_emit_section_kernel ${1} "${kernelcount}" linux.bin "${linux_comp}"
# #
# Step 2: Prepare a DTB image section # Step 2: Prepare a DTB image section
# #
if test -n "${KERNEL_DEVICETREE}"; then if test -n "${KERNEL_DEVICETREE}"; then
dtbcount=1
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
fitimage_emit_section_dtb ${dtbcount} ${DTB_PATH}
dtbcount=`expr ${dtbcount} + 1`
done
fi
fitimage_emit_section_maint sectend
# Force the first Kernel and DTB in the default config
kernelcount=1
dtbcount=1 dtbcount=1
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
# fitimage_emit_section_dtb ${1} ${dtbcount} ${DTB_PATH}
# Step 3: Prepare a configurations section dtbcount=`expr ${dtbcount} + 1`
# done
fitimage_emit_section_maint confstart fi
fitimage_emit_section_config ${kernelcount} ${dtbcount} #
# Step 3: Prepare a ramdisk section.
#
if [ "x${ramdiskcount}" = "x1" ] ; then
copy_initramfs
fitimage_emit_section_ramdisk ${1} "${ramdiskcount}" usr/${INITRAMFS_IMAGE}-${MACHINE}.cpio
fi
fitimage_emit_section_maint sectend fitimage_emit_section_maint ${1} sectend
fitimage_emit_section_maint fitend # Force the first Kernel and DTB in the default config
kernelcount=1
dtbcount=1
# #
# Step 4: Assemble the image # Step 4: Prepare a configurations section
# #
fitimage_emit_section_maint ${1} confstart
fitimage_emit_section_config ${1} ${kernelcount} ${dtbcount} ${ramdiskcount}
fitimage_emit_section_maint ${1} sectend
fitimage_emit_section_maint ${1} fitend
#
# Step 5: Assemble the image
#
uboot-mkimage \
${@'-D "${UBOOT_MKIMAGE_DTCOPTS}"' if len('${UBOOT_MKIMAGE_DTCOPTS}') else ''} \
-f ${1} \
arch/${ARCH}/boot/${2}
#
# Step 6: Sign the image and add public key to U-Boot dtb
#
if [ "x${UBOOT_SIGN_ENABLE}" = "x1" ] ; then
uboot-mkimage \ uboot-mkimage \
${@'-D "${UBOOT_MKIMAGE_DTCOPTS}"' if len('${UBOOT_MKIMAGE_DTCOPTS}') else ''} \ ${@'-D "${UBOOT_MKIMAGE_DTCOPTS}"' if len('${UBOOT_MKIMAGE_DTCOPTS}') else ''} \
-f fit-image.its \ -F -k "${UBOOT_SIGN_KEYDIR}" \
arch/${ARCH}/boot/fitImage -K "${DEPLOY_DIR_IMAGE}/${UBOOT_DTB_BINARY}" \
-r arch/${ARCH}/boot/${2}
fi
}
# do_assemble_fitimage() {
# Step 5: Sign the image and add public key to U-Boot dtb if echo ${KERNEL_IMAGETYPES} | grep -wq "fitImage"; then
# cd ${B}
if [ "x${UBOOT_SIGN_ENABLE}" = "x1" ] ; then fitimage_assemble fit-image.its fitImage
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/fitImage
fi
fi fi
} }
addtask assemble_fitimage before do_install after do_compile 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
kernel_do_deploy[vardepsexclude] = "DATETIME" kernel_do_deploy[vardepsexclude] = "DATETIME"
kernel_do_deploy_append() { kernel_do_deploy_append() {
# Update deploy directory # Update deploy directory
@@ -278,8 +356,23 @@ kernel_do_deploy_append() {
linux_bin_symlink_name=fitImage-linux.bin-${MACHINE} linux_bin_symlink_name=fitImage-linux.bin-${MACHINE}
install -m 0644 linux.bin ${DEPLOYDIR}/${linux_bin_base_name}.bin install -m 0644 linux.bin ${DEPLOYDIR}/${linux_bin_base_name}.bin
if [ -n "${INITRAMFS_IMAGE}" ]; then
echo "Copying fit-image-${INITRAMFS_IMAGE}.its source file..."
its_initramfs_base_name="${KERNEL_IMAGETYPE}-its-${INITRAMFS_IMAGE}-${PV}-${PR}-${MACHINE}-${DATETIME}"
its_initramfs_symlink_name=${KERNEL_IMAGETYPE}-its-${INITRAMFS_IMAGE}-${MACHINE}
install -m 0644 fit-image-${INITRAMFS_IMAGE}.its ${DEPLOYDIR}/${its_initramfs_base_name}.its
fit_initramfs_base_name="${KERNEL_IMAGETYPE}-${INITRAMFS_IMAGE}-${PV}-${PR}-${MACHINE}-${DATETIME}"
fit_initramfs_symlink_name=${KERNEL_IMAGETYPE}-${INITRAMFS_IMAGE}-${MACHINE}
install -m 0644 arch/${ARCH}/boot/fitImage-${INITRAMFS_IMAGE} ${DEPLOYDIR}/${fit_initramfs_base_name}.bin
fi
cd ${DEPLOYDIR} cd ${DEPLOYDIR}
ln -sf ${its_base_name}.its ${its_symlink_name}.its ln -sf ${its_base_name}.its ${its_symlink_name}.its
ln -sf ${linux_bin_base_name}.bin ${linux_bin_symlink_name}.bin ln -sf ${linux_bin_base_name}.bin ${linux_bin_symlink_name}.bin
if [ -n "${INITRAMFS_IMAGE}" ]; then
ln -sf ${its_initramfs_base_name}.its ${its_initramfs_symlink_name}.its
ln -sf ${fit_initramfs_base_name}.bin ${fit_initramfs_symlink_name}.bin
fi
fi fi
} }