summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2021-09-28Merge tag '0.75' of ssh://git-amr-1.devtools.intel.com:29418/openbmc-openbmc ↵Jason M. Bills4228-37042/+55737
into update
2021-09-13meta-inspur: fp5280g2: Remove duplicate configurationGeorge Liu1-1/+0
`install -d ${D}${sysconfdir}/default` has been configured in the libmctp_git.bb file, remove it. Tested: 1. Successfully build libmctp and image-bmc 2. Saw the `/etc/default/mctp` file in image-bmc Signed-off-by: George Liu <liuxiwei@inspur.com> Change-Id: I162d10b4a09ebe87388f4e3e4d9f79aa32a94230
2021-09-12meta-google: gbmc-bridge: Fix nftables rules for local BMC addressWilliam A. Kennington III1-3/+11
We want to use sets instead of separate rules for each address. This also ensures that packets coming from internal sources are matched as internal packets. Change-Id: Iff87b81c48c7491a74af1a2cead4cabcb56d81a0 Signed-off-by: William A. Kennington III <wak@google.com>
2021-09-11meta-google: protobuf: Enable LTOWilliam A. Kennington III1-0/+3
We want to reduce the size of our target binaries, and LTO saves us about 300K. Change-Id: Id1fe52b48a16999385251ae927012ff3e494e2f3 Signed-off-by: William A. Kennington III <wak@google.com>
2021-09-11phosphor-logging: srcrev bump b2e541ee25..87001e465fAndrew Geissler1-1/+1
Patrick Williams (3): elog-gen: minor changes to reduce clang-format diffs elog-gen: sort exceptions for file stability clang-format: apply clang-12 changes Change-Id: If208b6a1bbec647c2b1c7208cbf893a3b9d68ddb Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com>
2021-09-11phosphor-dbus-interfaces: srcrev bump f18b21e0e1..6b50623459Andrew Geissler1-1/+1
Matt Spinler (1): Put PowerState On/Off enums in quotes Change-Id: Iffc7ef537cf0dc5a8869d678363bdf737a463ab7 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com>
2021-09-11openpower-proc-control: srcrev bump 2b21170102..ee56c55526Andrew Geissler1-1/+1
Jayanth Othayoth (1): phal: libipl enum name change IPL_NO_ERR to IPL_ERR_OK Change-Id: I85095bdc2ef4c9be28280e3c9b61de650ee41870 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com>
2021-09-11phosphor-ipmi-flash: srcrev bump 1c0fe13431..203ad80448Andrew Geissler1-1/+1
Willy Tu (1): updater: Cleanup Active blob to support multiple stages Change-Id: I996c83a647ed5e0bb376f93a55321c66cc3308fa Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com>
2021-09-11pldm: srcrev bump 3ddbe439da..430aaee501Andrew Geissler1-1/+1
Manojkiran Eda (2): Remove executable permissions for config file Remove unused function in fru parser code Change-Id: I7baf892e270e760e9934ee7c1029f461ef6fc4cf Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com>
2021-09-11phosphor-power: srcrev bump 2874e90220..1fd0b14587Andrew Geissler1-1/+1
Shawn McCarney (1): regulators: Add detectPhaseFaults() to Device Change-Id: Ibb7bb699b8d5eaab71821f28f6462e17bbc74a93 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com>
2021-09-11entity-manager: srcrev bump fbce8e2235..e7ac9c9eb1Andrew Geissler1-1/+1
Charles Boyer (1): service_files: remove StopWhenUnneeded flag in FruDevice service Konstantin Aladyshev (1): entity-manager: Fix typos in log messages Oskar Senft (1): schema: Add EntityId and EntityInstance to JSON schema. Patrick Williams (1): exception: add errno Zev Weiss (1): configurations: add ASRock E3C246D4I board Change-Id: I7c2a5d804f558ba0f94441c52f4d047ce46adb26 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com>
2021-09-11Remove watchdog-timeout service on p10bmc systemsShantappa Teekappanavar2-6/+14
watchdog-timeout service is needed only if the PHAL machine features is not present/enabled. In p10bmc is PHAL machine features based, so removing the watchdog-timeout service. This commit: - Does not install openpower-debug-collector-watchdog-timeout@.service file in the /lib/systemd/system directory for PHAL machine features based systems - Removes openpower-debug-collector-watchdog-timeout@0.service link to the service file, openpower-debug-collector-watchdog-timeout@.service, on PHAL machine features based systems Testing: Installed the image on p10bmc system and verified that the systemd service file openpower-debug-collector-watchdog-timeout@.service was not created, and the link file, openpower-debug-collector-watchdog-timeout@0.service, also was not created. Signed-off-by: Shantappa Teekappanavar <sbteeks@yahoo.com> Change-Id: I7bafd9b7e232043cddbcce76af51fd457169f759
2021-09-11openpower-debug-collector: Fix watchdog-timeout systemd service link issuesShantappa Teekappanavar2-5/+4
This commit: - fixes missing "@" in the openpower-debug-collector-watchdog-timeout@.service file path. - Adds openpower-debug-collector-watchdog-timeout@.service file to the /lib/systemd/system directory. Testing: Installed the image on simics and verified that the watchdog-timeout systemd service file was added to /lib/systemd/system directory. Signed-off-by: Shantappa Teekappanavar <sbteeks@yahoo.com> Change-Id: Id6d9309d35bf218a2b458548f8a9dc6b7cc0a58c
2021-09-10dbus-monitor: add dependency on snmp serviceAndrew Geissler2-0/+6
All IBM systems support the SNMP trap notification for error logs. This means phosphor-dbus-monitor needs to be careful to not start until the SNMP service is up and running. Without this dependency, situations can be hit, when lots of errors are present, where the phosphor-dbus-monitor calls into the SNMP shared library and hits an unhandled exception when trying to talk to the SNMP service. Tested: - Verified the unhandled exception is no longer seen and phosphor-dbus-monitor starts after the SNMP service. Signed-off-by: Andrew Geissler <geissonator@yahoo.com> Change-Id: I8b4ca94c0cdd7721aa8847dc478f3827f040a654
2021-09-10openpower: bump ipl to 5edb65dJayanth Othayoth1-1/+1
Amitay Isaacs (2): libipl/p10: libpdbg api always returns -1 on error libipl: Improve naming IPL_ERR_NILL to IPL_ERR_OK Chirag Sharma (1): libipl: Check to not apply resolved guard records Jayanth Othayoth (6): libipl: Add support for hostboot attribute overrides libipl: Add support for disabling denial list based SCOM libipl: pdbg v3.3 related changes libipl: Add sbe ffdc data logging support libipl: Log FFDC data if mpipl_continue chip-op fails libipl: ipl_error_callback_func prototype change Signed-off-by: Jayanth Othayoth <ojayanth@in.ibm.com> Change-Id: I817d48e88a484b70119314f3e54e5029c233c632
2021-09-10meta-amd: fix compilation errors with latest YoctoKonstantin Aladyshev19-43/+43
Make the following changes to fix compilation errors: - add honister to the LAYERSERIES_COMPAT variable, - increase CONF_VERSION to 2, - use new bitbake override syntax Signed-off-by: Konstantin Aladyshev <aladyshev22@gmail.com> Change-Id: I971f0f0f7110e0350994ced151ca429444885056
2021-09-10meta-ethanolx: Add driver for the FRU EEPROMKonstantin Aladyshev1-0/+1
AMD EthanolX CRB uses 24LC128 EEPROM as a device that is supposed to store FRU information. Add necessary Linux driver that adds support for this chip. Signed-off-by: Konstantin Aladyshev <aladyshev22@gmail.com> Change-Id: Iaf54bfd5bfbc3266d2a18861ee47339df78c777b
2021-09-10meta-inspur: fp5280g2: Rename mctp package to libmctpGeorge Liu1-0/+0
Since the upstream has renamed the mctp package name (debf2b5), it will fail when building fp5280g2. Synchronously update the mctp package name of fp5280g2. Tested: built fp5280g2 image successfully. Signed-off-by: George Liu <liuxiwei@inspur.com> Change-Id: Ifdf4bc7955d182617532537f1f5fc59931d27eca
2021-09-10phosphor-sel-logger: srcrev bump 9f476e82f7..a138ebd3c7Andrew Geissler1-1/+1
Patrick Williams (1): exception: add errno Change-Id: I124f8fa8535a5db6c5469b6e760fd1253e424b84 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com>
2021-09-10sdbusplus: srcrev bump bd372ecb56..ef26221bc1Andrew Geissler1-1/+1
Patrick Williams (2): exception: create subclass for generated errors sdbus++: add errno property to errors Change-Id: I1ce4f1006af90300322b71a3cd52f5716589df40 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com>
2021-09-10dbus-sensors: srcrev bump 5770a6fd6a..5ab424a6a4Andrew Geissler1-1/+1
Ed Tanous (2): Make dbus-sensors compile with clang-13 clang-tidy disable bugprone-narrowing-conversions Change-Id: I078acb48b9c61cdf7ba870fef9bb2de8804bdaa7 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com>
2021-09-10telemetry: srcrev bump e702a5de61..93064d8fceAndrew Geissler1-1/+1
Krzysztof Grobelny (1): added support for Collection Functions Lukasz Kazmierczak (1): Updated subprojects revisions to fix build issues Change-Id: I63885a6ae212ac7ab6b58381e9d0a2defe2f3fd6 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com>
2021-09-10openpower-proc-control: srcrev bump ad1cfa50b5..2b21170102Andrew Geissler1-1/+1
Jayanth Othayoth (1): phal: ipl_error_callback_func prototype related changes Change-Id: I6c3e9b4184b2293c15679b94ff45d37d016189ef Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com>
2021-09-10phosphor-dbus-monitor: srcrev bump 764adb5e51..b839c3ea01Andrew Geissler1-1/+1
Alexander Filippov (1): format: fix logging of a boolean property Change-Id: I27c4012725c090eea4e17c93e7072cfdf019aec8 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com>
2021-09-10webui-vue: srcrev bump f7000cd6ce..aaff26ef82Andrew Geissler1-1/+1
Dixsie Wolmers (1): Fix broken link on firmware page Konstantin Aladyshev (8): Russian translations for the IA log section changes Russian translations for the IA health section changes Russian translations for the IA control section changes Russian translations for the IA configuration section changes Russian translations for the IA access section changes Russian translations for the IA resource section changes Russian translation for the system attention indicators Russian translations for the export all and delete all buttons Change-Id: I3ce91e1bf2920843fcfcabd6dd969b0629bf1640 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com>
2021-09-10phosphor-power: srcrev bump 39eb08a90b..2874e90220Andrew Geissler1-1/+1
Patrick Williams (1): exception: add errno Shawn McCarney (2): regulators: Add PhaseFaultDetection to Device regulators: Simplify Device test cases Change-Id: I21a846a695166ac704b849d764576a1c9ffb173d Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com>
2021-09-10phosphor-dbus-interfaces: srcrev bump d81cff3c7a..f18b21e0e1Andrew Geissler1-1/+1
Patrick Williams (1): various: fix error metadata for systemd rules Change-Id: Ib542ff061aa8901aaba17ffe21c94fd8a0500d79 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com>
2021-09-10pldm: srcrev bump 0922275b3b..3ddbe439daAndrew Geissler1-1/+1
Manojkiran Eda (1): Fix for discovering the HostState Shantappa Teekappanavar (1): pldmtool: List all PDR records or PDR records based on PDR type Change-Id: Ideab672f4cf4bda8254f58c501eff52cdba76a27 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com>
2021-09-10meta-fii/meta-kudo: Select clears-sel optionCharles Boyer1-1/+1
This will select the option within phosphor-sel-logger to clear the IPMI SEL through its Clear method. Then there will not be a Record ID sync issue from the clear of SEL and adding new entries. Signed-off-by: Charles Boyer <Charles.Boyer@fii-usa.com> Change-Id: I4ba21237b2726254b2a427d9bc26469c5267b565
2021-09-09meta-google: zstd: Split libraries from binariesWilliam A. Kennington III1-0/+2
This saves ~3MB of uncompressed size. Working on upstreaming this change, but keep it as part of meta-google for now. Change-Id: I261610c1413b514f7090e3be84ca19e243653640 Signed-off-by: William A. Kennington III <wak@google.com>
2021-09-09meta-google: google-key: Don't bring in all of gnupgWilliam A. Kennington III1-1/+1
This has a measurable effect on the size of the image, removing nearly 10MB of binaries from the uncompressed size. Change-Id: I4da1cca0ac036ef3eded48e5c64ab4ca12196264 Signed-off-by: William A. Kennington III <wak@google.com>
2021-09-09Webui-vue builds with IBM environment variablesAbhishek Patel2-1/+7
To build webui-vue with IBM theme, need to set IBM environment variable during the webui-vue build. Yocto has many layers of abstraction. To specify IBM environment variables, we use --mode npm build Commandline argument, which helps to set IBM environment variables. We need to set this environment variable during IBM build only. So created webui-vue_%.bbappend file, which sets that env variable only for IBM builds. More information could be found at https://github.com/openbmc/webui-vue/blob/master/docs/customization/build.md Tested with IBM build. Signed-off-by: Abhishek Patel <Abhishek.Patel@ibm.com> Change-Id: I6ff997a94eb59b695741ccca95acb7693a4714ff
2021-09-09phosphor-sel-logger: add clears-sel PACKAGECONFIG optionCharles Boyer1-0/+1
This option will enable phosphor-sel-logger to clear the SEL log files. Signed-off-by: Charles Boyer <Charles.Boyer@fii-usa.com> Change-Id: Ia710a2f1a901b18c78f8d54109761589cf5d5c2b
2021-09-09entity-manager: srcrev bump 86671ef4bd..fbce8e2235Andrew Geissler1-1/+1
Ed Tanous (2): clang-tidy disable bugprone-narrowing-conversions clang-format with version clang-format-13 Change-Id: I3c0cde40ae5e81a0ec771d674822ce4b97054767 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com>
2021-09-09phosphor-objmgr: srcrev bump 99cf37fe65..bedd41655eAndrew Geissler1-1/+1
Patrick Williams (1): exception: add errno Change-Id: I94a8268dbce90ba16f86c149716dbc820e31cdbf Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com>
2021-09-09openpower-pnor-code-mgmt: srcrev bump 7b5685d105..0ddd4fad45Andrew Geissler1-1/+1
Isaac Kurth (1): item_updater_mmc: Implement bios factory reset Change-Id: Id1be191200e8b9c3210e5cf6e34d42fcca5f3b66 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com>
2021-09-09stdplus: srcrev bump 8056259966..5e3b13f022Andrew Geissler1-1/+1
Patrick Williams (1): exception: added guards around builtin redefinition Change-Id: I2c8528f689e50aa1efa0405746f509dfbb50fd6e Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com>
2021-09-09phosphor-led-manager: srcrev bump ad73885b72..7152edcff6Andrew Geissler1-1/+1
Patrick Williams (1): exception: switch to public sdbus exception Change-Id: I62023a165f18291873733a28115cb3b891b178a0 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com>
2021-09-09phosphor-power: srcrev bump 69f10ad0b5..39eb08a90bAndrew Geissler1-1/+1
Shawn McCarney (5): regulators: Implement phase_fault_detection object regulators: Add i2c_capture_bytes to parser regulators: Add phase fault type to parser regulators: Add log_phase_fault to parser regulators: Add phase_fault_detection to parser Change-Id: Ia637cbfb48473a0f747627c304373fc53c088e53 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com>
2021-09-09phosphor-logging: srcrev bump 36a3469323..b2e541ee25Andrew Geissler1-1/+1
Patrick Williams (2): exception: define get_errno for example types exception: switch to public sdbus exception Sumit Kumar (1): PEL: Update bmc & platform dump status in SRC section Vijay Lobo (1): PEL.Entry update hidden property setting Change-Id: Ic9405903c5fcd294317b8c6bc81d1a075c872731 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com>
2021-09-09openpower-host-ipmi-oem: srcrev bump 98af91d62e..7bb95c3e23Andrew Geissler1-1/+1
Patrick Williams (1): exception: switch to public sdbus exception Change-Id: I0148d2cba49f23cfcf342034c30f7e60853f1f9d Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com>
2021-09-09openpower-proc-control: srcrev bump 2246cca047..ad1cfa50b5Andrew Geissler1-1/+1
Andrew Geissler (2): op-reset-host-check: update for recent state mgr changes op-reset-host-check: add logging as service dep Change-Id: I849d1018a2a619266c06ba7b2ba016668426cf29 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com>
2021-09-09bmcweb: srcrev bump abb93cdd0a..7bb985eeb0Andrew Geissler1-1/+1
Ed Tanous (1): Include systemd and boost as system dependencies Sunitha Harish (1): IBM Management Interface: Lock Management Change-Id: I0c9f8f99c0ba94cd6964cff0065a0b6a93fea9a2 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com>
2021-09-09phosphor-inventory-manager: srcrev bump 701c1fc8a8..1707945afbAndrew Geissler1-1/+1
Bruce Mitchell (1): Replace IRC with Discord Change-Id: Ifb5d672afce161bd890875166b9fa15e820f5b45 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com>
2021-09-09phosphor-dbus-interfaces: srcrev bump 3e9aa3b284..d81cff3c7aAndrew Geissler1-1/+1
Brandon Kim (1): Add Step and Microcode properties to Cpu Interface Change-Id: I4fcf562d388a22caf4217a58b0af55729c9dd068 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com>
2021-09-09libmctp: srcrev bump edebe169eb..ae59f4fe3aAndrew Geissler1-1/+1
Christian Geddes (1): Notify remote endpoint with RX_COMPLETE prior to handling MCTP packet Change-Id: I3ee19c8dac044d0c85ff2cd7eb3a8f98982b7a2b Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com>
2021-09-09pldm: srcrev bump e5bbe0d055..0922275b3bAndrew Geissler2-2/+7
Adriana Kobylak (1): oem: ibm: Add services to reset PHYP NVRAM Tom Joseph (1): tools: Extend pldm_fwup_pkg_creator Change-Id: I9dce25f3137a938c84dd080eaa8f37aa5a5147eb Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Adriana Kobylak <anoo@us.ibm.com>
2021-09-09smbios-mdr: srcrev bump 7ece93a842..511b06c05dAndrew Geissler1-1/+1
kasunath (1): Check OperatingSystemStatus to determine POST done. Change-Id: I659caf41b793fc53979ba4f1aa09c808a6924e24 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com>
2021-09-09intel-ipmi-oem: srcrev bump 153d4c14af..98cb6186e7Andrew Geissler1-1/+1
Arun P. Mohanan (1): fix: Correct bit mask for GetBMCServiceStatus cmd Change-Id: I0998f2d79dad742e800becfe17eca73a9cec0f3c Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com>
2021-09-08meta-google: image_type_hothJohn Edward Broadbent1-0/+150
This is Google's internal method for dealing with hoth and image sizes. No changes are expected for any non-Google projects. Change-Id: I2b66763e0fdc1cd019c2d774134290788228982b Signed-off-by: John Edward Broadbent <jebr@google.com>