summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChirag Sharma <chirshar@in.ibm.com>2023-04-18 08:37:40 +0300
committerchirag sharma <chiragsibm@gmail.com>2023-04-27 12:50:30 +0300
commit857f086eb5e8ecac0b62f63848229b2c3afdf653 (patch)
tree9280c2f21302d642e933333087d448d88c5371e0
parentc36a021265b32f6ddb00cd5187969a8626f48787 (diff)
downloadopenbmc-857f086eb5e8ecac0b62f63848229b2c3afdf653.tar.xz
meta-ibm: Using append in override syntax
Currently, scripts in install_ibm_plugins link_ibm_plugins are not getting added in BMC image as a result of which changing "+=" to append. Tested: Post change can see the scripts are getting added in the image. Change-Id: I932257e3652d0d6911923d4e9e0a57abeeb392ce Signed-off-by: Chirag Sharma <chirshar@in.ibm.com>
-rw-r--r--meta-ibm/recipes-phosphor/dump/phosphor-debug-collector_%.bbappend2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-ibm/recipes-phosphor/dump/phosphor-debug-collector_%.bbappend b/meta-ibm/recipes-phosphor/dump/phosphor-debug-collector_%.bbappend
index e9ae74b7c1..df135f47f6 100644
--- a/meta-ibm/recipes-phosphor/dump/phosphor-debug-collector_%.bbappend
+++ b/meta-ibm/recipes-phosphor/dump/phosphor-debug-collector_%.bbappend
@@ -33,6 +33,6 @@ install_dreport_header() {
}
IBM_INSTALL_POSTFUNCS = "install_ibm_plugins link_ibm_plugins"
-IBM_INSTALL_POSTFUNCS:p10bmc += "install_dreport_header"
+IBM_INSTALL_POSTFUNCS:append:p10bmc = " install_dreport_header"
do_install[postfuncs] += "${IBM_INSTALL_POSTFUNCS}"