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

Remove the concept of the common directory and move all the recipes-* dirs to the top level as a normal layer would be. layer.conf is updated appropriately Signed-off-by: Saul Wold <sgw@linux.intel.com>
21 lines
424 B
BlitzBasic
21 lines
424 B
BlitzBasic
require recipes-core/images/core-image-minimal.bb
|
|
|
|
DEPENDS_remove = "grub-efi"
|
|
|
|
inherit uefi-comboapp
|
|
|
|
WKS_FILE = "generic-bootdisk.wks.in"
|
|
|
|
do_uefiapp_deploy_append() {
|
|
for i in ${DEPLOY_DIR_IMAGE}/${IMAGE_LINK_NAME}.boot*.efi; do
|
|
target=`basename $i`
|
|
target=`echo $target | sed -e 's/${IMAGE_LINK_NAME}.//'`
|
|
|
|
cat > ${IMAGE_ROOTFS}/boot/startup.nsh << EOF
|
|
$target
|
|
reset
|
|
EOF
|
|
break
|
|
done
|
|
}
|