| Charles Kearney | 80ae01a | 2023-06-08 14:57:32 -0500 | [diff] [blame] | 1 | # TODO:  Manually copy the U-Boot signing key here: | 
| Charles Kearney | 7237a3e | 2023-04-07 21:15:03 +0000 | [diff] [blame] | 2 | HPE_GXP_KEY_FILES_DIR = "${COREBASE}/meta-hpe/meta-gxp/recipes-bsp/image/files" | 
|  | 3 |  | 
|  | 4 | inherit deploy | 
|  | 5 |  | 
|  | 6 | do_deploy () { | 
|  | 7 | install -d ${DEPLOYDIR} | 
|  | 8 |  | 
|  | 9 | # Copy in the bootblock | 
|  | 10 | install -m 644 ${HPE_GXP_KEY_FILES_DIR}/gxp2-bootblock.bin ${DEPLOYDIR}/gxp-bootblock.bin | 
|  | 11 |  | 
|  | 12 | # Copy in files from the files subdirectory | 
|  | 13 | install -m 644 ${HPE_GXP_KEY_FILES_DIR}/header.sig ${DEPLOYDIR}/hpe-uboot-header.section | 
|  | 14 | install -m 644 ${HPE_GXP_KEY_FILES_DIR}/header-512.sig ${DEPLOYDIR}/hpe-uboot-header-512.section | 
|  | 15 |  | 
|  | 16 | # Copy in the U-Boot signing key | 
|  | 17 | install -m 644 ${HPE_GXP_KEY_FILES_DIR}/customer_private_key.pem ${DEPLOYDIR}/hpe-uboot-signing-key.pem | 
|  | 18 |  | 
| Charles Kearney | 7237a3e | 2023-04-07 21:15:03 +0000 | [diff] [blame] | 19 | } |