diff options
author | Scott Murray <scott.murray@konsulko.com> | 2021-11-04 14:49:33 -0400 |
---|---|---|
committer | Scott Murray <scott.murray@konsulko.com> | 2021-11-04 14:49:33 -0400 |
commit | 218fa1cb7fc71104cd12cd3af5576c17cd73643d (patch) | |
tree | 0e609a7d60e97ae2943a20d965f50a2b475a0a76 /recipes-platform/images | |
parent | e7a5c82e130ce69c63fa2c5289280a206e04d0cc (diff) |
agl-image-ivi: define SYSTEMD_DEFAULT_TARGET
Add SYSTEMD_DEFAULT_TARGET definition to agl-image-ivi to result in
agl-compositor starting automatically in it and derivative images.
This is required with the new weston-init behavior until we upgrade
past 3.3/Hardknott, when "weston" in IMAGE_FEATURES can be used
instead.
Bug-AGL: SPEC-4121
Signed-off-by: Scott Murray <scott.murray@konsulko.com>
Change-Id: I282953edce89220bca6b2a1b217dada9b685f023
Diffstat (limited to 'recipes-platform/images')
-rw-r--r-- | recipes-platform/images/agl-image-ivi.bb | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/recipes-platform/images/agl-image-ivi.bb b/recipes-platform/images/agl-image-ivi.bb index 198d3fe33..73bdd56ae 100644 --- a/recipes-platform/images/agl-image-ivi.bb +++ b/recipes-platform/images/agl-image-ivi.bb @@ -2,6 +2,8 @@ SUMMARY = "A basic system of AGL distribution of IVI profile" DESCRIPTION = "Basic image for baseline of AGL Distribution for IVI profile." +LICENSE = "MIT" + require recipes-platform/images/agl-image-minimal.inc IMAGE_INSTALL:append = "\ @@ -14,6 +16,8 @@ IMAGE_INSTALL:append = "\ IMAGE_FEATURES += "splash package-management ssh-server-dropbear" +# NOTE: In hardknott or later this can be replaced by adding "weston" +# to IMAGE_FEATURES. +SYSTEMD_DEFAULT_TARGET = "graphical.target" -LICENSE = "MIT" |