Distro configuration: Allow to use the standard Yocto ADT installer.
The ADT installer compiled from "bitbake adt-installer" needs qemu images available at adtrepo.yoctoproject.org/$VERSION. To avoid having to deploy an adtrepo ourselves, we need to change the distro version to the upstream version. There are further problems with the ADT installation that need to change the SDK_VENDOR to the poky default of pokysdk and to have the SDKPATH also with the default value. With this change the adt-installer is installed without errors. https://jira.digi.com/browse/DEL-478 Signed-off-by: Alex Gonzalez <alex.gonzalez@digi.com>
This commit is contained in:
parent
acbbde22f6
commit
de5be32935
|
|
@ -1,7 +1,8 @@
|
|||
DISTRO = "dbl"
|
||||
SDK_DISTRO="poky"
|
||||
DISTRO_NAME = "Digi Boxed Linux"
|
||||
DISTRO_VERSION = "1.0.0"
|
||||
SDK_VENDOR = "-dbl"
|
||||
DISTRO_VERSION = "1.3.2"
|
||||
SDK_VENDOR = "-pokysdk"
|
||||
SDK_VERSION := "${DISTRO_VERSION}"
|
||||
|
||||
MAINTAINER = "Digi Support <support@digi.com>"
|
||||
|
|
@ -33,7 +34,7 @@ PREFERRED_VERSION_linux-yocto_qemumips ?= "3.4%"
|
|||
PREFERRED_VERSION_linux-yocto_qemuppc ?= "3.4%"
|
||||
|
||||
SDK_NAME = "${DISTRO}-${TCLIBC}-${SDK_ARCH}-${TARGET_ARCH}"
|
||||
SDKPATH = "/opt/${DISTRO}/${SDK_VERSION}"
|
||||
SDKPATH = "/opt/${SDK_DISTRO}/${SDK_VERSION}"
|
||||
|
||||
EXTRAOPKGCONFIG = "poky-feed-config-opkg"
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,8 @@
|
|||
DISTRO = "del"
|
||||
SDK_DISTRO="poky"
|
||||
DISTRO_NAME = "Digi Embedded Linux"
|
||||
DISTRO_VERSION = "1.0.0"
|
||||
SDK_VENDOR = "-del"
|
||||
DISTRO_VERSION = "1.3.2"
|
||||
SDK_VENDOR = "-pokysdk"
|
||||
SDK_VERSION := "${DISTRO_VERSION}"
|
||||
|
||||
MAINTAINER = "Digi Support <support@digi.com>"
|
||||
|
|
@ -38,7 +39,7 @@ PREFERRED_VERSION_linux-yocto_qemumips ?= "3.4%"
|
|||
PREFERRED_VERSION_linux-yocto_qemuppc ?= "3.4%"
|
||||
|
||||
SDK_NAME = "${DISTRO}-${TCLIBC}-${SDK_ARCH}-${TARGET_ARCH}"
|
||||
SDKPATH = "/opt/${DISTRO}/${SDK_VERSION}"
|
||||
SDKPATH = "/opt/${SDK_DISTRO}/${SDK_VERSION}"
|
||||
|
||||
EXTRAOPKGCONFIG = "poky-feed-config-opkg"
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue