diff options
| -rw-r--r-- | meta/classes/uboot-sign.bbclass | 67 | ||||
| -rw-r--r-- | meta/recipes-bsp/u-boot/u-boot.inc | 2 |
2 files changed, 68 insertions, 1 deletions
diff --git a/meta/classes/uboot-sign.bbclass b/meta/classes/uboot-sign.bbclass new file mode 100644 index 0000000000..ad84c44c22 --- /dev/null +++ b/meta/classes/uboot-sign.bbclass | |||
| @@ -0,0 +1,67 @@ | |||
| 1 | # This file is part of U-Boot verified boot support and is intended to be | ||
| 2 | # inherited from u-boot recipe and from kernel-fitimage.bbclass. | ||
| 3 | # | ||
| 4 | # The signature procedure requires the user to generate an RSA key and | ||
| 5 | # certificate in a directory and to define the following variable: | ||
| 6 | # | ||
| 7 | # UBOOT_SIGN_KEYDIR = "/keys/directory" | ||
| 8 | # UBOOT_SIGN_KEYNAME = "dev" # keys name in keydir (eg. "dev.crt", "dev.key") | ||
| 9 | # UBOOT_MKIMAGE_DTCOPTS = "-I dts -O dtb -p 2000" | ||
| 10 | # UBOOT_SIGN_ENABLE = "1" | ||
| 11 | # | ||
| 12 | # As verified boot depends on fitImage generation, following is also required: | ||
| 13 | # | ||
| 14 | # KERNEL_CLASSES ?= " kernel-fitimage " | ||
| 15 | # KERNEL_IMAGETYPE ?= "fitImage" | ||
| 16 | # | ||
| 17 | # The signature support is limited to the use of CONFIG_OF_SEPARATE in U-Boot. | ||
| 18 | # | ||
| 19 | # The tasks sequence is set as below, using DEPLOY_IMAGE_DIR as common place to | ||
| 20 | # treat the device tree blob: | ||
| 21 | # | ||
| 22 | # u-boot:do_deploy_dtb | ||
| 23 | # u-boot:do_deploy | ||
| 24 | # virtual/kernel:do_assemble_fitimage | ||
| 25 | # u-boot:do_concat_dtb | ||
| 26 | # u-boot:do_install | ||
| 27 | # | ||
| 28 | # For more details on signature process, please refer to U-boot documentation. | ||
| 29 | |||
| 30 | # Signature activation. | ||
| 31 | UBOOT_SIGN_ENABLE ?= "0" | ||
| 32 | |||
| 33 | # Default value for deployment filenames. | ||
| 34 | UBOOT_DTB_IMAGE ?= "u-boot-${MACHINE}-${PV}-${PR}.dtb" | ||
| 35 | UBOOT_DTB_BINARY ?= "u-boot.dtb" | ||
| 36 | UBOOT_DTB_SYMLINK ?= "u-boot-${MACHINE}.dtb" | ||
| 37 | UBOOT_NODTB_IMAGE ?= "u-boot-nodtb-${MACHINE}-${PV}-${PR}.${UBOOT_SUFFIX}" | ||
| 38 | UBOOT_NODTB_BINARY ?= "u-boot-nodtb.${UBOOT_SUFFIX}" | ||
| 39 | UBOOT_NODTB_SYMLINK ?= "u-boot-nodtb-${MACHINE}.${UBOOT_SUFFIX}" | ||
| 40 | |||
| 41 | # | ||
| 42 | # Following is relevant only for u-boot recipes: | ||
| 43 | # | ||
| 44 | |||
| 45 | do_concat_dtb () { | ||
| 46 | # Concatenate U-Boot w/o DTB & DTB with public key | ||
| 47 | # (cf. kernel-fitimage.bbclass for more details) | ||
| 48 | cd ${DEPLOYDIR} | ||
| 49 | if [ "x${UBOOT_SIGN_ENABLE}" = "x1" ]; then | ||
| 50 | if [ -e "${UBOOT_NODTB_IMAGE}" -a -e "${UBOOT_DTB_IMAGE}" ]; then | ||
| 51 | cat ${UBOOT_NODTB_IMAGE} ${UBOOT_DTB_IMAGE} | tee ${B}/${UBOOT_BINARY} > ${UBOOT_IMAGE} | ||
| 52 | else | ||
| 53 | bbwarn "Failure while adding public key to u-boot binary. Verified boot won't be available." | ||
| 54 | fi | ||
| 55 | fi | ||
| 56 | } | ||
| 57 | |||
| 58 | python () { | ||
| 59 | uboot_pn = d.getVar('PREFERRED_PROVIDER_u-boot', True) or 'u-boot' | ||
| 60 | if d.getVar('UBOOT_SIGN_ENABLE', True) == '1' and d.getVar('PN', True) == uboot_pn: | ||
| 61 | kernel_pn = d.getVar('PREFERRED_PROVIDER_virtual/kernel', True) | ||
| 62 | |||
| 63 | # do_concat_dtb is scheduled _before_ do_install as it overwrite the | ||
| 64 | # u-boot.bin in both DEPLOYDIR and DEPLOY_IMAGE_DIR. | ||
| 65 | bb.build.addtask('do_concat_dtb', 'do_install', None, d) | ||
| 66 | d.appendVarFlag('do_concat_dtb', 'depends', ' %s:do_assemble_fitimage' % kernel_pn) | ||
| 67 | } | ||
diff --git a/meta/recipes-bsp/u-boot/u-boot.inc b/meta/recipes-bsp/u-boot/u-boot.inc index 3ba866de01..037f35cfc3 100644 --- a/meta/recipes-bsp/u-boot/u-boot.inc +++ b/meta/recipes-bsp/u-boot/u-boot.inc | |||
| @@ -12,7 +12,7 @@ S = "${WORKDIR}/git" | |||
| 12 | 12 | ||
| 13 | PACKAGE_ARCH = "${MACHINE_ARCH}" | 13 | PACKAGE_ARCH = "${MACHINE_ARCH}" |
| 14 | 14 | ||
| 15 | inherit uboot-config deploy | 15 | inherit uboot-config uboot-sign deploy |
| 16 | 16 | ||
| 17 | EXTRA_OEMAKE = 'CROSS_COMPILE=${TARGET_PREFIX} CC="${TARGET_PREFIX}gcc ${TOOLCHAIN_OPTIONS}" V=1' | 17 | EXTRA_OEMAKE = 'CROSS_COMPILE=${TARGET_PREFIX} CC="${TARGET_PREFIX}gcc ${TOOLCHAIN_OPTIONS}" V=1' |
| 18 | EXTRA_OEMAKE += 'HOSTCC="${BUILD_CC} ${BUILD_CFLAGS} ${BUILD_LDFLAGS}"' | 18 | EXTRA_OEMAKE += 'HOSTCC="${BUILD_CC} ${BUILD_CFLAGS} ${BUILD_LDFLAGS}"' |
