classes/images: Drop ';' delimiter from ROOTFS/IMAGE*COMMAND variables
This is a cosmetic commit that mirrors poky commit 6fd8af0d30e5. Signed-off-by: Gabriel Valcazar <gabriel.valcazar@digi.com>
This commit is contained in:
parent
2070d83e0b
commit
db613ceff9
|
|
@ -82,4 +82,4 @@ _EOF_
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
IMAGE_POSTPROCESS_COMMAND += "generate_installer_zip; "
|
IMAGE_POSTPROCESS_COMMAND += "generate_installer_zip "
|
||||||
|
|
|
||||||
|
|
@ -38,7 +38,7 @@ inherit ${@oe.utils.conditional("DEY_IMAGE_INSTALLER", "1", "dey-image-installer
|
||||||
# using the proper 'IMAGE_BASENAME' value.
|
# using the proper 'IMAGE_BASENAME' value.
|
||||||
#
|
#
|
||||||
SDK_PREPACKAGING_COMMAND ?= "toolchain_create_sdk_dey_version"
|
SDK_PREPACKAGING_COMMAND ?= "toolchain_create_sdk_dey_version"
|
||||||
SDK_POSTPROCESS_COMMAND = " create_sdk_files; check_sdk_sysroots; ${SDK_PREPACKAGING_COMMAND}; archive_sdk; ${SDK_PACKAGING_COMMAND} "
|
SDK_POSTPROCESS_COMMAND = " create_sdk_files check_sdk_sysroots ${SDK_PREPACKAGING_COMMAND} archive_sdk ${SDK_PACKAGING_COMMAND} "
|
||||||
|
|
||||||
# This function creates a DEY version information file
|
# This function creates a DEY version information file
|
||||||
fakeroot toolchain_create_sdk_dey_version() {
|
fakeroot toolchain_create_sdk_dey_version() {
|
||||||
|
|
@ -59,7 +59,7 @@ create_sw_versions_file() {
|
||||||
touch $swversionsfile
|
touch $swversionsfile
|
||||||
echo 'firmware ${DEY_FIRMWARE_VERSION}' >> $swversionsfile
|
echo 'firmware ${DEY_FIRMWARE_VERSION}' >> $swversionsfile
|
||||||
}
|
}
|
||||||
ROOTFS_POSTPROCESS_COMMAND:append = " create_sw_versions_file;"
|
ROOTFS_POSTPROCESS_COMMAND:append = " create_sw_versions_file"
|
||||||
|
|
||||||
#
|
#
|
||||||
# Add dependency for read-only signed rootfs and SWU public key copying
|
# Add dependency for read-only signed rootfs and SWU public key copying
|
||||||
|
|
|
||||||
|
|
@ -61,7 +61,7 @@ create_swupdate_targz_file() {
|
||||||
# Compress the tar file.
|
# Compress the tar file.
|
||||||
gzip "${targzfile%.*}"
|
gzip "${targzfile%.*}"
|
||||||
}
|
}
|
||||||
ROOTFS_POSTPROCESS_COMMAND:append = "${@oe.utils.conditional('SWUPDATE_IS_FILES_UPDATE', 'true', ' create_swupdate_targz_file;', '', d)}"
|
ROOTFS_POSTPROCESS_COMMAND:append = "${@oe.utils.conditional('SWUPDATE_IS_FILES_UPDATE', 'true', ' create_swupdate_targz_file', '', d)}"
|
||||||
|
|
||||||
#######################################
|
#######################################
|
||||||
###### SWU Update based on RDIFF ######
|
###### SWU Update based on RDIFF ######
|
||||||
|
|
@ -84,4 +84,4 @@ create_swupdate_rdiff_file() {
|
||||||
# Clean intermediates.
|
# Clean intermediates.
|
||||||
rm -f "${signature_file}"
|
rm -f "${signature_file}"
|
||||||
}
|
}
|
||||||
IMAGE_POSTPROCESS_COMMAND:append = "${@oe.utils.conditional('SWUPDATE_IS_RDIFF_UPDATE', 'true', ' create_swupdate_rdiff_file;', '', d)}"
|
IMAGE_POSTPROCESS_COMMAND:append = "${@oe.utils.conditional('SWUPDATE_IS_RDIFF_UPDATE', 'true', ' create_swupdate_rdiff_file', '', d)}"
|
||||||
|
|
|
||||||
|
|
@ -144,7 +144,7 @@ copy_public_key() {
|
||||||
cp -f "${PUBLIC_KEY}" "${IMAGE_ROOTFS}${sysconfdir}/ssl/certs/key.pub"
|
cp -f "${PUBLIC_KEY}" "${IMAGE_ROOTFS}${sysconfdir}/ssl/certs/key.pub"
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
ROOTFS_POSTPROCESS_COMMAND:append = " copy_public_key;"
|
ROOTFS_POSTPROCESS_COMMAND:append = " copy_public_key"
|
||||||
|
|
||||||
python () {
|
python () {
|
||||||
import binascii
|
import binascii
|
||||||
|
|
|
||||||
|
|
@ -18,6 +18,6 @@ add_cinematicexperience_shortcut() {
|
||||||
printf "\n[launcher]\nicon=${datadir}/icons/hicolor/24x24/icon_qt.png\npath=${bindir}/cinematic-experience\n" >> ${IMAGE_ROOTFS}${sysconfdir}/xdg/weston/weston.ini
|
printf "\n[launcher]\nicon=${datadir}/icons/hicolor/24x24/icon_qt.png\npath=${bindir}/cinematic-experience\n" >> ${IMAGE_ROOTFS}${sysconfdir}/xdg/weston/weston.ini
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
ROOTFS_POSTPROCESS_COMMAND:append:imxgpu = " add_cinematicexperience_shortcut;"
|
ROOTFS_POSTPROCESS_COMMAND:append:imxgpu = " add_cinematicexperience_shortcut"
|
||||||
ROOTFS_POSTPROCESS_COMMAND:append:ccmp15 = " add_cinematicexperience_shortcut;"
|
ROOTFS_POSTPROCESS_COMMAND:append:ccmp15 = " add_cinematicexperience_shortcut"
|
||||||
ROOTFS_POSTPROCESS_COMMAND:append:ccimx93 = " add_cinematicexperience_shortcut;"
|
ROOTFS_POSTPROCESS_COMMAND:append:ccimx93 = " add_cinematicexperience_shortcut"
|
||||||
|
|
|
||||||
|
|
@ -49,4 +49,4 @@ initramfs_cleanup() {
|
||||||
# Delete SWUPDATE postinst script
|
# Delete SWUPDATE postinst script
|
||||||
rm -f ${IMAGE_ROOTFS}${sysconfdir}/rpm-postinsts/*swupdate*
|
rm -f ${IMAGE_ROOTFS}${sysconfdir}/rpm-postinsts/*swupdate*
|
||||||
}
|
}
|
||||||
ROOTFS_POSTPROCESS_COMMAND += "initramfs_cleanup; "
|
ROOTFS_POSTPROCESS_COMMAND += "initramfs_cleanup "
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue