morty migration: meta-digi: sync config templates

https://jira.digi.com/browse/DEL-3451

Signed-off-by: Javier Viguera <javier.viguera@digi.com>
This commit is contained in:
Javier Viguera 2017-02-15 16:20:25 +01:00
parent dcdab46080
commit 7ac0a90471
9 changed files with 38 additions and 56 deletions

View File

@ -1,25 +1,22 @@
# LAYER_CONF_VERSION is increased each time build/conf/bblayers.conf # POKY_BBLAYERS_CONF_VERSION is increased each time build/conf/bblayers.conf
# changes incompatibly # changes incompatibly
LCONF_VERSION = "6" POKY_BBLAYERS_CONF_VERSION = "2"
BBPATH = "${TOPDIR}" BBPATH = "${TOPDIR}"
BBFILES ?= "" BBFILES ?= ""
BBLAYERS ?= " \ BBLAYERS ?= " \
##OEROOT##/meta \ ##OEROOT##/meta \
##OEROOT##/meta-yocto \ ##OEROOT##/meta-poky \
##OEROOT##/meta-yocto-bsp \ ##OEROOT##/meta-yocto-bsp \
##DIGIBASE##/meta-openembedded/meta-oe \ ##DIGIBASE##/meta-openembedded/meta-oe \
##DIGIBASE##/meta-openembedded/meta-python \ ##DIGIBASE##/meta-openembedded/meta-python \
##DIGIBASE##/meta-openembedded/meta-networking \ ##DIGIBASE##/meta-openembedded/meta-networking \
##DIGIBASE##/meta-openembedded/meta-webserver \ ##DIGIBASE##/meta-openembedded/meta-webserver \
##DIGIBASE##/meta-qt5 \ ##DIGIBASE##/meta-qt5 \
##DIGIBASE##/meta-swupdate \
##DIGIBASE##/meta-freescale \ ##DIGIBASE##/meta-freescale \
##DIGIBASE##/meta-fsl-demos \ ##DIGIBASE##/meta-fsl-demos \
##DIGIBASE##/meta-digi/meta-digi-arm \ ##DIGIBASE##/meta-digi/meta-digi-arm \
##DIGIBASE##/meta-digi/meta-digi-dey \ ##DIGIBASE##/meta-digi/meta-digi-dey \
" "
BBLAYERS_NON_REMOVABLE ?= " \
##OEROOT##/meta \
##OEROOT##/meta-yocto \
"

View File

@ -20,6 +20,7 @@
#MACHINE ?= "qemuarm" #MACHINE ?= "qemuarm"
#MACHINE ?= "qemuarm64" #MACHINE ?= "qemuarm64"
#MACHINE ?= "qemumips" #MACHINE ?= "qemumips"
#MACHINE ?= "qemumips64"
#MACHINE ?= "qemuppc" #MACHINE ?= "qemuppc"
#MACHINE ?= "qemux86" #MACHINE ?= "qemux86"
#MACHINE ?= "qemux86-64" #MACHINE ?= "qemux86-64"
@ -129,9 +130,9 @@ DISTRO ?= "dey"
PACKAGE_CLASSES ?= "package_rpm" PACKAGE_CLASSES ?= "package_rpm"
# #
# SDK/ADT target architecture # SDK target architecture
# #
# This variable specifies the architecture to build SDK/ADT items for and means # This variable specifies the architecture to build SDK items for and means
# you can build the SDK packages for architectures other than the machine you are # you can build the SDK packages for architectures other than the machine you are
# running the build on (i.e. building i686 packages on an x86_64 host). # running the build on (i.e. building i686 packages on an x86_64 host).
# Supported values are i686 and x86_64 # Supported values are i686 and x86_64
@ -152,14 +153,14 @@ PACKAGE_CLASSES ?= "package_rpm"
# "tools-sdk" - add development tools (gcc, make, pkgconfig etc.) # "tools-sdk" - add development tools (gcc, make, pkgconfig etc.)
# "tools-debug" - add debugging tools (gdb, strace) # "tools-debug" - add debugging tools (gdb, strace)
# "eclipse-debug" - add Eclipse remote debugging support # "eclipse-debug" - add Eclipse remote debugging support
# "tools-profile" - add profiling tools (oprofile, exmap, lttng, valgrind) # "tools-profile" - add profiling tools (oprofile, lttng, valgrind)
# "tools-testapps" - add useful testing tools (ts_print, aplay, arecord etc.) # "tools-testapps" - add useful testing tools (ts_print, aplay, arecord etc.)
# "debug-tweaks" - make an image suitable for development # "debug-tweaks" - make an image suitable for development
# e.g. ssh root access has a blank password # e.g. ssh root access has a blank password
# There are other application targets that can be used here too, see # There are other application targets that can be used here too, see
# meta/classes/image.bbclass and meta/classes/core-image.bbclass for more details. # meta/classes/image.bbclass and meta/classes/core-image.bbclass for more details.
# We default to enabling the debugging tweaks. # We default to enabling the debugging tweaks.
EXTRA_IMAGE_FEATURES = "debug-tweaks" EXTRA_IMAGE_FEATURES ?= "debug-tweaks"
# #
# Additional image features # Additional image features
@ -173,9 +174,7 @@ EXTRA_IMAGE_FEATURES = "debug-tweaks"
# - 'image-swab' to perform host system intrusion detection # - 'image-swab' to perform host system intrusion detection
# NOTE: if listing mklibs & prelink both, then make sure mklibs is before prelink # NOTE: if listing mklibs & prelink both, then make sure mklibs is before prelink
# NOTE: mklibs also needs to be explicitly enabled for a given image, see local.conf.extended # NOTE: mklibs also needs to be explicitly enabled for a given image, see local.conf.extended
# NOTE: image-prelink is currently broken due to problems with the prelinker. It is advised USER_CLASSES ?= "buildstats image-mklibs image-prelink"
# that you do NOT run the prelinker at this time.
USER_CLASSES ?= "buildstats image-mklibs"
# #
# Runtime testing of images # Runtime testing of images

