summaryrefslogtreecommitdiff
path: root/meta-phosphor
AgeCommit message (Collapse)AuthorFilesLines
2021-07-01webui-vue: srcrev bump 6641cc489d..3aecc07d9cAndrew Geissler1-1/+1
Dixsie Wolmers (3): Remove <br /> from hardware status tables Add fans hardware status missing properties Reorder VPD Quicklinks Sandeepa Singh (2): Resolve a bug in LDAP page Increase the filter menu margins Change-Id: Ie4d5f8dbebec65eac7829b5f006368be2ad7a6ee Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com>
2021-07-01peci-pcie: srcrev bump 3b1665a3d2..e55832b23fAndrew Geissler1-1/+1
Jason M. Bills (1): Fix mismatched data size in bitwise operations Change-Id: Ic537517edb955883ae253ff1f8159d87abad02da Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com>
2021-07-01pldm: srcrev bump 64a8f0fb34..83a644cbafAndrew Geissler1-1/+1
Sridevi Ramesh (1): libpldmresponder & pldmtool : Expand support for GetPLDMCommands Tom Joseph (1): libpldm: Fix validation in decode_get_firmware_parameters_resp Change-Id: I3863b37d4b23f7b772a494388be5e0911cda84d5 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com>
2021-07-01phosphor-dbus-interfaces: srcrev bump 0e6cea83df..1f971f2d64Andrew Geissler1-1/+1
Dhruvaraj Subhashchandran (1): Add InvalidArgument to the list of errors while creating dump. Ramesh Iyyar (1): HardwareIsolation: Added the "Entry" interface Vijay Lobo (1): Entry: Add ServiceProviderNotify property Willy Tu (1): Inventory: Add Item.Storage D-Bus Interface Change-Id: I7e604c5ff87b999ba989cce7aaa57fa86b8b555a Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com>
2021-07-01dbus-sensors: srcrev bump 18fffd3d4d..8685b17ab1Andrew Geissler1-1/+1
Zhikui Ren (1): fix klockwork issues Change-Id: I36704064ac9aa4a6c1782f83d27a169ba2f6021f Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com>
2021-07-01phosphor-led-manager: srcrev bump 9d9ab2291d..ad73885b72Andrew Geissler1-1/+1
Seires Li (1): revert "meson: support custom led yaml path" Change-Id: I4958ba8a40d1d194916c5f01c354cd13022f009b Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com>
2021-07-01entity-manager: srcrev bump 395c6d4539..c02d8cbbe8Andrew Geissler1-1/+1
Matt Spinler (1): configs: Move a sensor from Nisqually to Blyth Zhikui Ren (1): FruDevice: fix possible resource leak Change-Id: Id2c02b8b03885632935890f5563428b482661097 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com>
2021-07-01stdplus: srcrev bump 5c20da2d7e..73a20c4a7bAndrew Geissler1-1/+1
William A. Kennington III (3): cancel: Add default constructor cancel: Fix passing nullopt to constructor fd: Add an empty default constructor Change-Id: Ic6286675b6557e08d6bf2dd8e891cd86b0dcd31f Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com>
2021-07-01phosphor-logging: srcrev bump aa5d03b8c5..1976001573Andrew Geissler1-1/+1
Matt Spinler (1): PEL: Handle location codes for connectors Sumit Kumar (1): PEL:Skip assigning id to hostboot PELs William A. Kennington III (2): build: Update generated sdbus++ gen: Add script to check generated meson freshness Change-Id: I8bcfc965eca4643c7e13c633d8a2c17c91b0a4b9 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com>
2021-07-01bmcweb: srcrev bump 49e429ca17..729f55fe55Andrew Geissler1-1/+1
Abhishek Patel (2): Keep AutoLinking; Remove extra \ Modify entityPrivileges for certificate service George Liu (2): log_services: Add AdditionalDataURI to Post Code log entries log_services: Add download of post code log entries Gunnar Mills (3): Add Privileges schema to allow list Move Consoles to ComputerSystem Remove code using ambiguous privileges constructor Tejas Patil (1): Add DateTime & Offset in Managers & LogServices Change-Id: I3102ed81e4a9e69a0ae8d9bac21931daa00e45db Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com>
2021-07-01meta-phosphor: os-release: fix task caching with DISTRO_VERSIONPatrick Williams1-1/+9
It was reported that the following sequence would not cause `os-release` to rebuild: ``` bitbake os-release git commit --amend bitbake os-release ``` This is due to how bitbake task hashing is implemented with respect to weak variables. In 439c59b, DISTRO_VERSION was changed to a weak variable, but it is included in the 'vardeps' chain for 'do_compile'. When bitbake computes the hash for a task, typically the contents of the variables are used for the hashing, but for weak variables only the definition is used. (Confirmed by adding bb.note debugs to `poky/bitbake/lib/bb/data.py`) The new, weak DISTRO_VERSION is intended to be populated with contents from a `git describe` operation. Those contents must be used in the hashing of the 'do_compile' task and not the definition. This can be accomplished by creating an indirection using a strong variable. The dependency chain and hash evaluation will be as follows: ``` do_compile -> DISTRO_VERSION -> PHOSPHOR_OS_RELEASE_DISTRO_VERSION hash(do_compile) = ... + DISTRO_VERSION:${PHOSPHOR_OS_RELEASE_DISTRO_VERSION} + PHOSPHOR_...DISTRO_VERSION=2.11.0-dev-... ``` Prior to this fix the hash evaluation was: ``` hash(do_compile) = ... + DISTRO_VERSION:${@run_git...} ``` Fixes 439c59b425cf403355571875b3fa714782dcf15b. Tested: Ensure the above reported sequence causes a rebuild of os-release with expected data. Signed-off-by: Patrick Williams <patrick@stwcx.xyz> Change-Id: I0bd93d3d88bf62dfe03549419fe98ab85f10a68c
2021-06-29phosphor-led-manager: pass led yaml to buildSeires Li1-0/+10
phosphor-led-manager has migrated from autotools to meson, and it needs to be built with the correct led.yaml. This will check if there's a led.yaml in the order of: 1. where LED_YAML_PATH specifies 2. default path of virtual/phosphor-led-manager-config-native 3. where SRC_URI += puts files to and copies it to the right location. Tested: devtool modify phosphor-led-manager and checked if led.yaml is the right one. devtool reset, built the image and checked if led-manager are hosting the correct led groups on dbus. tried five different scenarios: 1. don't use phosphor-led-manager at all: yosemitev2 2. use config-native: romulus 3. use config-mrw-native: witherspoon 4. overrides the native path: hr855xg2 5. puts led.yaml in SRC_URI: created a custom one and tested that Signed-off-by: Seires Li <seiresli@pcpartner.com> Change-Id: Iacfbe633befd3f50f5ea685fd234a49e0eeb7b6f
2021-06-29phosphor-power: srcrev bump d3a70d9876..70e7f939fdAndrew Geissler1-1/+1
Adriana Kobylak (2): psu-ng: Validate configuration during power on psu-ng: Validate supported model and count Change-Id: Ie748efe74299319e94c6499b54382b0f764a1e5c Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com>
2021-06-29phosphor-net-ipmid: srcrev bump 7b64501877..ecc8efad10Andrew Geissler1-1/+1
Vernon Mauery (5): Enforce correct packet lengths Enforce encryption/authentication on in-session RMCP+ messages Only allow IPMI1.5 for non-session requests Require a valid session state prior to executing commands Be more proactive at removing stale sessions Change-Id: I1c784c6057087ace479975287d8b5c9087c14fb3 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com>
2021-06-29phosphor-psu-code-mgmt: srcrev bump de27029319..7905f587acAndrew Geissler1-1/+1
Chicago Duan (1): Fix unavailable code-update.md link Change-Id: I2b786b570183c5d3ece6bd25b864cfded82c927f Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com>
2021-06-29phosphor-logging: srcrev bump dde99203db..aa5d03b8c5Andrew Geissler1-1/+1
Benjamin Fair (1): Allow configuring the rsyslog server conf path Mike Capps (1): PEL: Add GPIODeviceUnavailable reg entry Change-Id: Ib0b44b315947b96667166d24b1295497f1fa418f Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com>
2021-06-29pldm: srcrev bump c33c2f05c9..64a8f0fb34Andrew Geissler1-1/+1
George Liu (2): Verify currect node is a child of current parent Add entity instance as an input parameter to pldm_pdr_tree_add() Change-Id: I8eaccc23ec728769c305e8b1efa5217ffae992cf Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com>
2021-06-25phosphor-fan-presence: srcrev bump 058180f9d6..bb449c1c7cAndrew Geissler1-1/+1
Matt Spinler (1): monitor: Shut down if no readings at power on Mike Capps (1): monitor: Read fan state from dbus inventory upon starting Change-Id: I5dfb86ae1d36e83bb412a9a535ae3ddc260c68c5 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com>
2021-06-25pldm: srcrev bump fe6f0d40f0..c33c2f05c9Andrew Geissler1-1/+1
Tom Joseph (4): common: Add helper function toString libpldm: Add API to decode firmware device ID record libpldm: Add API to decode component image info libpldm: Fix the check for the valid data length gokulsanker (2): libpldm: Add encode API for RequestUpdate cmd request libpldm: Add decode API for RequestUpdate cmd response Change-Id: Iee6ef4ef63dcfde005c6977122297c0a9041e8ae Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com>
2021-06-24meta-phosphor: mctp: Add mctp-demux.socketGeorge Liu1-2/+4
Resolves the following build error: ERROR: mctp-1.0+git999-r1 do_package: QA Issue: mctp: Files/directories were installed but not shipped in any package: /lib/systemd/system/mctp-demux.socket Fixes: a27a2f267548 ("libmctp: srcrev bump 507ba00dad..d4103f8f55") Signed-off-by: George Liu <liuxiwei@inspur.com> Change-Id: Ib302725bc54c312fc78caf00fa0fa5a2559668c5
2021-06-24libmctp: srcrev bump 34d4c96fcf..cfeaef8ecbAndrew Geissler1-1/+1
Sumanth Bhat (1): Add compiler flags to enable dev testing Change-Id: I6c65a918eec331443f8ad00e5e7f3509165c5580 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com>
2021-06-24bmcweb: srcrev bump 2205bbf681..49e429ca17Andrew Geissler1-1/+1
Jonathan Doman (1): Expose Processor PPIN property Change-Id: Iae73742f845e3da078ba1c5ab08af0b6f2569cea Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com>
2021-06-24obmc-ikvm: srcrev bump 673ac2eb11..40fd5429bfAndrew Geissler1-1/+1
Zev Weiss (1): Fix error reporting in Input::writeKeyboard() Change-Id: I413ff364543912fbcee0c3186e10e8fe3087a9b3 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com>
2021-06-24webui-vue: srcrev bump 42a270eac2..6641cc489dAndrew Geissler1-1/+1
Lei YU (1): kvm: Disconnect on page unload/refresh Change-Id: Ie4ab13699e97e433e86326790308828d81e61444 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com>
2021-06-24phosphor-fan-presence: srcrev bump bff172aa07..058180f9d6Andrew Geissler1-1/+1
Matthew Barth (4): monitor: Use new JsonConfig object presence: Use new JsonConfig object json: Remove unused JsonConfig object control: Install service files from repo Change-Id: Ic50f83acc3b58ef07da75c513f13dea7f6e75a64 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com>
2021-06-24phosphor-logging: srcrev bump d5c31366e9..dde99203dbAndrew Geissler1-1/+1
Matt Spinler (1): PEL: Add FanControllerOffline message reg entry Ramesh Iyyar (1): PEL: PHAL: Added new message registry for pre-poweroff Change-Id: I190bb4d4ffb6293f772f11e6e27d1317d92300ab Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com>
2021-06-24phosphor-dbus-interfaces: srcrev bump 08baf48ad5..0e6cea83dfAndrew Geissler1-1/+1
William A. Kennington III (1): build: Don't depend on sdbusplus.found() Change-Id: I90e8d1063fe2a4bf60fe9f4dfb8fe798bfc8adea Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com>
2021-06-24phosphor-virtual-sensor: srcrev bump 0fcf0e1ca1..1846d8225cAndrew Geissler1-1/+1
Patrick Williams (1): logging: remove spaces in entry definition Rashmica Gupta (1): add create_threshold function Change-Id: I7976f9f231ea62746aaf147c56d68c75b5195774 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com>
2021-06-24phosphor-watchdog: srcrev bump afc369ad54..86e09d749fAndrew Geissler1-1/+1
William A. Kennington III (1): build: Subproject support Change-Id: I0ec138e48a74fc56b36ce79bb31c0cb0812480eb Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com>
2021-06-24pldm: srcrev bump 9ea56f6260..fe6f0d40f0Andrew Geissler1-1/+1
Jayashankar Padath (1): fru: Add location code and VINI record in fru record table Pavithra Barithaya (1): PLDM: Change rate_unit field to None Tom Joseph (1): libpldm: Add API to decode package header info Change-Id: I8106b7588e472e75de2f9bf249e733ad91e7c1e5 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com>
2021-06-24phosphor-ipmi-blobs: srcrev bump d5ed40999f..f39e668c2bAndrew Geissler1-1/+1
William A. Kennington III (1): build: Remove autotools Change-Id: I342e5773b56488c92d5f4fb4296e618c2d44d061 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com>
2021-06-23meta-phosphor: os-release: Set weak default to DISTRO_VERSIONWilly Tu2-2/+1
Improved practice to use DISTRO_VERSION instead of the undocumented VERSION_ID. DISTRO_VERSION is documented in yocto https://www.yoctoproject.org/docs/latest/ref-manual/ref-manual.html and specified in this section about creating your own distribution. https://docs.yoctoproject.org/dev-manual/common-tasks.html#creating-your-own-distribution VERSION_ID is undocumented and will more likely be changed compared to the documented DISTRO_VERSION. The VERSION_ID is set to DISTRO_VERSION in poky/.../os-release.bb Use weak default to DISTRO_VERSION instead of overriding VERSION_ID. This allows other layers to override in *.bbappend or *.conf. Tested: ``` root@romulus:~# cat /etc/os-release ID=openbmc-openpower NAME="Phosphor OpenBMC (Phosphor OpenBMC Project Reference Distro)" VERSION="2.11.0-dev" VERSION_ID=2.11.0-dev-165-g20885c497 PRETTY_NAME="Phosphor OpenBMC (Phosphor OpenBMC Project Reference Distro) 2.11.0-dev" BUILD_ID="2.11.0-dev" OPENBMC_TARGET_MACHINE="romulus" ``` Signed-off-by: Willy Tu <wltu@google.com> Change-Id: I25b5a165b764e6562fa8008c9d2a75a82fb09139
2021-06-23meta-phosphor: mctp: Support raw KCS driver for astlpc bindingAndrew Jeffery1-0/+2
Add a PACKAGECONFIG entry for astlpc-raw-kcs to install the required udev rules. Change-Id: Ic9fc133d92106aeb72c0ef0af1123c31b1c5c24a Signed-off-by: Andrew Jeffery <andrew@aj.id.au>
2021-06-23meta-phosphor: mctp: Add PACKAGECONFIG[systemd]Andrew Jeffery1-1/+6
Change-Id: I9ea3a1d0305f339631a443bea09af6fea8d9e34f Signed-off-by: Andrew Jeffery <andrew@aj.id.au>
2021-06-23stdplus: Add liburing dependencyWilliam A. Kennington III1-2/+5
This is needed to build optional uring support. Change-Id: I114045f7db1eab955bebfa1479d60587386e88d0 Signed-off-by: William A. Kennington III <wak@google.com>
2021-06-22stdplus: srcrev bump 20cab0c5e3..5c20da2d7eAndrew Geissler1-1/+1
William A. Kennington III (1): io_uring: Add basic wrapper Change-Id: I7564cbb3ec7e41ffc6089a96e5a920377a0c46cb Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com>
2021-06-22peci-pcie: srcrev bump 1e17d33ee7..3b1665a3d2Andrew Geissler1-1/+1
Jason M. Bills (2): Add option to use OS state for PCIe scan timing Add option to use RdEndpointConfig for PCIe reads Change-Id: I3031947dbb7880eb5d9b40c578f39d64a7d454a8 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com>
2021-06-22phosphor-ipmi-flash: srcrev bump f450486f23..0077e34cfaAndrew Geissler1-1/+1
Patrik Tesarik (1): Fix hyperlink typo in README.md Change-Id: Ie8445f1d6f037c5bef34566c3810d20758c49e93 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com>
2021-06-22entity-manager: srcrev bump 7d53601257..395c6d4539Andrew Geissler1-1/+1
Jonathan Doman (1): Require all probe interface properties to match Change-Id: I0ea697b274e5fa5cd143f58aa4784614be7f33b5 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com>
2021-06-22webui-vue: srcrev bump 3f9cfa2c24..42a270eac2Andrew Geissler1-1/+1
Maciej Magdziarz (1): Firmware: Remove .tar references Change-Id: I3fe61189fa0e0eb6005a04cd0151e346817fbbe0 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com>
2021-06-22pldm: srcrev bump bc44b7bc1a..9ea56f6260Andrew Geissler1-1/+1
Christian Geddes (1): Update lid id for HCODE_LID and make HBD writeable in fileTable json Change-Id: Iff63d0c023d38ce73490fe0d0c23c2833f7c9d25 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com>
2021-06-22phosphor-logging: srcrev bump d354a39835..d5c31366e9Andrew Geissler1-1/+1
Harisuddin Mohamed Isa (2): peltool: Fixed output for SRC parser peltool: Fix Python C Extension for UD parsing Matt Spinler (1): PEL: Use ordered_json parse on plugin data Change-Id: If1d798a86595f5548c90da14229d0a70dccfe6f4 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com>
2021-06-22bmcweb: srcrev bump 0256b69420..2205bbf681Andrew Geissler1-1/+1
Albert Zhang (1): Redfish: Allow disabling and enabling SSH Ed Tanous (1): Fix include what you use in bmcweb_config.h Vivekanand Veeracholan (1): Add option to configure port number Change-Id: I67b54d75b9293058e6a9a69a7316f8880181a172 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com>
2021-06-22libmctp: srcrev bump d4103f8f55..34d4c96fcfAndrew Geissler1-1/+1
Sumanth Bhat (3): core: Handle MCTP fragment sizes core: Handle arithmetic overflow in adding new fragments core: Handle exhaution of message contexts Change-Id: I4de4012ca4a621ff9068c2b7eab13cc0ccf3173f Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com>
2021-06-22pldm: Add function2 dependencyTom Joseph1-0/+1
PLDM is adding infrastructure to register callbacks for the PLDM requester code. https://gerrit.openbmc-project.xyz/c/openbmc/pldm/+/43465 function2 is header only and already leveraged in sdeventplus and phosphor-ipmi-flash. function 2 provides move-only fu2::unique_function. Using function2 had an image size increase of 4K for PLDM daemon with build-type minsize. Signed-off-by: Tom Joseph <rushtotom@gmail.com> Change-Id: I427219b51cee7b29b7e62cc77d597143f21fcda0
2021-06-22phosphor-networkd: srcrev bump 3bf1c74e11..bdbbfb628fAndrew Geissler1-1/+1
William A. Kennington III (2): build: Full subproject support build: Move yaml files into a subdirectory Change-Id: I765194d9a027dd025aa9e2228f39328011a367a7 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com>
2021-06-22phosphor-bmc-code-mgmt: srcrev bump fa79914baa..16aa28a057Andrew Geissler1-1/+1
Lei YU (3): image_verify: Append .sig instead of replace image_verify: Support other images bios: Update bios_active version after code update Change-Id: Ib0f3a76879a0a5d139d8dadf6c8919dc47f0fc1d Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com>
2021-06-22pldm: srcrev bump 003fe02100..bc44b7bc1aAndrew Geissler1-1/+1
Tom Joseph (2): libpldm: Enhance decode of GetFirmwareParameters response libpldm: Fix is_string_type_valid Change-Id: I9f7fca4701c8c5e59ba786c9bbd9a589f72352b7 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com>
2021-06-22libmctp: srcrev bump 507ba00dad..d4103f8f55Andrew Geissler1-1/+1
Andrew Jeffery (1): mctp-demux-daemon: Use systemd socket activation Change-Id: Ied3f26b95370639b564aa7e1214e8d76bbc6074f Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com>
2021-06-22pldm: srcrev bump ea72f240bb..003fe02100Andrew Geissler1-1/+1
Andrew Jeffery (1): systemd: Remove mctp-demux dependency Tom Joseph (1): requester: Enhance the PLDM requester code Change-Id: I4b52657c9b5c79ded2cae44c716fdada1fec0aad Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com>