summaryrefslogtreecommitdiff
path: root/meta-phosphor
AgeCommit message (Collapse)AuthorFilesLines
2019-12-05phosphor-webui: srcrev bump 5fcee5ab52..b42b93d8adAndrew Geissler1-1/+1
Derick Montague (1): Fix LDAP request resulting in 400 response Zbigniew Kurzynski (1): Sorting certificate table (From meta-phosphor rev: 70ed3f406d942e2d12c17e296b1d9796455abf62) Change-Id: I34898e849798d9dc59ba8d505f6bd84a00544ce5 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-12-05phosphor-host-ipmid: srcrev bump 520c1315fa..225dec858eAndrew Geissler1-1/+1
James Feist (1): chassis: remove startup dependencies William A. Kennington III (1): transporthandler: Static IPv6 Support jayaprakash Mutyala (1): sensorhandler:move get sensor threshold to new API (From meta-phosphor rev: de9f2874e41105b0677b8b28481104a4a8f9961a) Change-Id: I28ce8c290075d35bc44cba238ca6a5d261cf7396 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-12-05pldm: srcrev bump 79c37f11f5..f5087a4024Andrew Geissler1-1/+1
Deepak Kodihalli (2): pldmd: implement a new handler registration scheme bios: delete persisted tables at startup Sampa Misra (1): oem-ibm: write PELs using mktempfs (From meta-phosphor rev: ccca4f309c0a9eced58772e9ed750e2a384c1a79) Change-Id: I1a127566d6614dc1c34ad5bf570b616565946ce0 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-12-05phosphor-dbus-interfaces: srcrev bump 2d3b637f21..4610bace07Andrew Geissler1-1/+1
AppaRao Puli (1): Adding new state "FirmwareUpdate" to BMCState James Feist (1): Implement Storage Controller Interface Zbigniew Kurzynski (1): Multiple certificate implementation update. (From meta-phosphor rev: bc6d514639769ae4720930fc59822e8bfef0a71e) Change-Id: I12aff9cc591f5bae163b1633e074437aade88496 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-12-03Drop STAGING_KERNEL_DIRJoel Stanley2-8/+0
The Linux kernel userspace headers must be installed, not included directly from the kernel source tree: The correct way to package the header files for a distribution is to run 'make headers_install' from the kernel source directory to install the headers into /usr/include and then rebuild the C library package, with a dependency on the specific version of the just installed kernel headers. Luckily the header used by these two applications is shipped in the kernel used to build the userspace headers, so the hack of including the source tree has not been required for some time. (From meta-phosphor rev: fb23d65060279037444616b83c3dd62b407d21e6) Signed-off-by: Joel Stanley <joel@jms.id.au> Change-Id: I17ac7d9cc5c5e2c54871b045a42025790e819506 Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-12-03mboxd: Remove local aspeed-lpc-ctrl.hJoel Stanley2-44/+0
This userspace kernel header is now shipped in the upstream kernel, and importantly in the kernel uesd by Yocto. This means it does not need to be shipped locally. (From meta-phosphor rev: 2394d8e5ae0e164b459a55551479259bf50377ce) Signed-off-by: Joel Stanley <joel@jms.id.au> Change-Id: I13851f1e3868b522da97b654f39b86eeca6c56bd Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-12-03PAM config: move pam_cracklib to first positionJoseph Reynolds1-2/+2
This fixes a bug where Linux-PAM asks for the new password three times when changing the password. With this fix, PAM asks for the new password and then only once more to confirm it - two times total. This bug applies to the `passwd` command, to the expired password dialog when signing into the console using an account which has an expired password, and to other similar use of the PAM conversation function such as changing the password during SSH login. This does not affect the external behavior of the REST APIs or the webui because they use automated PAM conversation functions which programmatically supply the password as many times as it is requested. The bug happens like this: When PAM is asked to change a password via pam_chauthtok, it reads the /etc/pam.d/common-password file and executes the first module, pam_ipmicheck. This calls pam_get_authtok(pamh, PAM_AUTHTOK, &pass_new, NULL) which prompts for the new password and then prompts again to verify they are the same. The next module, pam_cracklib makes two calls: a call to pam_get_authtok_noverify() followed by a call to pam_get_authtok_verify(). The call to pam_get_authtok_noverify() does NOT prompt because the new password is already known to PAM, but the call to pam_get_authtok_verify() unconditionally prompts to validate the password. That's why we see two prompts to "Retype" the new password. The first is from pam_ipmicheck, and second is from pam_cracklib/pam_get_authtok_verify. The fix is to invoke pam_cracklib first and pam_ipmicheck second. Then pam_cracklib does all if its prompting, and pam_ipmicheck gets what it needs without prompting. The pam_ipmicheck module only checks the username and password length, so switching the sequence of these modules should be harmless. Tested: yes, via the "passwd USER" command (From meta-phosphor rev: a71db86192df0b0268db93e7ae6dc4633fce271e) Signed-off-by: Joseph Reynolds <joseph-reynolds@charter.net> Change-Id: I044df5731a69e45eca9597a345fa6d1b01041b58 Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-12-03phosphor-webui: srcrev bump 1ab0f7c1d5..5fcee5ab52Andrew Geissler1-1/+1
Dixsie Wolmers (2): Update loading spinner Add file upload component Yoshie Muranaka (2): Create alert banner component Fix truncated button icons on Safari (From meta-phosphor rev: 2efc5c7d44c2ac9305e50cb0485ca99f023ebcd6) Change-Id: I8309afc488cdeda397a1d86dcc462757f7dc7a14 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-12-03phosphor-host-ipmid: srcrev bump b0094a72d4..520c1315faAndrew Geissler1-1/+1
Deepak Kumar Sahu (1): apphandler: move set acpi power state to new api. (From meta-phosphor rev: 6824741efd555daa7c7ea7d24a0713499de5ee0e) Change-Id: I4a5bdd4f0d732b9fcdbd54b37a501bf3cebe90e8 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-12-03x86-power-control: srcrev bump 303bd58c4b..3f6ecb2124Andrew Geissler1-1/+1
Jason M. Bills (1): Update the MAINTAINERS file (From meta-phosphor rev: 43bce9ccc99a69427e7deb7e588b791231670df7) Change-Id: I102ace43118e9d3a0c1f88b8c1e346972924044a Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-12-03phosphor-host-ipmid: srcrev bump 4d22640a64..b0094a72d4Andrew Geissler1-1/+1
James Feist (1): Provide proper exit code for signals Johnathan Mantey (3): Fix command privilege for Get LAN Configuration command Generate the correct prefix value for IPv4 netmasks 0.0.0.0 Change Set LAN Config Auth Type Enables to return a Read Only response (From meta-phosphor rev: db9bac1c384d4b45ab62656a25f420498e4b9244) Change-Id: I05b90c39dc1bf18136ca327d7b7fe93edeba2bc7 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-12-03phosphor-ipmi-blobs: srcrev bump fea1d8115b..9cd8f76d3aAndrew Geissler1-1/+1
Kun Yi (3): Fix openFiles refcount cleanup: remove getPath Various cleanups (From meta-phosphor rev: 58dbc723a2202a4074affc6ec1584a9d5c76bdeb) Change-Id: I52f6354ae788f13eaa96bf0288de3967963ec621 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-12-03phosphor-sel-logger: srcrev bump 7d5054ac15..151b7c1fc6Andrew Geissler1-1/+1
Will Liang (1): Fix service crash when the exception occurred (From meta-phosphor rev: 56e82cf2c7ef2a8344f525a21d849c0b4a8d3b9c) Change-Id: Ibb40e7af82dae20e1dda8f5cce72ff57e880603c Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-12-03x86-power-control: srcrev bump 174ec66e41..303bd58c4bAndrew Geissler1-1/+1
Chen Yugang (2): Set Chassis capabilities Update NMISource behavior after its Property moved to phospher-dbus-interfaces Jason M. Bills (3): Use Host Off state for warm reset notification Update the saved power state after checking the restore policy Manage the RestartCause property from power-control Vijay Khemka (1): Removing some GPIO line dependency (From meta-phosphor rev: 5f85d0d050c518542a4a5d4fd474614a7501cc8a) Change-Id: Ica0e7b195fcd058ca74fa4da93128060551fdab2 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-12-03phosphor-ipmi-flash: srcrev bump 1290198fb8..cbf474049bAndrew Geissler1-1/+1
Benjamin Fair (4): bmc: add network bridge support sys: add networking functions tools: add network bridge support tools: net: add <optional> header Brandon Kim (2): tools: Add PpcMemDevice as an HostIoInterface tools: Fix clangtidy warning for PpcMemDevice (From meta-phosphor rev: 7af22d847b130fa52dcb5580b074647ecbad4b28) Change-Id: Id2e325bc2fa20a195579ffc641be65cad8b1c63b Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-12-03pldm: srcrev bump 5bdb30ad3f..79c37f11f5Andrew Geissler1-1/+1
Deepak Kodihalli (1): Add version for PLDM FRU spec implementation John Wang (1): bios: Use crc implemented in libpldm (From meta-phosphor rev: cb083fb3d602bc79db9c592ef284c5ecbdd10359) Change-Id: If03e6a4210e1b833447aa3a267459b7df5e10ebd Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-12-03bmcweb: srcrev bump 2658d9859a..3e0414fd3fAndrew Geissler1-1/+1
Gunnar Mills (1): README: Added Redfish Service Validator testing James Feist (3): Health: Allow populate to only be called once Storage: Add Storage Controller Remove error for empty subtree response Jason M. Bills (4): Add "Retry-After" header for temporarily unavailable messages Return a 404 instead of 500 for invalid Crashdump URIs Return 503 instead of 500 when Crashdump is busy Return no-content instead of waiting for OnDemand (From meta-phosphor rev: 45834f8d6572fe62f0e6e8a210c517cdf42657f4) Change-Id: Ied10b3fe63f59e92c8487734f7b52e0a99b909c9 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-12-02pldm: srcrev bump 4de4d00f3a..5bdb30ad3fAndrew Geissler1-1/+1
John Wang (7): bios: Add en/decodes for integer attribute bios: Verify the fields that need to be encoded bios: Define json structure for integer attribute bios: Use DBusHandler functions to avoid duplicate bios: Add a configuration parser for integer attribute bios: table construct: Add support for integer attribute libplmd: utils: Add bcd conversions (From meta-phosphor rev: ded63b01ef3a4dcea223fcd34ddbba963b8dc696) Change-Id: Id76e1de3afeae4cb68622403b60a5112bb4ea390 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-11-25phosphor-state-manager: srcrev bump 8be702939c..a65d30d16bAndrew Geissler1-1/+1
Vishwanatha Subbanna (1): Add support for bmcrebootoff and bmcrebooton (From meta-phosphor rev: 7fb16e574c145924c19d30aa8dd3579d1be6302a) Change-Id: If0eda6d780a4a5ab5b53d1cb91b1563935c065a9 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-11-22phosphor-ipmi-blobs: srcrev bump 7fc52c8fe3..fea1d8115bAndrew Geissler1-1/+1
Kun Yi (4): Implement session expiration test: Add unit tests for session expiration cleanup: Operate on members directly and allow empty paths in the lookup table cleanup: Use scoped initializers; move implementation to source file (From meta-phosphor rev: 1cb01503f1caa58159d023881e04f10c872d9811) Change-Id: I2b79320701c5e567815892b2f0474b923a11f8f3 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-11-22bmcweb: srcrev bump 99dc9c72e7..2658d9859aAndrew Geissler1-1/+1
Zbigniew Kurzynski (1): Adding instance address to log formatting. (From meta-phosphor rev: 6c728b0640ddd6545a6f40f0b57062da156800a8) Change-Id: I77fed1f6748b000ff4b5799c20ac90a2d462ad1a Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-11-22dbus-sensors: srcrev bump c140e2008b..14f0ad806cAndrew Geissler1-1/+1
Joshi, Mansi (1): Fix: PSU temp sensor don't have upper threshold (From meta-phosphor rev: 5bbc74e0f286133e4918b74348c2891f054ed4f5) Change-Id: Ia39eba27402009e22d4c067a8078d0aee500e692 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-11-22pldm: srcrev bump dce1c99c21..4de4d00f3aAndrew Geissler1-1/+1
Deepak Kodihalli (3): oem-ibm: add readFileByTypeIntoMemory handler oem-ibm: add readFileByType handler pldmd: implement PLDM.Requester D-Bus API John Wang (2): libpldm: util: Convert version field to string tool: Refactor base type Commands (From meta-phosphor rev: 7eb37a9503b80621d62cd7b408db57bd22cbb203) Change-Id: I372351ff5d29fabc9b28a9401502c5cb6a923106 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-11-22phosphor-hwmon: Udev rules should never blockWilliam A. Kennington III1-1/+1
If we create a dependency in the hwmon service that makes it take extra time to start, this will block up all of udev and prevent other devices from being discovered as we wait on the specific hwmon instance to start. This can result in deadlocks. Typical convention in udev is to block as little as possible to avoid these type of scenarios. udev can't handle failures so it's pointless to wait anyway. The service start will still be queued up as expected. Tested: Ran on a machine configured to use hwmon. Configured sensors can still be read and the daemons start as expected. (From meta-phosphor rev: 1a21d0092ab2f07f5530f8b1167cbe5af12b9516) Change-Id: I358566ce124a2bcd44306df3d579beca65133e83 Signed-off-by: William A. Kennington III <wak@google.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-11-22phosphor-ipmi-blobs: srcrev bump 8bc117792f..7fc52c8fe3Andrew Geissler1-1/+1
Kun Yi (2): Refactor various methods to get session or blob handler Store the last action time in session info (From meta-phosphor rev: 674af3a6d669da0c9fb195cad583a57789f17af8) Change-Id: Id2141d8abd4e41098eef18b3bbf2cf3ac81e9ac6 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-11-22bmcweb: srcrev bump c0a1c8a0ec..99dc9c72e7Andrew Geissler1-1/+1
Ed Tanous (1): Fix a namespace closing comment (From meta-phosphor rev: 89d5dc4024b561707074e0cdf330f462c94c042b) Change-Id: Id86705258953a8745b53eda3194d95ef3f8143db Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-11-22phosphor-state-manager: srcrev bump 38605ee2b3..8be702939cAndrew Geissler1-1/+1
Andrew Jeffery (1): obmcutil: Silence kill error message by quoting test variable (From meta-phosphor rev: 198ffad941cdb992fbc338353c3aab155fd89cf6) Change-Id: I573f477983b4655650c2725abca9cace866e68b3 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-11-22meta-phosphor: remove exe perms from udev rulesBrad Bishop2-3/+3
Remove execute permssions from udev rules to avoid errors like: systemd-udevd[110]: Configuration file /lib/udev/rules.d/70-iio.rules is marked executable. Please remove executable permission bits. Proceeding anyway. (From meta-phosphor rev: d0c97c05b3c9b0d4b73978894b87cf649944bb37) Change-Id: Ie2908b5b0734e79cf4d0287d1fe7262022d5d740 Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-11-22bmcweb: srcrev bump fd4859a7fb..c0a1c8a0ecAndrew Geissler1-1/+1
Iwona Klimaszewska (2): Fix extracting certificate id Implement nbd-proxy as a part of bmcweb (From meta-phosphor rev: f88ab45c8cee86bcc9820c063f042a1a6583db22) Change-Id: I94681275d5f1fcd29fd3c564de2feb6a2031c711 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-11-21Remove priv-callback supportRichard Marian Thomaiyar1-2/+2
priv-callback is deprecated as this privilege is applicable only to IPMI modem callback, which will not be supported in OpenBmc. In order to avoid confusion with this role, the same has been deprecated. Refer https://gerrit.openbmc-project.xyz/#/c/openbmc/docs/+/26839/ Tested: 1. Verified user management works as expected 2. Verified existing user with priv-callback is rolled as no-acess user. (From meta-phosphor rev: 96e5ce1e16476e984fc805c99f01351e1e310e97) Change-Id: Ifea3986d9f4b55359138597ee0b6264870f1af0a Signed-off-by: Richard Marian Thomaiyar <richard.marian.thomaiyar@linux.intel.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-11-21phosphor-host-ipmid: srcrev bump a7f81cc622..4d22640a64Andrew Geissler1-1/+1
Rajashekar Gade Reddy (1): Added sessionId context in host-ipmid, used by GetSessionInfo (From meta-phosphor rev: c638cda6474be71180412de89eb590060b66c83b) Change-Id: I77d5f6a62178c4c0b696250caa4a6759436d5c97 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-11-21pldm: srcrev bump f7d1a36c82..dce1c99c21Andrew Geissler1-1/+1
Deepak Kodihalli (1): oem-ibm: libpldm: add en/decoders for R/WFileByType (From meta-phosphor rev: e549b5b979a1437d73c66f41c59c1385706d7224) Change-Id: I58d45bc0500fe2580daae2b6e7ac419a817c816c Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-11-21phosphor-state-manager: srcrev bump 84b3b29efa..38605ee2b3Andrew Geissler1-1/+1
Andrew Geissler (2): monitor: refactor systemd signal monitor variable monitor: support systemd delay getting on dbus (From meta-phosphor rev: 1732c384e90de3d54a996f067a242177a16fd334) Change-Id: If577ff5ffb4ddbbf5f31321c8dd3428a1b358926 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-11-21entity-manager: srcrev bump 7972bb95e4..7d807754ccAndrew Geissler1-1/+1
James Feist (1): PerformProbe: remove forward declaration (From meta-phosphor rev: 9191f770288480861ca7f420d625b017631bd442) Change-Id: I477e6c0e9577277e770d4b11d8f5026c9b934bd9 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-11-21phosphor-dbus-interfaces: srcrev bump 9cb4a711cf..2d3b637f21Andrew Geissler2-2/+2
Alpana Kumari (1): Add support for byte array as a property type Brad Bishop (1): Revert "Enhance DHCP beyond just OFF and IPv4/IPv6 enabled." Chen Yugang (1): Add NMI source Property Cheng C Yang (2): Add DIMM Properties Add memory device types as in DSP0134 Deepak Kodihalli (1): Add PLDM.Requester interface Gunnar Mills (2): Update user_management.md link Update openbmc-systemd.md link James Feist (2): Add Drive Inventory Item Implement Global Inventory Item Johnathan Mantey (1): Enhance DHCP beyond just OFF and IPv4/IPv6 enabled. Manojkiran Eda (1): Aligned Nameservers property with Redfish Spec Yong Li (1): Add http/https boot option phosphor-inventory-manager: srcrev bump bbacd2326f..5a71b4c637 Alpana Kumari (1): Add support for byte array as a property type Andrew Geissler (1): dbus-name: do startup work before registering name (From meta-phosphor rev: 27e53a16a78515dbd4bf6377c73ac15eb594bf17) Change-Id: I64787138452806556eb5d870fec66ae5d3d38b59 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-11-20phosphor-ipmi-flash: srcrev bump 4e2a143fd1..1290198fb8Andrew Geissler1-1/+1
Benjamin Fair (3): tools: remove stat() check for supported interface bmc: add test for reserved flags bmc: allowing packing transport flags densely (From meta-phosphor rev: 65f1968216ec622d508f67e2862b5969f4d2ea7d) Change-Id: I65756aeb7ea6453839422741c5034da0d4643244 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-11-20image_types_phosphor: Make Version Purpose configurableAdriana Kobylak1-1/+4
The current version purpose is set to BMC[1]. Make it a configurable variable for cases where other Purpose value is more appropriate, like setting it to System if the machine includes the host-fw package that would package the BMC and host firmware code into a combined image. 1: https://github.com/openbmc/phosphor-dbus-interfaces/blob/master/xyz/openbmc_project/Software/Version.interface.yaml Tested: Verified the purpose is still BMC, then verifed that setting the variable from a machine.conf file changed its value. (From meta-phosphor rev: 356265535d268858840ddbe52ff8c1e37f084188) Change-Id: I159e73f9b9c310321dda885b10dbc1cd56a674ee Signed-off-by: Adriana Kobylak <anoo@us.ibm.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-11-20phosphor-net-ipmid: srcrev bump 8c0bf983de..49a94b2f82Andrew Geissler1-1/+1
Rajashekar Gade Reddy (1): Added current session Id to options map. (From meta-phosphor rev: cb4e90bd11fa42eb5973fb0ecf8ae08ad76aa4e2) Change-Id: I7048dee47d45cf688bc93c5282ed1cac9203e1f3 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-11-20bmcweb: srcrev bump 4bb3dc3465..fd4859a7fbAndrew Geissler1-1/+1
Ed Tanous (1): Remove unused wildcard captures (From meta-phosphor rev: c6204c629400fad03e39d7e8880099bd57a64806) Change-Id: I33cc8e71ee87b5801e32ea4ebabfca051a084581 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-11-20phosphor-logging: srcrev bump 6a53862ee3..53407be367Andrew Geissler1-1/+1
Matt Spinler (1): PEL: Support UserData padding in the testcases (From meta-phosphor rev: 2246075d76db98a2f810835379d7b3f5091c809f) Change-Id: If1792fc757340a0fd56bcf9b269c83d42dd414ca Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-11-20phosphor-gpio-monitor: srcrev bump 58dc277a9d..43dd2d8a02Andrew Geissler1-1/+1
Matt Spinler (1): Fix "Add device dependency for services" (From meta-phosphor rev: 94d03b8961cae85481983e5d9e01eda1a7e5c46d) Change-Id: Id320c8a36377276558ea54424b65b16967c84565 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-11-19entity-manager: srcrev bump 733f765421..7972bb95e4Andrew Geissler1-1/+1
James Feist (1): Stop reading devices that don't like it (From meta-phosphor rev: 5aabe53cb2c0c933fe0733ff185d3869436372b3) Change-Id: If4e0f1fd1b01468f5cd223ffe5764143b4d6cc85 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-11-19phosphor-webui: srcrev bump 432f02cd83..1ab0f7c1d5Andrew Geissler1-1/+1
Yoshie Muranaka (1): Create firmware-card component (From meta-phosphor rev: e9bf2faaf5c685312f28db577b05d06c8d694e7a) Change-Id: If05d60706619064b589116d1c76d147bcdb5a5ca Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-11-19bmcweb: srcrev bump f847a198a0..4bb3dc3465Andrew Geissler1-1/+1
Anthony Wilson (1): bmcweb: Add IndicatorLED property to sensors Carol Wang (1): Redfish: Set the power cap Ed Tanous (1): Implement constant time string compare for token (From meta-phosphor rev: 32d732be516e98768c2a6e8fc144c198dba28269) Change-Id: Iaa3d150866a157e224167452bd04aa03cb5c5b58 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-11-19pldm: srcrev bump a9aac7272b..f7d1a36c82Andrew Geissler1-1/+1
Carol Wang (1): bios: fix bugs in PLDM BIOS (From meta-phosphor rev: 11d084f0dba2c635d2228fc8915726a661f58831) Change-Id: If06e7bb7ae9012a5c1f4efe430b5741fcf2269de Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-11-19phosphor-logging: srcrev bump ad0e0476f8..6a53862ee3Andrew Geissler1-1/+1
Aatir (1): PEL: Hex dump bug fix Matt Spinler (2): PEL: Validate the message registry during CI PEL: Pad UserData section to 4 byte boundary (From meta-phosphor rev: c0d5a5f699964438cd0282408df4170208f0c1cf) Change-Id: Idd727e4d14cc7f85b8e3cb42c65441b7c2c317be Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-11-18bmcweb: srcrev bump 7d7034a65c..f847a198a0Andrew Geissler1-1/+1
AppaRao Puli (1): Fix for IndicatorLED if blinking object not found (From meta-phosphor rev: a8f26316ec6d9710f27531a1cd254d8e85a4a516) Change-Id: Icf8c3253eaa3dbbfca0a5fe0d26d7d480ed972c2 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-11-18Use debug-tweaks, allow-root-login to allow root.Richard Marian Thomaiyar5-8/+11
root user account is enabled with proper privilege and group, only if debug-tweaks or allow-root-login FEATURES is defined. Note: This will not remove root user getting managed from phosphor-user-manager, instead it will make sure, the privilege and groups are empty for the root user. Tested: 1. Verified the default build, which has debug-tweaks, allowing root user to be with priv-admin, and enabled for all groups. 2. Verified by removing debug-tweaks from the local.conf, and root user privilege & groups are empty. (From meta-phosphor rev: b1b8251f4e5f19189057cdeb998cf119be1c27b8) Change-Id: Iec2a0b1a9f84c27dd4947125903ce43f3a9c3c2c Signed-off-by: Richard Marian Thomaiyar <richard.marian.thomaiyar@linux.intel.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-11-18entity-manager: srcrev bump 787c3c3eff..733f765421Andrew Geissler1-1/+1
James Feist (1): Move objects out of global scope (From meta-phosphor rev: 5485cfad7a05e41a43182dfa598963f559f7d84c) Change-Id: Ida817142a290ade3304e331310c51ec71261d21d Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-11-18obmc-ikvm: srcrev bump 7cf1f1d43e..861337e8ecAndrew Geissler1-1/+1
Brad Bishop (2): build: drop autotools support systemd: Don't start without configfs (From meta-phosphor rev: e69bb0770514913d99035874515e4aff57fda810) Change-Id: Ifb12eb7ec47baaa3efb22a89a2860ed5f30967ea Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>