Skip to content
This repository has been archived by the owner on Jun 7, 2023. It is now read-only.

domf: change recipe to build wic image #101

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,13 @@ IMAGE_INSTALL_append = " \
openssl-bin \
"

inherit image

populate_vmlinux () {
find ${STAGING_KERNEL_BUILDDIR} -iname "vmlinux*" -exec mv {} ${DEPLOY_DIR_IMAGE} \; || true
}

IMAGE_POSTPROCESS_COMMAND += "populate_vmlinux; "

IMAGE_FSTYPES = "tar.bz2 wic.vmdk wic.bz2"
WKS_FILE = "core-image-minimal.wks"
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# short-description: Create an EFI disk image for Aos
# long-description: Creates a partitioned EFI disk image for Aos domain
part / --source rootfs --ondisk hda --fstype=ext4 --label platform --align 1024 --use-uuid
part /var/aos --ondisk hda --fstype=ext4 --label aos --align 1024 --size 512M --fsoptions="defaults,usrjquota=aquota.user,jqfmt=vfsv0"