View File

@ -1,13 +1,13 @@
# LAYER_CONF_VERSION is increased each time build/conf/bblayers.conf # POKY_BBLAYERS_CONF_VERSION is increased each time build/conf/bblayers.conf
# changes incompatibly # changes incompatibly
LCONF_VERSION = "6" POKY_BBLAYERS_CONF_VERSION = "2"
BBPATH = "${TOPDIR}" BBPATH = "${TOPDIR}"
BBFILES ?= "" BBFILES ?= ""
BBLAYERS ?= " \ BBLAYERS ?= " \
##OEROOT##/meta \ ##OEROOT##/meta \
##OEROOT##/meta-yocto \ ##OEROOT##/meta-poky \
##OEROOT##/meta-yocto-bsp \ ##OEROOT##/meta-yocto-bsp \
##DIGIBASE##/meta-openembedded/meta-oe \ ##DIGIBASE##/meta-openembedded/meta-oe \
##DIGIBASE##/meta-openembedded/meta-python \ ##DIGIBASE##/meta-openembedded/meta-python \
@ -20,7 +20,3 @@ BBLAYERS ?= " \
##DIGIBASE##/meta-digi/meta-digi-arm \ ##DIGIBASE##/meta-digi/meta-digi-arm \
##DIGIBASE##/meta-digi/meta-digi-dey \ ##DIGIBASE##/meta-digi/meta-digi-dey \
" "
BBLAYERS_NON_REMOVABLE ?= " \
##OEROOT##/meta \
##OEROOT##/meta-yocto \
"

View File

