20 lines
691 B
Plaintext
20 lines
691 B
Plaintext
|
|
# TODO: Manually copy the U-Boot signing key here:
|
||
|
|
HPE_GXP_KEY_FILES_DIR = "${COREBASE}/meta-hpe/meta-gxp/recipes-bsp/image/files"
|
||
|
|
|
||
|
|
inherit deploy
|
||
|
|
|
||
|
|
do_deploy () {
|
||
|
|
install -d ${DEPLOYDIR}
|
||
|
|
|
||
|
|
# Copy in the bootblock
|
||
|
|
install -m 644 ${HPE_GXP_KEY_FILES_DIR}/gxp2-bootblock.bin ${DEPLOYDIR}/gxp-bootblock.bin
|
||
|
|
|
||
|
|
# Copy in files from the files subdirectory
|
||
|
|
install -m 644 ${HPE_GXP_KEY_FILES_DIR}/header.sig ${DEPLOYDIR}/hpe-uboot-header.section
|
||
|
|
install -m 644 ${HPE_GXP_KEY_FILES_DIR}/header-512.sig ${DEPLOYDIR}/hpe-uboot-header-512.section
|
||
|
|
|
||
|
|
# Copy in the U-Boot signing key
|
||
|
|
install -m 644 ${HPE_GXP_KEY_FILES_DIR}/customer_private_key.pem ${DEPLOYDIR}/hpe-uboot-signing-key.pem
|
||
|
|
|
||
|
|
}
|