summaryrefslogtreecommitdiff
path: root/meta-google
diff options
context:
space:
mode:
authorWilly Tu <wltu@google.com>2024-04-02 20:44:59 +0300
committerWilly Tu <wltu@google.com>2024-04-03 00:42:02 +0300
commit673f10a76ae2c0106444c29d190e104fb0d059be (patch)
tree2230cf6288ce8ade43f2a644a0cb34df4aaa0f2a /meta-google
parent412aa3227c72b4635b3bd5297303454b8f0f201a (diff)
downloadopenbmc-673f10a76ae2c0106444c29d190e104fb0d059be.tar.xz
meta-google: Add local GBMC_CONFIG
The local override is meant to be used for local testing over and not to automated builds that may be used for releases. Set the default config to local now. Tested: ``` bitbake obmc-phosphor-image -e // Got the OVERRIDES to have both local the dev OVERRIDES=":gbmc:local::dev:" ``` Change-Id: I9315fdea220483c6b2e0c873e2b31a1454470d5a Signed-off-by: Willy Tu <wltu@google.com>
Diffstat (limited to 'meta-google')
-rw-r--r--meta-google/conf/distro/gbmc.conf6
1 files changed, 4 insertions, 2 deletions
diff --git a/meta-google/conf/distro/gbmc.conf b/meta-google/conf/distro/gbmc.conf
index 1c2c20a27e..1311aa7529 100644
--- a/meta-google/conf/distro/gbmc.conf
+++ b/meta-google/conf/distro/gbmc.conf
@@ -9,9 +9,11 @@ DISTRO_VERSION = "gbmc-release-${GBMC_VERSION}"
EXTENDED_VERSION = "${DISTRO_VERSION}"
DISTROOVERRIDES .= ":gbmc"
-# Possible values: "dev", "prod"
-GBMC_CONFIG ?= "dev"
+# Possible values: "dev", "prod", "local"
+GBMC_CONFIG ?= "local"
OVERRIDES .= ":${GBMC_CONFIG}:"
+# local config will also include dev config
+OVERRIDES:append:local = ":dev:"
DISTRO_FEATURES:remove = "avahi"
DISTRO_FEATURES:remove = "ldap"