summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Krummenacher <max.krummenacher@toradex.com>2019-10-01 14:46:47 +0200
committerMax Krummenacher <max.krummenacher@toradex.com>2019-10-01 14:54:33 +0200
commit9ef311dbd7c3b0aa9c1bb160b1a533ea51912156 (patch)
treec4de9690824c9a12a67aed92956bebc6d9ffe0c4
parentd0bc9632deba5048f11c34acb423b1d0a7e2eca2 (diff)
distros: provide a variable describing the distro flavour
This is used in generating the image name, so that one sees in the Toradex Easy Installer which is which. Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com>
-rw-r--r--conf/distro/tdx-x11-rt.conf1
-rw-r--r--conf/distro/tdx-x11.conf1
-rw-r--r--conf/distro/tdx-xwayland-rt.conf3
-rw-r--r--conf/distro/tdx-xwayland.conf1
4 files changed, 5 insertions, 1 deletions
diff --git a/conf/distro/tdx-x11-rt.conf b/conf/distro/tdx-x11-rt.conf
index b3b353e..769aa85 100644
--- a/conf/distro/tdx-x11-rt.conf
+++ b/conf/distro/tdx-x11-rt.conf
@@ -6,3 +6,4 @@ require conf/distro/tdx-x11.conf
DISTRO = "tdx-x11-rt"
DISTRO_NAME = "TDX X11 RT"
DISTROOVERRIDES .= ":preempt-rt"
+DISTRO_FLAVOUR = " (PREEMPT_RT)"
diff --git a/conf/distro/tdx-x11.conf b/conf/distro/tdx-x11.conf
index ee4b625..f4aad53 100644
--- a/conf/distro/tdx-x11.conf
+++ b/conf/distro/tdx-x11.conf
@@ -5,6 +5,7 @@ require conf/distro/include/tdx-base.inc
DISTRO = "tdx-x11"
DISTRO_NAME = "TDX X11"
+DISTRO_FLAVOUR = ""
# Remove conflicting backends.
DISTRO_FEATURES_remove = "wayland "
diff --git a/conf/distro/tdx-xwayland-rt.conf b/conf/distro/tdx-xwayland-rt.conf
index c84b445..1bd5998 100644
--- a/conf/distro/tdx-xwayland-rt.conf
+++ b/conf/distro/tdx-xwayland-rt.conf
@@ -5,4 +5,5 @@ require conf/distro/tdx-xwayland.conf
DISTRO = "tdx-xwayland-rt"
DISTRO_NAME = "TDX Wayland with XWayland RT"
-DISTROOVERRIDES .= ":preempt-rt" \ No newline at end of file
+DISTROOVERRIDES .= ":preempt-rt"
+DISTRO_FLAVOUR = " (PREEMPT_RT)"
diff --git a/conf/distro/tdx-xwayland.conf b/conf/distro/tdx-xwayland.conf
index 41f2901..f2956b8 100644
--- a/conf/distro/tdx-xwayland.conf
+++ b/conf/distro/tdx-xwayland.conf
@@ -5,5 +5,6 @@ require conf/distro/include/tdx-base.inc
DISTRO = "tdx-xwayland"
DISTRO_NAME = "TDX Wayland with XWayland"
+DISTRO_FLAVOUR = ""
DISTRO_FEATURES_append = " wayland x11"