@ -20,6 +20,7 @@
#MACHINE ?= "qemuarm" #MACHINE ?= "qemuarm"
#MACHINE ?= "qemuarm64" #MACHINE ?= "qemuarm64"
#MACHINE ?= "qemumips" #MACHINE ?= "qemumips"
#MACHINE ?= "qemumips64"
#MACHINE ?= "qemuppc" #MACHINE ?= "qemuppc"
#MACHINE ?= "qemux86" #MACHINE ?= "qemux86"
#MACHINE ?= "qemux86-64" #MACHINE ?= "qemux86-64"
@ -114,9 +115,9 @@ DISTRO ?= "dey"
PACKAGE_CLASSES ?= "package_rpm" PACKAGE_CLASSES ?= "package_rpm"
# #
# SDK/ADT target architecture # SDK target architecture
# #
# This variable specifies the architecture to build SDK/ADT items for and means # This variable specifies the architecture to build SDK items for and means
# you can build the SDK packages for architectures other than the machine you are # you can build the SDK packages for architectures other than the machine you are
# running the build on (i.e. building i686 packages on an x86_64 host). # running the build on (i.e. building i686 packages on an x86_64 host).
# Supported values are i686 and x86_64 # Supported values are i686 and x86_64
@ -137,14 +138,14 @@ PACKAGE_CLASSES ?= "package_rpm"
# "tools-sdk" - add development tools (gcc, make, pkgconfig etc.) # "tools-sdk" - add development tools (gcc, make, pkgconfig etc.)
# "tools-debug" - add debugging tools (gdb, strace) # "tools-debug" - add debugging tools (gdb, strace)
# "eclipse-debug" - add Eclipse remote debugging support # "eclipse-debug" - add Eclipse remote debugging support
# "tools-profile" - add profiling tools (oprofile, exmap, lttng, valgrind) # "tools-profile" - add profiling tools (oprofile, lttng, valgrind)
# "tools-testapps" - add useful testing tools (ts_print, aplay, arecord etc.) # "tools-testapps" - add useful testing tools (ts_print, aplay, arecord etc.)
# "debug-tweaks" - make an image suitable for development # "debug-tweaks" - make an image suitable for development
# e.g. ssh root access has a blank password # e.g. ssh root access has a blank password
# There are other application targets that can be used here too, see # There are other application targets that can be used here too, see
# meta/classes/image.bbclass and meta/classes/core-image.bbclass for more details. # meta/classes/image.bbclass and meta/classes/core-image.bbclass for more details.
# We default to enabling the debugging tweaks. # We default to enabling the debugging tweaks.
EXTRA_IMAGE_FEATURES = "debug-tweaks" EXTRA_IMAGE_FEATURES ?= "debug-tweaks"
# #
# Additional image features # Additional image features
@ -158,9 +159,7 @@ EXTRA_IMAGE_FEATURES = "debug-tweaks"
# - 'image-swab' to perform host system intrusion detection # - 'image-swab' to perform host system intrusion detection
# NOTE: if listing mklibs & prelink both, then make sure mklibs is before prelink # NOTE: if listing mklibs & prelink both, then make sure mklibs is before prelink
# NOTE: mklibs also needs to be explicitly enabled for a given image, see local.conf.extended # NOTE: mklibs also needs to be explicitly enabled for a given image, see local.conf.extended
# NOTE: image-prelink is currently broken due to problems with the prelinker. It is advised USER_CLASSES ?= "buildstats image-mklibs image-prelink"
# that you do NOT run the prelinker at this time.
USER_CLASSES ?= "buildstats image-mklibs"
# #
# Runtime testing of images # Runtime testing of images

View File

@ -1,13 +1,13 @@
# LAYER_CONF_VERSION is increased each time build/conf/bblayers.conf # POKY_BBLAYERS_CONF_VERSION is increased each time build/conf/bblayers.conf
# changes incompatibly # changes incompatibly
LCONF_VERSION = "6" POKY_BBLAYERS_CONF_VERSION = "2"
BBPATH = "${TOPDIR}" BBPATH = "${TOPDIR}"
BBFILES ?= "" BBFILES ?= ""
BBLAYERS ?= " \ BBLAYERS ?= " \
##OEROOT##/meta \ ##OEROOT##/meta \
##OEROOT##/meta-yocto \ ##OEROOT##/meta-poky \
##OEROOT##/meta-yocto-bsp \ ##OEROOT##/meta-yocto-bsp \
##DIGIBASE##/meta-openembedded/meta-oe \ ##DIGIBASE##/meta-openembedded/meta-oe \
##DIGIBASE##/meta-openembedded/meta-python \ ##DIGIBASE##/meta-openembedded/meta-python \
@ -20,7 +20,3 @@ BBLAYERS ?= " \
##DIGIBASE##/meta-digi/meta-digi-arm \ ##DIGIBASE##/meta-digi/meta-digi-arm \
##DIGIBASE##/meta-digi/meta-digi-dey \ ##DIGIBASE##/meta-digi/meta-digi-dey \
" "
BBLAYERS_NON_REMOVABLE ?= " \
##OEROOT##/meta \
##OEROOT##/meta-yocto \
"

View File

