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>
diff --git a/meta-google/conf/distro/gbmc.conf b/meta-google/conf/distro/gbmc.conf
index 1c2c20a..1311aa7 100644
--- a/meta-google/conf/distro/gbmc.conf
+++ b/meta-google/conf/distro/gbmc.conf
@@ -9,9 +9,11 @@
 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"