summaryrefslogtreecommitdiffstats
path: root/meta-phosphor/conf
diff options
context:
space:
mode:
authorBrad Bishop <bradleyb@fuzziesquirrel.com>2018-03-08 22:17:47 -0500
committerBrad Bishop <bradleyb@fuzziesquirrel.com>2018-03-13 02:50:51 +0000
commit7a83a127f72518bef11c86809f215b35cb2ce868 (patch)
treeb4cc77847756e6ab1d09d62b8728a03f6f556255 /meta-phosphor/conf
parentdde25f10c630388d40ee478cc39e14ca3b3cc214 (diff)
downloadtalos-openbmc-7a83a127f72518bef11c86809f215b35cb2ce868.tar.gz
talos-openbmc-7a83a127f72518bef11c86809f215b35cb2ce868.zip
distro: Move distro config content to include
Enable other distro config files to require/include a proper include rather than directly including openbmc-phosphor.conf Tested: Built a Witherspoon image Change-Id: I2e94c9a7f9ecc1527ece86099407cdc4f34a5e36 Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
Diffstat (limited to 'meta-phosphor/conf')
-rw-r--r--meta-phosphor/conf/distro/include/phosphor-base.inc66
-rw-r--r--meta-phosphor/conf/distro/openbmc-phosphor.conf67
2 files changed, 67 insertions, 66 deletions
diff --git a/meta-phosphor/conf/distro/include/phosphor-base.inc b/meta-phosphor/conf/distro/include/phosphor-base.inc
new file mode 100644
index 000000000..345cf030a
--- /dev/null
+++ b/meta-phosphor/conf/distro/include/phosphor-base.inc
@@ -0,0 +1,66 @@
+require conf/distro/poky.conf
+require conf/distro/include/phosphor-defaults.inc
+
+DISTRO = "openbmc-phosphor"
+DISTRO_NAME = "Phosphor OpenBMC (Phosphor OpenBMC Project Reference Distro)"
+DISTRO_VERSION = "0.1.0"
+TARGET_VENDOR="-openbmc"
+
+IMAGE_LINGUAS = "en-us"
+
+VIRTUAL-RUNTIME_keymaps = ""
+
+# Phosphor OpenBMC uses systemd and udev
+DISTRO_FEATURES_append = " systemd pam"
+VIRTUAL-RUNTIME_init_manager = "systemd"
+DISTRO_FEATURES_BACKFILL_CONSIDERED = "sysvinit"
+VIRTUAL-RUNTIME_initscripts = ""
+
+DISTRO_FEATURES = "\
+ ipv6 \
+ obmc-phosphor-fan-mgmt \
+ obmc-phosphor-chassis-mgmt \
+ obmc-phosphor-flash-mgmt \
+ obmc-phosphor-user-mgmt \
+ obmc-settings-mgmt \
+ obmc-phosphor-system-mgmt \
+ obmc-host-ipmi \
+ obmc-mrw \
+ obmc-logging-mgmt \
+ obmc-host-ctl \
+ avahi \
+ slp \
+ obmc-net-ipmi \
+ ${DISTRO_FEATURES_LIBC} \
+ "
+
+MACHINE_FEATURES += " \
+ ${OBMC_MACHINE_FEATURES} \
+ "
+
+DISTRO_EXTRA_RDEPENDS_remove_qemuarm = "packagegroup-core-device-devel"
+
+# TODO: openbmc/openbmc#12345 - Upgrade to pygobject-3.
+PREFERRED_VERSION_python-pygobject = "2.%"
+
+INHERIT_append = " obmc-phosphor-utils"
+
+include conf/distro/include/openbmc-phosphor/${MACHINE}.inc
+
+# TODO: openbmc/openbmc#1407 - Remove with RHEL6 support deprecation.
+# RHEL6.4's kernel is too old to use the uninative-shim due to missing
+# syscall support. Disable uninative and set OLDEST_KERNEL back to
+# the version in RHEL6.4.
+INHERIT_remove = " uninative"
+OLDEST_KERNEL = "2.6.32"
+
+KERNEL_FEATURES_append = " phosphor-gpio-keys"
+KERNEL_FEATURES_remove_qemuall = " phosphor-gpio-keys"
+
+IMAGE_CLASSES_append = " image_types_phosphor"
+
+# OpenBMC uses a couple recipes from meta-virtualization
+# but we do not actually want any virtualization support
+# enabled on a BMC distribution. Silence the emitted
+# warning.
+SKIP_META_VIRT_SANITY_CHECK = "1"
diff --git a/meta-phosphor/conf/distro/openbmc-phosphor.conf b/meta-phosphor/conf/distro/openbmc-phosphor.conf
index 345cf030a..de15fbcc6 100644
--- a/meta-phosphor/conf/distro/openbmc-phosphor.conf
+++ b/meta-phosphor/conf/distro/openbmc-phosphor.conf
@@ -1,66 +1 @@
-require conf/distro/poky.conf
-require conf/distro/include/phosphor-defaults.inc
-
-DISTRO = "openbmc-phosphor"
-DISTRO_NAME = "Phosphor OpenBMC (Phosphor OpenBMC Project Reference Distro)"
-DISTRO_VERSION = "0.1.0"
-TARGET_VENDOR="-openbmc"
-
-IMAGE_LINGUAS = "en-us"
-
-VIRTUAL-RUNTIME_keymaps = ""
-
-# Phosphor OpenBMC uses systemd and udev
-DISTRO_FEATURES_append = " systemd pam"
-VIRTUAL-RUNTIME_init_manager = "systemd"
-DISTRO_FEATURES_BACKFILL_CONSIDERED = "sysvinit"
-VIRTUAL-RUNTIME_initscripts = ""
-
-DISTRO_FEATURES = "\
- ipv6 \
- obmc-phosphor-fan-mgmt \
- obmc-phosphor-chassis-mgmt \
- obmc-phosphor-flash-mgmt \
- obmc-phosphor-user-mgmt \
- obmc-settings-mgmt \
- obmc-phosphor-system-mgmt \
- obmc-host-ipmi \
- obmc-mrw \
- obmc-logging-mgmt \
- obmc-host-ctl \
- avahi \
- slp \
- obmc-net-ipmi \
- ${DISTRO_FEATURES_LIBC} \
- "
-
-MACHINE_FEATURES += " \
- ${OBMC_MACHINE_FEATURES} \
- "
-
-DISTRO_EXTRA_RDEPENDS_remove_qemuarm = "packagegroup-core-device-devel"
-
-# TODO: openbmc/openbmc#12345 - Upgrade to pygobject-3.
-PREFERRED_VERSION_python-pygobject = "2.%"
-
-INHERIT_append = " obmc-phosphor-utils"
-
-include conf/distro/include/openbmc-phosphor/${MACHINE}.inc
-
-# TODO: openbmc/openbmc#1407 - Remove with RHEL6 support deprecation.
-# RHEL6.4's kernel is too old to use the uninative-shim due to missing
-# syscall support. Disable uninative and set OLDEST_KERNEL back to
-# the version in RHEL6.4.
-INHERIT_remove = " uninative"
-OLDEST_KERNEL = "2.6.32"
-
-KERNEL_FEATURES_append = " phosphor-gpio-keys"
-KERNEL_FEATURES_remove_qemuall = " phosphor-gpio-keys"
-
-IMAGE_CLASSES_append = " image_types_phosphor"
-
-# OpenBMC uses a couple recipes from meta-virtualization
-# but we do not actually want any virtualization support
-# enabled on a BMC distribution. Silence the emitted
-# warning.
-SKIP_META_VIRT_SANITY_CHECK = "1"
+require conf/distro/include/phosphor-base.inc
OpenPOWER on IntegriCloud