@ -20,6 +20,7 @@
#MACHINE ?= "qemuarm" #MACHINE ?= "qemuarm"
#MACHINE ?= "qemuarm64" #MACHINE ?= "qemuarm64"
#MACHINE ?= "qemumips" #MACHINE ?= "qemumips"
#MACHINE ?= "qemumips64"
#MACHINE ?= "qemuppc" #MACHINE ?= "qemuppc"
#MACHINE ?= "qemux86" #MACHINE ?= "qemux86"
#MACHINE ?= "qemux86-64" #MACHINE ?= "qemux86-64"
@ -114,9 +115,9 @@ DISTRO ?= "dey"
PACKAGE_CLASSES ?= "package_rpm" PACKAGE_CLASSES ?= "package_rpm"
# #
# SDK/ADT target architecture # SDK target architecture
# #
# This variable specifies the architecture to build SDK/ADT items for and means # This variable specifies the architecture to build SDK items for and means
# you can build the SDK packages for architectures other than the machine you are # you can build the SDK packages for architectures other than the machine you are
# running the build on (i.e. building i686 packages on an x86_64 host). # running the build on (i.e. building i686 packages on an x86_64 host).
# Supported values are i686 and x86_64 # Supported values are i686 and x86_64
@ -137,14 +138,14 @@ PACKAGE_CLASSES ?= "package_rpm"
# "tools-sdk" - add development tools (gcc, make, pkgconfig etc.) # "tools-sdk" - add development tools (gcc, make, pkgconfig etc.)
# "tools-debug" - add debugging tools (gdb, strace) # "tools-debug" - add debugging tools (gdb, strace)
# "eclipse-debug" - add Eclipse remote debugging support # "eclipse-debug" - add Eclipse remote debugging support
# "tools-profile" - add profiling tools (oprofile, exmap, lttng, valgrind) # "tools-profile" - add profiling tools (oprofile, lttng, valgrind)
# "tools-testapps" - add useful testing tools (ts_print, aplay, arecord etc.) # "tools-testapps" - add useful testing tools (ts_print, aplay, arecord etc.)
# "debug-tweaks" - make an image suitable for development # "debug-tweaks" - make an image suitable for development
# e.g. ssh root access has a blank password # e.g. ssh root access has a blank password
# There are other application targets that can be used here too, see # There are other application targets that can be used here too, see
# meta/classes/image.bbclass and meta/classes/core-image.bbclass for more details. # meta/classes/image.bbclass and meta/classes/core-image.bbclass for more details.
# We default to enabling the debugging tweaks. # We default to enabling the debugging tweaks.
EXTRA_IMAGE_FEATURES = "debug-tweaks" EXTRA_IMAGE_FEATURES ?= "debug-tweaks"
# #
# Additional image features # Additional image features
@ -158,9 +159,7 @@ EXTRA_IMAGE_FEATURES = "debug-tweaks"
# - 'image-swab' to perform host system intrusion detection # - 'image-swab' to perform host system intrusion detection
# NOTE: if listing mklibs & prelink both, then make sure mklibs is before prelink # NOTE: if listing mklibs & prelink both, then make sure mklibs is before prelink
# NOTE: mklibs also needs to be explicitly enabled for a given image, see local.conf.extended # NOTE: mklibs also needs to be explicitly enabled for a given image, see local.conf.extended
# NOTE: image-prelink is currently broken due to problems with the prelinker. It is advised USER_CLASSES ?= "buildstats image-mklibs image-prelink"
# that you do NOT run the prelinker at this time.
USER_CLASSES ?= "buildstats image-mklibs"
# #
# Runtime testing of images # Runtime testing of images

View File

@ -1,13 +1,13 @@
# LAYER_CONF_VERSION is increased each time build/conf/bblayers.conf # POKY_BBLAYERS_CONF_VERSION is increased each time build/conf/bblayers.conf
# changes incompatibly # changes incompatibly
LCONF_VERSION = "6" POKY_BBLAYERS_CONF_VERSION = "2"
BBPATH = "${TOPDIR}" BBPATH = "${TOPDIR}"
BBFILES ?= "" BBFILES ?= ""
BBLAYERS ?= " \ BBLAYERS ?= " \
##OEROOT##/meta \ ##OEROOT##/meta \
##OEROOT##/meta-yocto \ ##OEROOT##/meta-poky \
##OEROOT##/meta-yocto-bsp \ ##OEROOT##/meta-yocto-bsp \
##DIGIBASE##/meta-openembedded/meta-oe \ ##DIGIBASE##/meta-openembedded/meta-oe \
##DIGIBASE##/meta-openembedded/meta-python \ ##DIGIBASE##/meta-openembedded/meta-python \
@ -20,7 +20,3 @@ BBLAYERS ?= " \
##DIGIBASE##/meta-digi/meta-digi-arm \ ##DIGIBASE##/meta-digi/meta-digi-arm \
##DIGIBASE##/meta-digi/meta-digi-dey \ ##DIGIBASE##/meta-digi/meta-digi-dey \
" "
BBLAYERS_NON_REMOVABLE ?= " \
##OEROOT##/meta \
##OEROOT##/meta-yocto \
"

