added my Recipes
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
#@DESCRIPTION: openstlinux default distro naming
|
||||
|
||||
# Init OPENSTLINUX_RELEASE flag to snapshot
|
||||
OPENSTLINUX_RELEASE ??= "snapshot"
|
||||
|
||||
DISTRO = "openstlinux"
|
||||
DISTRO_NAME = "ST OpenSTLinux (A Yocto Project Based Distro)"
|
||||
DISTRO_VERSION = "4.2.2-${@bb.utils.contains('OPENSTLINUX_RELEASE', 'snapshot', 'snapshot-${DATE}', '${OPENSTLINUX_RELEASE}', d)}"
|
||||
# Don't include the DATE variable in the sstate package signatures
|
||||
DISTRO_VERSION[vardepsexclude] = "DATE"
|
||||
DISTRO_CODENAME = "mickledore"
|
||||
|
||||
# Warning: SDK_VENDOR does not contains a valid OS/ARCH name like : linux, arm
|
||||
SDK_VENDOR = "-ostl_sdk"
|
||||
SDK_VERSION := "${@'${DISTRO_VERSION}'.replace('snapshot-${DATE}','snapshot')}"
|
||||
# Don't include the DATE variable in the sstate package signatures
|
||||
SDK_VERSION[vardepsexclude] = "DATE"
|
||||
|
||||
MAINTAINER = "Christophe Priouzeau <christophe.priouzeau@st.com>"
|
||||
|
||||
# Warning: TARGET_VENDOR does not contains a valid OS/ARCH name like : linux, arm
|
||||
STM32MP_TARGETVENDOR ?= "-ostl"
|
||||
TARGET_VENDOR = "${STM32MP_TARGETVENDOR}"
|
||||
|
||||
# Append distro name to each image name
|
||||
IMAGE_BASENAME:append = "-${DISTRO}"
|
||||
|
||||
# Add image name for generated SDK and set default SDK install folder
|
||||
SDK_NAME = "${IMAGE_LINK_NAME}-${SDK_ARCH}"
|
||||
SDKPATHINSTALL = "/opt/st/${MACHINE}/${SDK_VERSION}"
|
||||
# Don't include the DATE variable in the sstate package signatures
|
||||
SDKPATHINSTALL[vardepsexclude] = "DATE"
|
||||
Reference in New Issue
Block a user