commit | 56c9c5adda2c75ba1142cf82d49c114559eaf841 | [log] [tgz] |
---|---|---|
author | Deepak Kodihalli <dkodihal@in.ibm.com> | Fri Feb 23 07:24:20 2018 -0600 |
committer | Brad Bishop <bradleyb@fuzziesquirrel.com> | Sun Feb 25 23:41:21 2018 +0000 |
tree | dc0c7f61ae0789dba2fde6286a984f28ce5d7959 | |
parent | 30527730e6025f58ace738e54a9a65b9b66356e0 [diff] |
ipmi: fix broken asset tag function The Asset Tag command was implemented via https://github.com/openbmc/openbmc/commit/8af3309b, but broke via https://github.com/openbmc/openbmc/commit/b1009126. The latter commit did do the right thing though, the former commit had to use an append operator instead of a weak default value, when specifying a value other than "". The weak default value will not be set at all, when a previously assigned value is found. Resolves openbmc/openbmc#2867. Change-Id: Iddfff7d894e587875898777e3ab272d55654f833 Signed-off-by: Deepak Kodihalli <dkodihal@in.ibm.com>
diff --git a/meta-phosphor/common/recipes-phosphor/inventory/phosphor-inventory-manager-config-native.bb b/meta-phosphor/common/recipes-phosphor/inventory/phosphor-inventory-manager-config-native.bb index d7dd57e..0b1c453 100644 --- a/meta-phosphor/common/recipes-phosphor/inventory/phosphor-inventory-manager-config-native.bb +++ b/meta-phosphor/common/recipes-phosphor/inventory/phosphor-inventory-manager-config-native.bb
@@ -7,7 +7,7 @@ inherit obmc-phosphor-license inherit native -PHOSPHOR_INVENTORY_MANAGER_CONFIGS ??= "phosphor-inventory-manager-assettag-native" +PHOSPHOR_INVENTORY_MANAGER_CONFIGS += "phosphor-inventory-manager-assettag-native" # To add additional managed inventory items, create a recipe in your layer, # and add it to PHOSPHOR_INVENTORY_MANAGER_CONFIGS with a bbappend to this recipe.