summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Williams <patrick@stwcx.xyz>2023-07-20 01:21:00 +0300
committerPatrick Williams <patrick@stwcx.xyz>2023-07-27 14:38:43 +0300
commit7cc419fd5e2481599b140ab65cafc2296bd422b1 (patch)
tree2e9eae1cdc0737943eb8fd5ba722471d2d6c231a
parent5506686167c6307d3bf8a87f5a906ff17559778b (diff)
downloadopenbmc-7cc419fd5e2481599b140ab65cafc2296bd422b1.tar.xz
meta-phosphor: phosphor-defaults: clean up poor line continuations
The phosphor-defaults.inc file has some free-standing line continuations that aren't in strings. While this might be accepted by bitbake, I don't think it is intended to be valid syntax, and the upstream vimsyntax file isn't happy about it. Clean this up by removing the continuation. Signed-off-by: Patrick Williams <patrick@stwcx.xyz> Change-Id: Iee63c7eec4f940b28d45d3b9a1d0d97d93fff2e6
-rw-r--r--meta-phosphor/conf/distro/include/phosphor-defaults.inc27
1 files changed, 9 insertions, 18 deletions
diff --git a/meta-phosphor/conf/distro/include/phosphor-defaults.inc b/meta-phosphor/conf/distro/include/phosphor-defaults.inc
index f53e92c7f8..eb977adadd 100644
--- a/meta-phosphor/conf/distro/include/phosphor-defaults.inc
+++ b/meta-phosphor/conf/distro/include/phosphor-defaults.inc
@@ -74,14 +74,11 @@ PREFERRED_PROVIDER_virtual/phosphor-ipmi-fru-hostfw-config ?= "phosphor-ipmi-fru
# This virtual is a native recipe that provides that mapping by installing
# configuration files in the format and native sysroot location expected by
# the phosphor-ipmi-fru build process in the native sysroot.
-PREFERRED_PROVIDER_virtual/phosphor-ipmi-fru-inventory ?= \
- "phosphor-ipmi-fru-inventory-example-native"
+PREFERRED_PROVIDER_virtual/phosphor-ipmi-fru-inventory ?= "phosphor-ipmi-fru-inventory-example-native"
-PREFERRED_PROVIDER_virtual/phosphor-ipmi-fru-properties ?= \
- "phosphor-ipmi-fru-properties-native"
+PREFERRED_PROVIDER_virtual/phosphor-ipmi-fru-properties ?= "phosphor-ipmi-fru-properties-native"
-PREFERRED_PROVIDER_virtual/phosphor-ipmi-fru-read-inventory ?= \
- "phosphor-ipmi-fru-read-inventory-example-native"
+PREFERRED_PROVIDER_virtual/phosphor-ipmi-fru-read-inventory ?= "phosphor-ipmi-fru-read-inventory-example-native"
# Configuration overrides for phosphor-host-ipmid.
#
@@ -92,16 +89,14 @@ PREFERRED_PROVIDER_virtual/phosphor-ipmi-fru-read-inventory ?= \
# This virtual is a native recipe that provides that mapping by installing
# configuration files in the format and native sysroot location expected by
# the phosphor-host-ipmid build process in the native sysroot.
-PREFERRED_PROVIDER_virtual/phosphor-ipmi-sensor-inventory ?= \
- "phosphor-ipmi-sensor-inventory-native"
+PREFERRED_PROVIDER_virtual/phosphor-ipmi-sensor-inventory ?= "phosphor-ipmi-sensor-inventory-native"
# The phosphor-host-ipmid application is data-driven and requires an input
# mapping of inventory object path to the sensor number and sensor metadata.
# This virtual is a native recipe that provides that mapping by installing
# configuration files in the format and native sysroot location expected by
# the phosphor-host-ipmid build process in the native sysroot.
-PREFERRED_PROVIDER_virtual/phosphor-ipmi-inventory-sel ?= \
- "phosphor-ipmi-inventory-sel-native"
+PREFERRED_PROVIDER_virtual/phosphor-ipmi-inventory-sel ?= "phosphor-ipmi-inventory-sel-native"
# Various other overrides.
@@ -110,8 +105,7 @@ PREFERRED_PROVIDER_virtual/phosphor-ipmi-inventory-sel ?= \
# This virtual is a native recipe that provides that mapping by installing
# configuration files in the format and native sysroot location expected by
# the phosphor-led-manager build process in the native sysroot.
-PREFERRED_PROVIDER_virtual/phosphor-led-manager-config-native ?= \
- "phosphor-led-manager-config-example-native"
+PREFERRED_PROVIDER_virtual/phosphor-led-manager-config-native ?= "phosphor-led-manager-config-example-native"
# The phosphor-logging application has a data driven plugin that adds FRU
# callout information to error logs, when applications generating error logs
@@ -120,23 +114,20 @@ PREFERRED_PROVIDER_virtual/phosphor-led-manager-config-native ?= \
# This virtual is a native recipe that provides that mapping by installing
# configuration files in the format and native sysroot location expected by
# the phosphor-logging build process in the native sysroot.
-PREFERRED_PROVIDER_virtual/phosphor-logging-callouts ?= \
- "phosphor-logging-callouts-example-native"
+PREFERRED_PROVIDER_virtual/phosphor-logging-callouts ?= "phosphor-logging-callouts-example-native"
# The phosphor-fan-presence application is data driven and requires an input
# YAML that maps fans to their tach sensors. This virtual is a recipe that
# provides that mapping by installing configuration files in the format and
# sysroot location expected by the phosphor-fan-presence build process in the
# sysroot.
-PREFERRED_PROVIDER_virtual/phosphor-fan-presence-config ?= \
- "phosphor-fan-presence-config"
+PREFERRED_PROVIDER_virtual/phosphor-fan-presence-config ?= "phosphor-fan-presence-config"
# The phosphor-fan-control application is data driven and requires a YAML file
# to define the fans in the system. This virtual is a recipe that provides
# that definition by installing the YAML file in the format and sysroot
# location expected by the phosphor-fan-control build process in the sysroot.
-PREFERRED_PROVIDER_virtual/phosphor-fan-control-fan-config ?= \
- "phosphor-fan-control-fan-config"
+PREFERRED_PROVIDER_virtual/phosphor-fan-control-fan-config ?= "phosphor-fan-control-fan-config"
OBMC_DBUS_PATH_ROOT ?= "/xyz/openbmc_project"
OBMC_DBUS_IFACE_ROOT ?= "xyz.openbmc_project"