Skip to content

Commit

Permalink
ptx.conf: update to 2.4
Browse files Browse the repository at this point in the history
Signed-off-by: Enrico Jorns <ejo@pengutronix.de>
  • Loading branch information
ejoerns committed Dec 11, 2018
1 parent 3e4ad93 commit 9f0c47d
Showing 1 changed file with 30 additions and 7 deletions.
37 changes: 30 additions & 7 deletions conf/distro/ptx.conf
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
require conf/distro/poky.conf

DISTRO = "ptx"
DISTRO_NAME_prepend = "PTX - "
DISTRO_VERSION = "1.8-0"
DISTRO_CODENAME = "ptx-fido"
DISTRO_NAME = "PTX - Poky (Yocto Project Reference Distro"
DISTRO_VERSION = "2.4"
DISTRO_CODENAME = "ptx-rocko"

DISTROOVERRIDES =. "ptx:poky:"

Expand All @@ -13,9 +11,11 @@ TARGET_VENDOR = "-ptx"

LOCALCONF_VERSION = "1"

DISTRO_VERSION[vardepsexclude] = "DATE"
SDK_VERSION[vardepsexclude] = "DATE"
# Override these in ptx based distros
PTX_DEFAULT_DISTRO_FEATURES = "argp ext2 largefile usbgadget usbhost xattr nfs zeroconf multiarch systemd"
PTX_DEFAULT_EXTRA_RDEPENDS = "packagegroup-core-boot init-ifupdown"
PTX_DEFAULT_DISTRO_FEATURES = "argp ext2 largefile usbgadget usbhost wifi xattr nfs zeroconf multiarch systemd"
PTX_DEFAULT_EXTRA_RDEPENDS = "packagegroup-core-boot"
PTX_DEFAULT_EXTRA_RRECOMMENDS = "kernel-module-af-packet"

DISTRO_FEATURES = "${DISTRO_FEATURES_LIBC} ${PTX_DEFAULT_DISTRO_FEATURES}"
Expand All @@ -27,10 +27,33 @@ VIRTUAL-RUNTIME_initscripts = ""
DISTRO_EXTRA_RDEPENDS += " ${PTX_DEFAULT_EXTRA_RDEPENDS}"
DISTRO_EXTRA_RRECOMMENDS += " ${PTX_DEFAULT_EXTRA_RRECOMMENDS}"

TCLIBCAPPEND = ""

# add build
INHERIT += "image-buildinfo"

# prepare to use icecc
# to enable icecc in your build, add ICECC_DISABLED = "" to your local.conf
INHERIT_DISTRO_append = " icecc"
ICECC_DISABLED ??= "1"

#
# OELAYOUT_ABI allows us to notify users when the format of TMPDIR changes in
# an incompatible way. Such changes should usually be detailed in the commit
# that breaks the format and have been previously discussed on the mailing list
# with general agreement from the core team.
#
OELAYOUT_ABI = "12"

# add poky sanity bbclass
INHERIT += "poky-sanity"

# QA check settings - a little stricter than the OE-Core defaults
WARN_TO_ERROR_QA = "already-stripped compile-host-path install-host-path \
installed-vs-shipped ldflags pn-overrides rpaths staticdev \
useless-rpaths"
WARN_QA_remove = "${WARN_TO_ERROR_QA}"
ERROR_QA_append = " ${WARN_TO_ERROR_QA}"

require conf/distro/include/poky-world-exclude.inc
require conf/distro/include/no-static-libs.inc

0 comments on commit 9f0c47d

Please sign in to comment.