commit | ade3e145ead0beedad181394fcaa63856176bdee | [log] [tgz] |
---|---|---|
author | Patrick Williams <patrick@stwcx.xyz> | Fri Oct 22 14:26:27 2021 -0500 |
committer | Patrick Williams <patrick@stwcx.xyz> | Tue Oct 26 16:14:46 2021 +0000 |
tree | 9d0e2e4687a46fffc09f7e1c3e5e66de5682a907 | |
parent | 8c561eecb190655d51249c37286cc2c904dee7c0 [diff] |
treewide: clean up use of OBMC_MACHINE_FEATURES Modify the machine meta-layer configs to remove the use of the OBMC_MACHINE_FEATURES indirection and favor the Yocto MACHINE_FEATURES variable instead. Signed-off-by: Patrick Williams <patrick@stwcx.xyz> Change-Id: Ifafb79e4e4c010e9476b9547cd4982f5b645060e
diff --git a/meta-openpower/conf/machine/include/openpower.inc b/meta-openpower/conf/machine/include/openpower.inc index 65d9a8a..f6c48bf 100644 --- a/meta-openpower/conf/machine/include/openpower.inc +++ b/meta-openpower/conf/machine/include/openpower.inc
@@ -1,4 +1,4 @@ -OBMC_MACHINE_FEATURES += "\ +MACHINE_FEATURES += "\ obmc-phosphor-fan-mgmt \ obmc-phosphor-chassis-mgmt \ obmc-phosphor-flash-mgmt \
diff --git a/meta-openpower/conf/machine/include/p8.inc b/meta-openpower/conf/machine/include/p8.inc index af269c2..eb262cb 100644 --- a/meta-openpower/conf/machine/include/p8.inc +++ b/meta-openpower/conf/machine/include/p8.inc
@@ -1,2 +1,2 @@ include conf/machine/include/ibm-power8-cpu.inc -OBMC_MACHINE_FEATURES += 'i2c-occ' +MACHINE_FEATURES += 'i2c-occ'
diff --git a/meta-openpower/conf/machine/include/p9.inc b/meta-openpower/conf/machine/include/p9.inc index 2da9fd1..5c17793 100644 --- a/meta-openpower/conf/machine/include/p9.inc +++ b/meta-openpower/conf/machine/include/p9.inc
@@ -1,3 +1,3 @@ include conf/machine/include/ibm-power9-cpu.inc -OBMC_MACHINE_FEATURES += 'op-fsi p9-cfam-override' +MACHINE_FEATURES += 'op-fsi p9-cfam-override' PREFERRED_PROVIDER_virtual/obmc-host-ctl = "p9-host-start"