View File

@ -4,3 +4,4 @@ Digi Embedded Yocto provides the following image recipes:
Expansion of native core-image-base by including all the support for the Expansion of native core-image-base by including all the support for the
target device hardware like firmware files, rootfs customizations, etc. target device hardware like firmware files, rootfs customizations, etc.

View File

@ -20,6 +20,7 @@
#MACHINE ?= "qemuarm" #MACHINE ?= "qemuarm"
#MACHINE ?= "qemuarm64" #MACHINE ?= "qemuarm64"
#MACHINE ?= "qemumips" #MACHINE ?= "qemumips"
#MACHINE ?= "qemumips64"
#MACHINE ?= "qemuppc" #MACHINE ?= "qemuppc"
#MACHINE ?= "qemux86" #MACHINE ?= "qemux86"
#MACHINE ?= "qemux86-64" #MACHINE ?= "qemux86-64"
@ -114,9 +115,9 @@ DISTRO ?= "dey"
PACKAGE_CLASSES ?= "package_rpm" PACKAGE_CLASSES ?= "package_rpm"
# #
# SDK/ADT target architecture # SDK target architecture
# #
# This variable specifies the architecture to build SDK/ADT items for and means # This variable specifies the architecture to build SDK items for and means
# you can build the SDK packages for architectures other than the machine you are # you can build the SDK packages for architectures other than the machine you are
# running the build on (i.e. building i686 packages on an x86_64 host). # running the build on (i.e. building i686 packages on an x86_64 host).
# Supported values are i686 and x86_64 # Supported values are i686 and x86_64
@ -137,14 +138,14 @@ PACKAGE_CLASSES ?= "package_rpm"
# "tools-sdk" - add development tools (gcc, make, pkgconfig etc.) # "tools-sdk" - add development tools (gcc, make, pkgconfig etc.)
# "tools-debug" - add debugging tools (gdb, strace) # "tools-debug" - add debugging tools (gdb, strace)
# "eclipse-debug" - add Eclipse remote debugging support # "eclipse-debug" - add Eclipse remote debugging support
# "tools-profile" - add profiling tools (oprofile, exmap, lttng, valgrind) # "tools-profile" - add profiling tools (oprofile, lttng, valgrind)
# "tools-testapps" - add useful testing tools (ts_print, aplay, arecord etc.) # "tools-testapps" - add useful testing tools (ts_print, aplay, arecord etc.)
# "debug-tweaks" - make an image suitable for development # "debug-tweaks" - make an image suitable for development
# e.g. ssh root access has a blank password # e.g. ssh root access has a blank password
# There are other application targets that can be used here too, see # There are other application targets that can be used here too, see
# meta/classes/image.bbclass and meta/classes/core-image.bbclass for more details. # meta/classes/image.bbclass and meta/classes/core-image.bbclass for more details.
# We default to enabling the debugging tweaks. # We default to enabling the debugging tweaks.
EXTRA_IMAGE_FEATURES = "debug-tweaks" EXTRA_IMAGE_FEATURES ?= "debug-tweaks"
# #
# Additional image features # Additional image features
@ -158,9 +159,7 @@ EXTRA_IMAGE_FEATURES = "debug-tweaks"
# - 'image-swab' to perform host system intrusion detection # - 'image-swab' to perform host system intrusion detection
# NOTE: if listing mklibs & prelink both, then make sure mklibs is before prelink # NOTE: if listing mklibs & prelink both, then make sure mklibs is before prelink
# NOTE: mklibs also needs to be explicitly enabled for a given image, see local.conf.extended # NOTE: mklibs also needs to be explicitly enabled for a given image, see local.conf.extended
# NOTE: image-prelink is currently broken due to problems with the prelinker. It is advised USER_CLASSES ?= "buildstats image-mklibs image-prelink"
# that you do NOT run the prelinker at this time.
USER_CLASSES ?= "buildstats image-mklibs"
# #
# Runtime testing of images # Runtime testing of images