summaryrefslogtreecommitdiff
path: root/meta-phosphor
AgeCommit message (Collapse)AuthorFilesLines
2019-05-22meta-phosphor: fans: remove native supportBrad Bishop11-178/+14
All OpenBMC BSP layers have moved to target class config recipes. As such, support for native class config recipes can be removed. (From meta-phosphor rev: f3b437c327b94df6f22c7d821f25d76f1d1c2180) Change-Id: I7729f7e34529a220af36b88017cb48a3ee887acb Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-05-22phosphor-ipmi-flash: srcrev bump 8e801e182c..26e241d3c0Andrew Geissler1-1/+1
Patrick Venture (5): bmc: implement reboot update mechanism bmc: firmware handler owns update mechanism tools: scope of the variable 'bytesRead' can be reduced. test: cleanup firmware handler::delete unit-tests bmc: add /flash/update to firmare handler (From meta-phosphor rev: a64346abc802cd762a7882bed86a98461bb94cd5) Change-Id: I9af821ccd26a2c0f1dc601ea25858babcfad2d42 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-05-21phosphor-ipmi-flash: srcrev bump 3a0363151f..8e801e182cAndrew Geissler1-1/+1
Patrick Venture (4): test: use common test object bmc: move Verification declaration out of single header bmc: move away from blobs namespace bmc: add update mechanism interface (From meta-phosphor rev: d73cedb67a5a13363ea4d64cca50915aaf014412) Change-Id: I57072305f399703c90df63dff322202d0145648c Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-05-21bmcweb: srcrev bump 4c9afe436f..1bfbe0e037Andrew Geissler1-1/+1
Adriana Kobylak (1): vm_websocket: Add websocket handler (From meta-phosphor rev: e8aa032125b441f559b696273875db3476f8fb57) Change-Id: Ia1f53ca939f07da9137acbfd912d1d39b70bb77f Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-05-21phosphor-fan-presence: srcrev bump 71779ab4b3..d9a580aa50Andrew Geissler1-1/+1
Anthony Wilson (1): Add Fan item interface (From meta-phosphor rev: 5f1a69e3a27c1afbe71301b48460667458342852) Change-Id: Ib7954e4d12c9f9fcd008afcbbb6ea2056901fe2d Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-05-21meta-phosphor: fans: enable non-native recipesBrad Bishop11-24/+185
There exists a number native class recipes throughout meta-phosphor that simply provide a data (often YAML) file as input to building another application. Having these data file recipes implemented as native class recipes prevents the use of machine overrides because bitbake (rightfully so) discards machine qualifiers from native recipes. Further, data files aren't really any different than library header files and those are consumed by recipes as target class recipes that are DEPENDed on. Do the same thing for data file recipes. A number of steps (patches) are required to ensure backward compatibility while other BSP layers make the transition to target class recipes. This patch is the first step in the sequence. Each native class recipe is duplicated with (approximately) the following transformation applied: 1 - remove "inherit native" 2 - add "inherit allarch" 3 - Add appropriate files to FILES_${PN} Also fixed a couple idiosyncrasies like SRC_URI += and LIC_FILES_CHKSUM that are not required. Finally, add a temporary layer of indirection around STAGING_DIR_NATIVE and STAGING_DIR_HOST to the fan metadata until other BSP layers have fully transitioned to target class config recipes. (From meta-phosphor rev: 19ee51f5cdce2ff2f076a3ca9263dabc79072ba9) Change-Id: I9671cc5343ed29a7ccfcee4cc00ebaaa9327e359 Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-05-21rng-tools: Lower niceness of rngdWilliam A. Kennington III2-0/+19
This gives more CPU time to the daemons and requests are are more important to run in a timely matter. We can see that we reach ipmid coming up and multi-user ~20s faster on an ast2500. Before priority reduction: root@zaius:~# journalctl -u phosphor-ipmi-host -o short-monotonic -- Logs begin at Thu 2019-05-16 07:27:57 UTC, end at Thu 2019-05-16 07:31:25 UTC. -- [ 86.855857] zaius systemd[1]: Starting Phosphor Inband IPMI... [ 91.624926] zaius ipmid[1423]: JSON file not found [ 93.436815] zaius systemd[1]: Started Phosphor Inband IPMI. [ 94.615676] zaius ipmid[1423]: Loading whitelist filter [ 94.686476] zaius ipmid[1423]: Set restrictedMode = false [ 95.791197] zaius ipmid[1423]: New interface mapping root@zaius:~# journalctl -u multi-user.target -o short-monotonic -- Logs begin at Thu 2019-05-16 07:27:57 UTC, end at Thu 2019-05-16 07:31:25 UTC. -- After priority reduction: [ 106.580622] zaius systemd[1]: Reached target Multi-User System. root@zaius:~# journalctl -u phosphor-ipmi-host -o short-monotonic -- Logs begin at Thu 2019-05-16 07:38:53 UTC, end at Thu 2019-05-16 07:41:20 UTC. -- [ 70.097045] zaius systemd[1]: Starting Phosphor Inband IPMI... [ 73.578294] zaius ipmid[1423]: JSON file not found [ 75.026965] zaius systemd[1]: Started Phosphor Inband IPMI. [ 76.143958] zaius ipmid[1423]: Loading whitelist filter [ 76.301370] zaius ipmid[1423]: Set restrictedMode = false [ 76.945443] zaius ipmid[1423]: Command in process, no attention [ 77.062437] zaius ipmid[1423]: New interface mapping root@zaius:~# journalctl -u multi-user.target -o short-monotonic -- Logs begin at Thu 2019-05-16 07:38:53 UTC, end at Thu 2019-05-16 07:41:20 UTC. -- [ 83.550371] zaius systemd[1]: Reached target Multi-User System. (From meta-phosphor rev: fb85bf908cf4106e131dafdb653064cb34106992) Change-Id: Ie22e5044bb0ef2d2f893a98f657e2083a1789e26 Signed-off-by: William A. Kennington III <wak@google.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-05-21rng-tools: Remove our customizationsWilliam A. Kennington III2-25/+0
The upstream rng-tools ships a systemd unit as a standard part of the package now so we don't need to define our own custom one. (From meta-phosphor rev: 2ced95119fe18b7ac75ea27df869043445734787) Change-Id: I0b9aaeb17ff85f0ccabb268e10ca48501763da66 Signed-off-by: William A. Kennington III <wak@google.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-05-21gpioplus: Convert to mesonWilliam A. Kennington III1-5/+4
We intend to remove autotools from the gpioplus build eventually. This is the final step needed to use meson for the package. (From meta-phosphor rev: c86057c5636542ad7fa86bbd2a31b9090a8c2a30) Change-Id: Ided281441177e3f4f136d5a84ad3b139adb0000e Signed-off-by: William A. Kennington III <wak@google.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-05-21meta-phosphor: Improve kernel version stringLei YU2-0/+19
The kernel version string by yocto by default is <tag>-<revision>, e.g. 5.0.7-b1b37a25644213428f4bab4c427581dd923e35da Where the revision is the version specified by SRCREV, no matter if there are additional pathces applied or not. This commit improves it by * If there are no yocto patches, keep the current version but use a shorter revision, e.g. 5.0.7-b1b37a2 * If there are yocto patches, append -dirty-<new-short-revision> to the version string, e.g. 5.0.7-b1b37a2-dirty-84fa553 Resolves openbmc/openbmc#1289 Tested: Verify the kernel version string is changed as above depending on if there are yocto patches. (From meta-phosphor rev: fcfd10d7380309bc274c4f5a8355ecaeb60ce439) Change-Id: I4210227a981721a6b322d640984ea58c57802cb1 Signed-off-by: Lei YU <mine260309@gmail.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-05-21bmcweb: srcrev bump cd225da878..4c9afe436fAndrew Geissler1-1/+1
Ed Tanous (2): Redfish: Fix managers UUID mixup Fix 404 handling in Redfish EthernetInterfaces (From meta-phosphor rev: 94aca1454821614c9d783b27c1141c412c482e5b) Change-Id: I3a89be70578787dd68a1632f9b70d6ffadc82199 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-05-21sdbusplus: srcrev bump c077190dfa..1befc49be9Andrew Geissler1-1/+1
William A. Kennington III (1): message: Fix passing of sd_bus interface to new messages (From meta-phosphor rev: 084d5478f8727af2ec8f2a6583d6b3a5a3c200fa) Change-Id: I4775f2addca7db6f46de3332d112a0f1b1638b36 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-05-21phosphor-ipmi-blobs: srcrev bump 924bc380c4..9260be3832Andrew Geissler1-1/+1
Patrick Venture (1): blobs-ipmid: blobs: add equality operator for BlobMeta (From meta-phosphor rev: ff9d2810b28ec37b98c4fb76d745f941e54c45bf) Change-Id: I6da15fcfab8c3b3b5eef4a5ceba333f5aeefe1ea Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-05-21phosphor-ipmi-flash: srcrev bump 3ecb3503d8..3a0363151fAndrew Geissler1-1/+1
Patrick Venture (7): bmc: only build file handlers if configured test: cleanup: firmware::close() tests test: cleanup: firmware::commit() tests test: cleanup: firmware::open() tests test: cleanup: firmware::write() tests test: cleanup: firmware::writemeta() tests test: cleanup: firmware::sessionstat() tests (From meta-phosphor rev: 6d1d0dc7897386937e580145c0efc486e75f428a) Change-Id: I65a824d4ca5637d5cfc9708f1faf94221971b961 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-05-21phosphor-host-ipmid: srcrev bump 572bac1735..fdb8389df7Andrew Geissler1-1/+1
Vernon Mauery (1): rewrite Get Device GUID to use new provider API Yu Ren (1): Return error if the input data is larger than expected (From meta-phosphor rev: 86f2637cc4158dae2570c017f7fb086d4926b282) Change-Id: I66752ac921b02e7f7e4992bbd0139c5feb1335ae Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-05-21phosphor-bmc-code-mgmt: srcrev bump 9cbfa2efaf..d5b8f75c2fAndrew Geissler1-1/+1
Adriana Kobylak (1): item_updater: Return NotAllowed when attempting to clear FieldMode (From meta-phosphor rev: 537d6758402f726c2e163bb5a19e72325f71a0e7) Change-Id: Ie0ff818eece32a1058376c583f7be46176d8ca4e Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-05-20phosphor-host-ipmid: srcrev bump 16b8693d63..572bac1735Andrew Geissler1-1/+1
Richard Marian Thomaiyar (1): user-mgmt: Update user data file, only for sync. Vernon Mauery (5): ipmid: Update set chassis power restore policy rewrite Get Chassis Status command Fix dependencies on auto-generated code Get Chassis Status should not bail if button interfaces are not present Update current channel mechanism to be usable by netipmid Yong Li (1): Remove the global warm reset ipmi command (From meta-phosphor rev: 19e8bfac814c18a41ed156f38450a991c10210fd) Change-Id: I0ef5d04acdb733d269f89cdc9c71bdd22dfa4df2 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-05-20mboxbridge: srcrev bump a804a73c39..fac3689e77Andrew Geissler1-1/+1
Andrew Jeffery (1): dbus: Unref replies to avoid leaks (From meta-phosphor rev: f147dee2abac1ffcde026305afbc8c63ec107424) Change-Id: Ia609adeac1d8b9517be6ab640bfcbf386c090ad3 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-05-20phosphor-ipmi-flash: srcrev bump bc841be98f..3ecb3503d8Andrew Geissler1-1/+1
Patrick Venture (8): firmware_handler: handle the state transitions tools: add update handler README: drop extra bridge details README: Add configuration details util: create util object for bmc and tool bmc: allow configuring the verification output path firmware_handler: minor code cleanup bmc: enable configuration of all verification (From meta-phosphor rev: 1c388d3af05470b3596989fca0564637b246e339) Change-Id: I4b795c5b250446febaba387b69064f5e469a1ff4 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-05-20ipmbbridge: srcrev bump 7fa9b7152d..8188d7651cAndrew Geissler1-1/+1
Dawid Frycki (1): Make use of new IPMI method call API (From meta-phosphor rev: e70cdb90df954f53534efb96a8d8e63c55bd2d53) Change-Id: Iac53cac10503e7701f10290303a2037f47839cbf Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-05-20phosphor-pid-control: srcrev bump 3987c8b499..d4695590d2Andrew Geissler1-1/+1
Kun Yi (1): main: fix loggingEnabled checking (From meta-phosphor rev: 2dc611b353e217b4989764d75e726a5ac1d7ef42) Change-Id: I81741340363c77e6591f3da1df55ee59581769ff Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-05-20entity-manager: srcrev bump 2de90695fd..5efbe61d7fAndrew Geissler1-1/+1
James Feist (1): Delete PWM defines (From meta-phosphor rev: a4e28a3a02d10459ec7ef46668e23329eb1a5221) Change-Id: I1f29561b7f9ee2b6ac915cf0bc67e71eb379d371 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-05-20sdbusplus: srcrev bump db4a4a61fb..c077190dfaAndrew Geissler1-1/+1
Vernon Mauery (1): Change async_method_call to be no-throw (From meta-phosphor rev: 49a5c2a9e6b22b255452610ed763098e8945ee88) Change-Id: I274def9c2727989277e24f7d25530b60d9ea60c7 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-05-20phosphor-networkd: srcrev bump 0850579309..0283b39bd3Andrew Geissler1-1/+1
Brad Bishop (1): maintainers: Add William Kennington (From meta-phosphor rev: 020c64c9f761a030700b445165ee0ef4297d89b7) Change-Id: Ie2184d9bed9002d96395bcabc2ec96808af6b8e8 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-05-20sdbusplus: srcrev bump 37a5e61732..db4a4a61fbAndrew Geissler1-1/+1
Vernon Mauery (1): MAINTAINERS file had the incorrect email address (From meta-phosphor rev: db87a5a1bb81c00bc64cc15baf137c69d44bfdda) Change-Id: I5f966a08ff21f62fc82879ca54e042cd457ebce4 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-05-20phosphor-gpio-monitor: srcrev bump 47044e6c86..64c8fcb651Andrew Geissler1-4/+4
Patrick Venture (1): build: install into bin instead of sbin (From meta-phosphor rev: c2a176803a1c1688ca38b46e5ca8a3f637f8d061) Change-Id: Iccb705dc1fa0738211b2be813534666cd1d0798f Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-05-20phosphor-ipmi-flash: srcrev bump e955e07d18..bc841be98fAndrew Geissler1-1/+1
Patrick Venture (1): tools: drop extraneous return statemen (From meta-phosphor rev: 651a9fb3d0a9d77fa8544873e4313062a099311b) Change-Id: Iefbd4ba6e4a0ca766977f4ba5d2f2e3d308c7a28 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-05-20ipmi-blob-tool: srcrev bump 8752cdf7a4..99400c82a4Andrew Geissler1-1/+1
Patrick Venture (1): blob: add equality operator for StatResponse (From meta-phosphor rev: 4418a4843339e696cbbfc039bfb47e440f9a3e26) Change-Id: Icdb9b0659c3c800a6d181e0f5253cbfebf0e0078 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-05-20phosphor-ipmi-flash: srcrev bump 9420ad2077..e955e07d18Andrew Geissler1-1/+1
Patrick Venture (2): tools: implement firmware verification polling firmware_handler: change state with verify results (From meta-phosphor rev: 3544c80d3a45173a52ae2aa12023e2931f5fcda7) Change-Id: I283b3b1809984a894efc66527e25cfff4fc8dcc1 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-05-20phosphor-led-manager: srcrev bump ab3b247f04..6fd9e440beAndrew Geissler1-1/+1
tony lee (1): Update the value of Period to D-bus obtained from configuration YAML. (From meta-phosphor rev: 42e6481a3150987c3e371c0ad4d5182e613f7206) Change-Id: I2d01963681dce3a547e8abba2c7a1cacff21e139 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-05-20phosphor-dbus-interfaces: srcrev bump 50c9436ed7..b8a82d92bbAndrew Geissler1-1/+1
Jayanth Othayoth (1): Generate a key and certificate signing request(CSR) Jia, Chunhui (1): add boot option support for floppy and USB Marri Devender Rao (1): Update README for handing GenerateCSR request (From meta-phosphor rev: 31ff3e3d0d38c305c0e5d25785fede32a14fcf6a) Change-Id: Id3fe1415ecf1761f034154221554b08d10ad4388 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-05-20ipmbbridge: srcrev bump 08deaa317c..7fa9b7152dAndrew Geissler1-1/+1
Amithash Prasad (1): Read channel configuration from JSON file Dawid Frycki (1): Add ipmbbridge maintainers list (From meta-phosphor rev: 24beb047a9c67396148119da5c0d0ed4f29488b2) Change-Id: I09278b1278f288b260c26b278a0004bb60b837f3 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-05-20phosphor-state-manager: srcrev bump eef31f82da..3a30b0542bAndrew Geissler1-1/+1
Andrew Geissler (1): Properly catch and report dbus timeout exception (From meta-phosphor rev: 336fabbf8aa7be74aa32aece1b4088b49020d7ad) Change-Id: Ib34ed0d1ada76993cef683c087fd235c08975565 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-05-16phosphor-webui: srcrev bump 565efda513..c57ec32f4aAndrew Geissler1-1/+1
Dixsie Wolmers (1): Fix activate image and reboot BMC (From meta-phosphor rev: 0526d777edd8ab95050da028b720071f6f76ae88) Change-Id: I57c8b972f5f91ecd8849fc41f85ef5731fcd1541 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-05-16ipmi-blob-tool: srcrev bump 800f06df98..8752cdf7a4Andrew Geissler1-1/+1
Patrick Venture (1): blob_handler: make commit data parameter optional (From meta-phosphor rev: efaa426765e4abfa9822c84a26869b3226459516) Change-Id: If292500f7c9f2a6f97f853949dd73ed318e1f4d2 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-05-16phosphor-ipmi-flash: srcrev bump 699750deda..9420ad2077Andrew Geissler1-1/+1
Patrick Venture (9): firmware_handler: prevent writing to verify blob firmware_handler: allow committing repeatedly firmware_handler: prevent writing metadata w/o data handler tools: io: fix printf portability build: use configure rule whether host tool is built firmware_handler: implement session stat w/ verification firmware_handler: use enum class type for UpdateState tools: trigger verification firmware_handler: use enum class for Session::State (From meta-phosphor rev: a9858b4d09071160a4bd3a8a614be4e63f755948) Change-Id: Icbf8c7d09e8d79c9870c129ffb6686c240459292 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-05-16dbus-sensors: srcrev bump 916360b862..b839c051dbAndrew Geissler1-1/+1
James Feist (1): ExitAirTemp: Fix threshold parsing (From meta-phosphor rev: e0172d03f428065a7a1def3e5212622dea77993d) Change-Id: I72e8ea7ed88ea1995fb7686eae0973f20bef49ae Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-05-16entity-manager: srcrev bump 7dfcd7d976..2de90695fdAndrew Geissler1-1/+1
James Feist (3): Shorten long sensor names Remove Profile Configuration Update json schema for fan control Zhu, Yunge (1): Add four types of HSBP (From meta-phosphor rev: 24f85a26ec088af693f8eaa4e62bb56e81f713a9) Change-Id: I5ed1478e36365a9cb8f3e5fdd01ec4e92c287409 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-05-16meta-phosphor: gpioplus: cleanup oeconf optionsPatrick Venture1-4/+1
Cleanup the extra oeconf variable in the recipe such that it's an assignment and not an append and isn't a mixed-evaluation line. (From meta-phosphor rev: 60c2de3f042aa6e179390ac883660e0b23c90de4) Signed-off-by: Patrick Venture <venture@google.com> Change-Id: Ia61ea129d2d6309df334915723d4caf8808762a0 Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-05-16meta-phosphor: ipmi-blob-tool: disable testsPatrick Venture1-0/+2
Do not build tests if building with bitbake. (From meta-phosphor rev: 99a4b23ea8673ec8839ad7ab29ccf3764f6882d9) Signed-off-by: Patrick Venture <venture@google.com> Change-Id: Iae4188c8930ff4f12ad784c30de0f0dc5c45b8e8 Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-05-16meta-phosphor: ipmi-flash: disable building host-toolPatrick Venture1-0/+2
Disable building the host-tool if building a bitbake image. Also disable building tests. (From meta-phosphor rev: f65a4e2ff1fd0305633ba943a8dbaa801f913669) Signed-off-by: Patrick Venture <venture@google.com> Change-Id: I3c74c34c7ee0a7a8b608cf6d1bf881f6853ab06c Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-05-15phosphor-host-ipmid: srcrev bump 4e6d257191..16b8693d63Andrew Geissler1-1/+1
Richard Marian Thomaiyar (1): user-mgmt: sync ipmi user & channel conf file Vernon Mauery (2): Legacy D-Bus interface must set yield_context remove usage of sdbusplus::message::variant (From meta-phosphor rev: 970c3600991c0c530da4e1adc5eeaa8b4fea43eb) Change-Id: I03eef7bacd5762cfb7137b9bd48bb012765bd5b5 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-05-15phosphor-pid-control: srcrev bump 1fe08952e5..3987c8b499Andrew Geissler1-1/+1
James Feist (1): Remove FanProfile configuration (From meta-phosphor rev: 326889ca9b81b1d62754b1bfdc1d7e70b8222b26) Change-Id: Ib99a8a504d237c457fef575eefbeec5d3a67aef1 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-05-15ipmi-blob-tool: srcrev bump 15bba880aa..800f06df98Andrew Geissler2-2/+2
Patrick Venture (4): ipmi_handler: provide unique creator blob_handler: move from raw to managed pointer blob_handler: provide a convenience static factory blob: implement commit command cleanup: add missing limits header phosphor-ipmi-flash: srcrev bump ac570a1bd1..699750deda Patrick Venture (5): tools: main: update ipmi-blob-tool constructors bugfix: only push the blob id if new add exception catch-all in main pci: implement sending firmware image over p2a updater: send hash file contents bugfix: tools: use pci member firmware_handler: add missing TODOs (From meta-phosphor rev: 342fa6d759f0803e71413c31e86294dbb22ebe3b) Change-Id: I4b7db51f8dae89b28c47ab6dbac048de332b4ffb Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-05-15meta-phosphor: allow overriding default virtual/obmc-system-mgmtPatrick Venture1-1/+1
Allow another distro building from OpenBMC to specify their own default virtual/obmc-system-mgmt to allow the meta-ingrasys/meta-openpower distro-feature virtual/obmc-system-mgmt to set within a system providing a different default. (From meta-phosphor rev: 9af5e6419f1cbd9d6ea130812dccb347e4e76e53) Tested: Zaius image built with correct openpower overrides. Other platforms built with expected value. Signed-off-by: Patrick Venture <venture@google.com> Change-Id: Ieee9d0b3cab9831bfe7201635bb1d79873f79e1c Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-05-15phosphor-software-manager: Use in-repo script, systemd conf and unitsAdriana Kobylak10-604/+0
Use the script, systemd configuration file and service files provided by phosphor-software-manager. Tested: The moved files are installed in their respective locations and code update on Witherspoon is successful. (From meta-phosphor rev: 3b5c7fdc75988dfae86b824708a97c9e8764a565) Change-Id: I316ab2b9bc0a250a5707b15251a9de8810217243 Signed-off-by: Adriana Kobylak <anoo@us.ibm.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-05-15phosphor-bmc-code-mgmt: srcrev bump a8eb78106c..9cbfa2efafAndrew Geissler1-1/+1
Adriana Kobylak (1): Move script, systemd conf, service files into repo (From meta-phosphor rev: 8d97188f9a45765a9708f8f6faf43b08ecc7622d) Change-Id: I13bb99a6eb98fa6a165c622dabc2af50dc056d04 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-05-15meta-phosphor: ipmi-flash: depend on linuxPatrick Venture1-0/+2
Depend on the linux shared workdir before configuration as this package depends on a few linux headers. (From meta-phosphor rev: e21be1982a6a97a0564ab441859f6a0db4f78b20) Signed-off-by: Patrick Venture <venture@google.com> Change-Id: I4b3b4677e8b28d7415ee2d00a591ed8664de9540 Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-05-15meta-phosphor: Remove unused obmc-inventory-mgrBrad Bishop2-38/+0
This recipe is no longer used in-tree anywhere. Drop. (From meta-phosphor rev: d589b3fc94db3563ef54195f6a592ba3e8abf9e5) Change-Id: I3aa5b0f4d27102bee500d31e33917d4fb32cfb2c Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-05-15meta-phosphor: remove unused obmc-inventoryBrad Bishop1-33/+0
obmc-inventory is a native recipe that provides a translator application that bridges OpenPOWER machine readable workbooks to a runtime configuration file for the obmc-mgr-inventory application. The Palmetto system was the only system to ever make use of obmc-inventory; the other obmc-mgr-inventory using systems use a hardcoded-in-python config file. Since Palmetto doesn't use obmc-mgr-inventory anymore, there is no longer a user of obmc-inventory. Drop from the tree. (From meta-phosphor rev: be7b902b79a0639d41f80102d79d26cce62be2f4) Change-Id: Ida807973f79e9d68e32be015408f84954c18ee39 Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>