mirror of
git://git.yoctoproject.org/meta-intel.git
synced 2025-07-19 12:59:03 +02:00

This patch adds a couple secureboot elements to ovmf that originated from refkit. It includes a patch that adds a certificate to the ovmf's enrolled keys, and an image recipe which calls the enrollkeys app. Original work by Mikko Ylinen and Patrick Ohly. Signed-off-by: California Sullivan <california.l.sullivan@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com>
14 lines
234 B
BlitzBasic
14 lines
234 B
BlitzBasic
require recipes-core/ovmf/ovmf-shell-image.bb
|
|
|
|
WKS_SEARCH_PATH_append = ":${COREBASE}/meta/recipes-core/ovmf"
|
|
|
|
QB_DRIVE_TYPE = "/dev/vd"
|
|
|
|
do_image_append() {
|
|
cat > ${IMAGE_ROOTFS}/startup.nsh << EOF
|
|
EnrollDefaultKeys
|
|
reset
|
|
EOF
|
|
|
|
}
|