M7350/oe-core/meta-msm/recipes/images/mdm-bootimg.inc

24 lines
722 B
PHP
Raw Normal View History

2024-09-09 08:52:07 +00:00
# Force a few additional dependencies in the mix so that we get the needed
# recipes to build in the right order so we can make the bootimg file and
2024-09-09 08:57:42 +00:00
# our images...
2024-09-09 08:52:07 +00:00
DEPENDS = " \
2024-09-09 08:57:42 +00:00
virtual/kernel \
pkgconfig-native \
gtk-doc-native \
gettext-native \
e2fsprogs-native \
ext4-utils-native \
virtual/bootloader \
2024-09-09 08:52:07 +00:00
"
# Image output types
2024-09-09 08:57:42 +00:00
IMAGE_FSTYPES = "tar.gz ${INITRAMFS_FSTYPES}"
2024-09-09 08:52:07 +00:00
2024-09-09 08:57:42 +00:00
IMAGE_PREPROCESS_COMMAND_prepend = " gen_buildprop;"
2024-09-09 08:52:07 +00:00
2024-09-09 08:57:42 +00:00
gen_buildprop() {
mkdir -p ${IMAGE_ROOTFS}/cache
echo ro.build.version.release=`cat ${IMAGE_ROOTFS}/etc/version ` >> ${IMAGE_ROOTFS}/build.prop
echo ${MACHINE} >> ${IMAGE_ROOTFS}/target
2024-09-09 08:52:07 +00:00
}