summaryrefslogtreecommitdiff
path: root/meta-phosphor
AgeCommit message (Collapse)AuthorFilesLines
2018-10-30phosphor-objmgr: srcrev bump cfe3e4424e..0570c6940cAndrew Geissler1-1/+1
Brad Bishop (1): python-mapper: Switch to dbus service whitelist Matthew Barth (1): Check for boost headers used (From meta-phosphor rev: fa4e1eb46bd81d4aee3de467e469b78f40b09dfe) Change-Id: Ic8fba3f94916d79487e9a14c897baf12e9a7f0ed Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2018-10-30phosphor-pid-control: srcrev bump 65ea92e7ff..f3252315f3Andrew Geissler1-1/+1
Patrick Venture (1): style: fixup naming of structures (From meta-phosphor rev: 66d70e9d319bf6e08639a5de919105682953a710) Change-Id: Id913ce6aff5b2016169500fa7102fdd26cc05dd6 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2018-10-30phosphor-net-ipmid: srcrev bump b00f8f7fdb..cc90c803e6Andrew Geissler1-1/+1
Emily Shaffer (1): MAINTAINERS: Update Emily's IRC nick (From meta-phosphor rev: f91557fc2d197ccb22b10e91cada178df6afe99b) Change-Id: Ic8f46e852f095f8c9244905471cfc23d9b8af3ca Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2018-10-30meta-phosphor: phosphor-software-manager: drop symlinkPatrick Venture2-105/+105
Drop symlink and rename bb for phosphor-software-manager. (From meta-phosphor rev: 2bb72e97b4adeaae4df141e32ec001b59a22abd3) Change-Id: I204b0041b520c561220931c32db394971de323c7 Signed-off-by: Patrick Venture <venture@google.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2018-10-30bmcweb: srcrev bump 35a62c7ca3..af996fe4d1Andrew Geissler1-1/+1
James Feist (1): Add Pid Oem Redfish Schema (From meta-phosphor rev: 092bbec339c0632af714bec6a804230f627b5a55) Change-Id: Ic9bdeb710c2785973ec55b8d3c4c7fa945294136 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2018-10-30ipmi-fru-parser: srcrev bump 19bea9ae44..69418ebc49Andrew Geissler1-1/+1
Patrick Venture (16): fru_area: cleanup headers IPMIFruArea: move source into separate fru_area.cpp IPMIFruArea: move assignments to constructor list IPMIFruArea: drop unused member methods IPMIFruArea: drop iv prefix from members IPMIFruArea: move private area under public IPMIFruArea: apply naming convention to member functions writefrudata: cleanup extra parentheses IPMIFruArea: delete default constructor writefrudata: add missing constness update: use sdbusplus instead of sd_bus raw pointers writefrudata: fixup function naming per style writefrudata: rename all variables per openbmc style strgfnhandler: rename all variables per openbmc style strgfnhandler: rename function per openbmc style guide writefrudata: drop unused sd-bus.h (From meta-phosphor rev: c4c1e6cc5d1d9291c5ea5305096468500ef66418) Change-Id: I731b9e8674116f9da41a816fe908809d5a2432b1 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2018-10-30jsnbd: srcrev bump fa1d37502c..d5b9857609Andrew Geissler1-1/+1
Brad Bishop (1): client: fix gcc8 stringop-truncation warnings (From meta-phosphor rev: 1f87862550e0af270b362ffacf62d0208aa2cfdd) Change-Id: I9c5664492129751504cfc60a8585000a2c85cf85 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2018-10-30Disable systemd-coredump from phosphor layerAndrew Geissler1-1/+1
Continue to hit two major issues with having coredumps enabled in OpenBMC: 1. Filesystem space for coredumps Systemd writes the core files to /var/lib/systemd/coredump/ This is a persistent filesystem so space is very limited. There is currently no way to configure this location (would need upstream work). Due to issue #2 below, when a single application fails, it starts to cause other services to coredump which results in the available space quickly filling up. This can result in the UBI kernel driver remounting the filesystem read-only. 2. CPU utilization When an application fails, and causes a coredump, it is restarted by systemd. The restart causes mapper to fire up and introspect the restarted application. In parallel the coredump is being generated and collected. These two things heavily load the CPU. If this occurs during the initial startup of the BMC, where lots of other services are also starting and being introspected by mapper, then those services can start hitting their systemd timeout limit. This then results in core dumps being collected for them and mapper instrospects being called on their restarts. This causes a snowball affect where the system just continues to restart services and collect core dumps. The systemd restart policy can not account for these long delays between restart (due to the CPU load) so the limit is never hit within the time limit, resulting in an infinite restart loop. There is upstream work that could be done with systemd to make the core dump function more embedded system friendly. This would be a long term solution but may become a moot point as performance improvmenents come in (c++ mapper), more powerful CPU's are used, and more flash space is allocated in future systems. Personally, I've never used a core dump to debug an issue and have dealt with the above issues multiple times so I'm probably a bit biased. This could definitely be a meta-ibm layer type change if others in the community prefer this enabled as the default. resolves openbmc/openbmc#3379 (From meta-phosphor rev: dde999f1076f571a1760c9e5e536e63796749e57) Change-Id: Ib229d8bf58aa075926fd302a0139a042d069f446 Signed-off-by: Andrew Geissler <geissonator@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2018-10-30phosphor-fan-presence: Depend on gpioplusWilliam A. Kennington III1-0/+1
An upcoming change will require that gpioplus is available for building. (From meta-phosphor rev: 8711f98bdb372acbf85e7bec383ea6fbfcbafacc) Change-Id: I5a8544bf971c3bb512adb1ff88cef70997347394 Signed-off-by: William A. Kennington III <wak@google.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2018-10-30phosphor-mapper: Add service namespacesBrad Bishop7-4/+43
The c++ mapper implements a dbus service namespace whitelist instead of a path namespace whitelist. A service namespace whitelist significantly reduces the amount of introspection required by the mapper as compared to path namespaces. Add the service namespace whitelist to the mapper command line in the mapper systemd unit and extend the existing framework for specifying mapper command line arguments to include a service namespace whitelist. Note that support for a _service_ blacklist is added and _path_ and _interface_ blacklists are not being re-introduced. (From meta-phosphor rev: 385c63fee1d7ac4f34165de7095f2e76b10f1328) Change-Id: I0cc8f7d7dd0c1196b2354118cf6ab89b2d30231f Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2018-10-30entity-manager: srcrev bump 57cf32d9fe..c1aff3a71dAndrew Geissler1-1/+1
James Feist (1): Add fan presence support configurations (From meta-phosphor rev: f71095e2b0e43a76a7b47112cc3e3c12fde87dc5) Change-Id: I673c2d8274bbae7ab3047b30dbca5b07f9420d88 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2018-10-30phosphor-pid-control: srcrev bump 26e8c6a940..65ea92e7ffAndrew Geissler1-1/+1
James Feist (1): dbusconfiguration: lower cpu cycles while waiting (From meta-phosphor rev: 0bfccbed5da5aa4cbde255113e27fbcfc28d5fbd) Change-Id: I6a39ba54eca9e0fc465a4fb6947f9f8249a5a901 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2018-10-30phosphor-webui: srcrev bump cb7d29082e..d7557e5c00Andrew Geissler1-1/+1
Gunnar Mills (2): Add and modify SNMP Managers Remove SNMP Managers beccabroek (1): Consistent date time format (From meta-phosphor rev: 6a89ef356d382ec94dc1c993c603cd5af21202dd) Change-Id: I80540e4c4577c87ced2b8f826de1414b0f984477 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2018-10-30bmcweb: srcrev bump f12894f8bd..35a62c7ca3Andrew Geissler1-1/+1
Ed Tanous (1): Chassis: Power: Support get PowerSupply and Voltages sensors information. James Feist (3): Speed up managers schema Add PID Patch [scripts] Avoid deleting Oem Schemas During Update Jason M. Bills (2): Add paging and partial results for BMCLogService bmcweb: merge conflict resolution (From meta-phosphor rev: 34ef6e65a6fe3e0558c1f1318dcd5ef2ce558630) Change-Id: Ib6703acff23cb9097079a22969606e3830f7e1fb Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2018-10-30ipmi-fru-parser: srcrev bump 5c787214b1..19bea9ae44Andrew Geissler1-1/+1
Patrick Venture (22): writefrudata: drop function parameter set readeeprom: use log error instead of fprintf(stderr) types: fixup header frup: add missing header writefrudata: cleanup header writefrudata: add function header style: apply naming convention to ipmi_validate_fru_area style: rename cleanup_error, move into anonymous style: move getFRUValue into anonymous namespace style: move getService into anonymous namespace style: rename update_inventory, move into anonymous writefrudata.cpp: fixup variable shadowing writefrudata: add missing header: map writefrudata.cpp: add header for file writefrudata: drop unused dynamic linking header writefrudata: drop unused lib mapper header ipmi_fru: drop unused member functions ipmi_fru: drop unused sd_bus pointer ipmi_fru: Rename to IPMIFruArea writefrudata.cpp: drop unused, add used header rename header: fru-area.hpp to fru_area.hpp cleanup: rename fru_area_vec_t type and use using (From meta-phosphor rev: 70be299f7b635c27ab91cc3c83875f6cd9d5ad65) Change-Id: I3be469c5fe2cb15220c64262df60cde66da980e3 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2018-10-30entity-manager: srcrev bump 9cdeabbad0..57cf32d9feAndrew Geissler1-1/+1
James Feist (2): Bump sdbusplus Move IntelFru Template To Export (From meta-phosphor rev: d89d2829d3ada614294b5a86967e199787904d39) Change-Id: I6b4f84972feb137c04a874363f18ac6fd9de17fe Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2018-10-29meta-phosphor: phosphor-software-manager: drop preferredPatrick Venture1-2/+0
Drop preferred version for phosphor-software-manager. (From meta-phosphor rev: ff01da01dbf6d1671d61deb04be63d1c1fbefa7e) Change-Id: Icf43892598b2be7d462504a6736bc8d1681dcf65 Signed-off-by: Patrick Venture <venture@google.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2018-10-29phosphor-state-manager: srcrev bump d998f82bda..acf54d089bAndrew Geissler1-1/+1
Anthony Wilson (7): obmcutil: Rewrite in sh and move to phosphor-state-manager obmcutil: Add help option obmcutil: Add bootprogress option obmcutil: Add 'power' option obmcutil: Added {power,chassis}{on,off} options obmcutil: Update argument handling obmcutil: Add wait/timeout option (From meta-phosphor rev: cc1f3274d0878c0d5b994b4df5fb366ededfd1be) Change-Id: I9ac5e043e1ea9c3fefc66d9f2d49aab235f5ee4c Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2018-10-29phosphor-hwmon: srcrev bump ee73f5bdd1..0dd0c4d728Andrew Geissler1-1/+1
William A. Kennington III (1): timer: Remove in favor of sdeventplus/timer (From meta-phosphor rev: 83e574a72a336efee5330e78d280eb5eb1239052) Change-Id: I1599c8a986f6092ca96fbee49ce2423d7fd6500a Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2018-10-29bmcweb: srcrev bump 9712f8ac42..f12894f8bdAndrew Geissler1-1/+1
Jason M. Bills (1): Improve the Redfish error reporting interface (From meta-phosphor rev: 27f3e88b9f475259a6d11b7c6ed54f23ee3313ad) Change-Id: I5d496152e51df4c1760e58ff7abd1a86db569f4e Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2018-10-29entity-manager: srcrev bump ce4367c687..9cdeabbad0Andrew Geissler1-1/+1
Jae Hyun Yoo (1): Remove overlays for peci based devices (From meta-phosphor rev: 1a6b53904006cc253398f05aaa19457d6a58d035) Change-Id: I064c40db8bc5bae13cb39e9db09815af0c93b147 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2018-10-27phosphor: net-snmp: drop FILESEXTRAPATHBrad Bishop1-2/+0
The net-snmp bbappend does not have any files, so setting FILESEXTRAPATH is not necessary. (From meta-phosphor rev: e4a2b2d6d3f764d447faa4c8ef00cd37afe3ed5c) Change-Id: Iadb613255c3e43c64e6bcaa82ba4cf86f9c67c48 Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2018-10-27meta-phosphor: phosphor-software-manager: Add symlink as gitPatrick Venture2-0/+3
Add a symbolic link to phosphor-software-manager.bb named _git.bb and set the preferred version for the recipe. (From meta-phosphor rev: 25045bc375c9ef7cd8fdf0a9adfab406384d4c8c) Change-Id: Ia1441aedb774c94dc1b32bac21e8800ae9654cda Signed-off-by: Patrick Venture <venture@google.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2018-10-27meta-phosphor: aspeed-layer: cf-fsi-firmware: rename as gitPatrick Venture1-0/+3
Rename cf-fsi-firmware.bb as git per OE norms. (From meta-phosphor rev: 1387adce04d049311de7dbebc8d7ae9dc324f6c4) Change-Id: I3a73fa25d31c30be5425490e41fd8ef09355318a Signed-off-by: Patrick Venture <venture@google.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2018-10-27meta-phosphor: ipmi-fru-*inventory-mrw-native: rename as gitPatrick Venture2-0/+2
Rename ipmi-fru-*-inventory-mrw-native as git per OE norms. (From meta-phosphor rev: 94f9c6029a21567b491bece1e7037251da67ff18) Change-Id: I12428d5f229c43c31d0e018056177e8865981876 Signed-off-by: Patrick Venture <venture@google.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2018-10-27meta-phosphor: ipmi-fru-*-example-native.bb: rename as gitPatrick Venture3-0/+3
Rename ipmi-fru-*example-native.bb as git per OE norms. (From meta-phosphor rev: 4836bb76ed3d4f06038bd690136908ab53627c21) Change-Id: I264639b3b23851f6ad81bf2c8a7a4a93cb4c5411 Signed-off-by: Patrick Venture <venture@google.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2018-10-27meta-phosphor: phosphor-software-manager-error-native: QA fixup PVPatrick Venture1-0/+1
Fixup PV in phosphor-software-manager-error-native_git.bb (From meta-phosphor rev: f41f2174f416b39c6bab3839713e19685cd2dcbf) Change-Id: Ia9de6ebe42f8442e25559102c282cb558a85be8a Signed-off-by: Patrick Venture <venture@google.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2018-10-27meta-phosphor: phosphor-settings-manager: QA fixup PVPatrick Venture1-0/+1
Fixup the PV in phosphor-settings-manager_git.bb (From meta-phosphor rev: 5c24f79395a693bd701dabc49732b38a9488af43) Change-Id: I57ba832c186aa04fbd30531296e5fff0363a4cc5 Signed-off-by: Patrick Venture <venture@google.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2018-10-26phosphor-objmgr: srcrev bump db27894204..cfe3e4424eBrad Bishop1-1/+1
Brad Bishop (1): python-mapper: Accept service-namespaces (From meta-phosphor rev: 24f0c55c76d9ed2ea2ed459e519e073bfbd4c62f) Change-Id: Ic4558bc0c4222d3d69a7e969b0e78cd92ef5e7c2 Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2018-10-26phosphor-mapper: Drop blacklist featureBrad Bishop5-40/+1
An interface and path blacklisting feature was implemented in the python mapper but it isn't used, and it wasn't implemented in the c++ mapper. Drop support to make a small improvement to comprehensional complexity and ease the transition to the c++ mapper. (From meta-phosphor rev: 6b10fd583d7c1baed14f6076322548f4f097d9db) Change-Id: I3346f1929689b75553b8331a6ac1b5df0d5c87cb Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2018-10-26phosphor-fan: Depend on sdeventplusWilliam A. Kennington III1-0/+1
This will be needed for an upcoming change which causes phosphor-fan-presence to require sdeventplus. (From meta-phosphor rev: 581d3c2493b0aa94895ad7c74ce9994b09d52411) Change-Id: I8ec0a768b6d9a06710515b21c5c312a071bd1dd2 Signed-off-by: William A. Kennington III <wak@google.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2018-10-26phosphor-fan: Remove unneeded RDEPENDSWilliam A. Kennington III1-5/+0
These should be added as needed implicitly by the bitbake build process detecting libraries in use by the binaries here. (From meta-phosphor rev: ca8641ced139d28195bcf0d92ecf45fc98388ba1) Change-Id: I496d60285bf225e6e068f9b369900447c1733e01 Signed-off-by: William A. Kennington III <wak@google.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2018-10-26phosphor-dbus-monitor: Add sdeventplus DEPENDWilliam A. Kennington III1-0/+1
An upcoming change will require that phospohr-dbus-monitor have sdeventplus available. (From meta-phosphor rev: b27564d13d3ca404b1b39bdd4870234b440651ed) Change-Id: I527daf07e623d18af4ddeecf0e99fa86465e4ba4 Signed-off-by: William A. Kennington III <wak@google.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2018-10-26phosphor-dbus-monitor: Remove unneeded RDEPENDSWilliam A. Kennington III1-12/+0
We don't need to explicitly specify library dependencies as runtime dependencies as build rules will do this automatically if they are needed. (From meta-phosphor rev: 3edb6cf4112f2d1c3af3e13567db1d798d3a7fb1) Change-Id: I4cd58dd74738be27928113408e84b52a62d64af9 Signed-off-by: William A. Kennington III <wak@google.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2018-10-26phosphor-pid-control: srcrev bump f77d5a573d..26e8c6a940Andrew Geissler1-1/+1
James Feist (1): dbusconfiguration: Fix mapper call (From meta-phosphor rev: 0f02ed3ee643ae58bb50917afdab5eca9bf2d4c4) Change-Id: I7e991e034daa9cb711f6f2ab071232e08c2fc567 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2018-10-26entity-manager: srcrev bump a3f1e72a5a..ce4367c687Andrew Geissler1-1/+1
James Feist (2): Fix for upstream mapper Move service files into repo and clean up OVERLAYS (From meta-phosphor rev: 827883eeaad4823bcea55fff51c0f19cb576b909) Change-Id: I4e66b41bd2ae7404875b4dc5e8fecc621b142928 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2018-10-26meta-phosphor: skeleton: obmc-libobmc-intf: drop symlinkPatrick Venture2-22/+22
Drop symlink and rename bb for obmc-libobmc-intf. (From meta-phosphor rev: 9115011fcfd34a835360b3a53af219d10aca0405) Change-Id: I98d9b61c15fac4f7c19ff3a06dd634ef8006a29c Signed-off-by: Patrick Venture <venture@google.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2018-10-25phosphor-fan-presence: srcrev bump 48df959b59..3e781064f5Andrew Geissler1-1/+1
William A. Kennington III (2): Makefile: Fix library compile flags Fix exit status codes (From meta-phosphor rev: 983b8d1ca1462764bb0abadc98210ea87a5b5dba) Change-Id: Ibb97e7ed906feaf9d391aa205cb63e3448973fa1 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2018-10-25ipmi-fru-parser: srcrev bump 5739ac3b37..5c787214b1Andrew Geissler1-1/+1
Patrick Venture (5): readeeprom: c-library cleanup frup.cpp: drop unused variable strgfnhandler: fixup c-style cast strgfnhandler: swap in log<> calls, cleanup c calls writefrudata: swap in log<> calls, cleanup c calls (From meta-phosphor rev: 21945c00b9526d8ddc490a904fd5449b4dd89a9a) Change-Id: I63937e720d3e187a5f2629f7ff63661b8822afb6 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2018-10-25sdbusplus: srcrev bump 841d8d3517..076d14af2bAndrew Geissler1-1/+1
Vernon Mauery (1): Add sdbusplus::asio coroutine method handling (From meta-phosphor rev: f6b600618bac4296e43f057b440c4903ed74aca0) Change-Id: I09116d0a36712da8d814ef2898f2dfccbeab8266 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2018-10-25phosphor-user-manager: srcrev bump 045b11231d..9891f2f8f3Andrew Geissler1-1/+1
Nagaraju Goruganti (1): phosphor-ldap-conf: add support for anonymous bind Ratan Gupta (1): phosphor-ldap-conf: change the permissions of the nslcd.conf file (From meta-phosphor rev: 44ae56666520012ee72253d8ee7b6c672df1e058) Change-Id: I9f06ece5c8c030ad47c49ad7112a54cfe10647a5 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2018-10-25entity-manager: srcrev bump 28dc2dae9f..a3f1e72a5aAndrew Geissler1-1/+1
James Feist (2): Remove overlays for i2c based devices Delete pmbus template (From meta-phosphor rev: 0bb404230640e7de54999e1d5c6aa587855c3ad4) Change-Id: Iebda5dd4addf4ee2ecaffce41beb5cd3d6774733 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2018-10-25phosphor-host-ipmid: srcrev bump 4001191ac3..687a43697cAndrew Geissler1-1/+1
James Feist (1): Remove direct uses of mapbox Kirill Pakhomov (1): Fix the exponent B in writesensors mako template Patrick Venture (3): cleanup: c-style casting cleanup: exception catching by reference cleanup: transition to find_if Vernon Mauery (1): Use the common timer class William A. Kennington III (3): Convert variant usage to std interface configure: Don't check for sdbusplus twice configure: Use generic CXX compiler macro (From meta-phosphor rev: 2136f42b04967610fc02489dcd5e149f067d903a) Change-Id: I6ad3f4cbe542ab3d04cea437591f5d33fe7b1228 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2018-10-25phosphor-ipmi-blobs: srcrev bump 1c4d3d34af..e50d4e4aa5Andrew Geissler1-1/+1
Patrick Venture (2): cleanup: apply const to read-only iterators manager: fixup to use find_if (From meta-phosphor rev: 0cfd8dbcdcad3cb7569bedd45a21b82281dea869) Change-Id: I53f6fb37f4d51c07db6b2f3014918bfbbc147a67 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2018-10-25meta-phosphor: skeleton: obmc-libobmc-intf: drop preferredPatrick Venture1-2/+0
Drop preferred version for obmc-libobmc-intf. (From meta-phosphor rev: a95894d71eae0117bc6f910a35fc295e407207dd) Change-Id: I41cbb4c74e9c93c8adb4148524f6d17ca493e2f7 Signed-off-by: Patrick Venture <venture@google.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2018-10-25meta-phosphor: led-manager-*_git: add package versionPatrick Venture3-0/+3
Add missing explicit git PV variable to phosphor-led-manager git recipes. (From meta-phosphor rev: 6dc4c9ae971c0766357a2ebe84cf13fdaa106778) Change-Id: I87c24ed53586d52ff8e89aa14b7d1fe3641ea964 Signed-off-by: Patrick Venture <venture@google.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2018-10-24ipmi: host, net, oem srcrev bumpsBrad Bishop2-2/+2
phosphor-net-ipmid: srcrev bump 5e45209383..b00f8f7fdb Jason M. Bills (1): Fix IPMI SEL reservations and cancellations phosphor-host-ipmid: srcrev bump 1cd8596397..4001191ac3 Emily Shaffer (1): types: Convert ScaledOffset to double Jason M. Bills (1): Fix IPMI SEL reservations and cancellations openpower-host-ipmi-oem: srcrev bump 34aca0135d..a9915b76b4 Jason M. Bills (1): Update to the new SEL reservation check (From meta-openpower rev: a2e72b6dc7ae8b5085cc9660238bee1292f070a3) (From meta-phosphor rev: ca51cd75e93eadc8b6e7fecff7d5ac29b400edc4) Change-Id: I4dfa8d1b8f940a199d0dc47628f4e0c78081224c Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2018-10-24phosphor-ipmi-blobs: srcrev bump c9ad5ffbca..1c4d3d34afAndrew Geissler1-1/+1
Benjamin Fair (1): main: catch exceptions when loading blob handlers (From meta-phosphor rev: b72b8bce028a0a81022dde2dd174e19505ae6063) Change-Id: I59960ae578482883447e472ecb25824fc4dd2f05 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2018-10-24ipmi-fru-parser: srcrev bump c9508db8d3..5739ac3b37Andrew Geissler1-1/+1
Patrick Venture (2): build: add phosphor-logging library throughout writefrudata: catch exceptions in sdbusplus call (From meta-phosphor rev: dcebd190fd4d27fa9ba789bbed9b952dee6410b2) Change-Id: Ib26fdb6d5d7b5a73e0cb7cbfd488f4ff74c9e0d7 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2018-10-24phosphor-webui: srcrev bump 1085098beb..cb7d29082eAndrew Geissler1-1/+1
Andrew Geissler (1): Clarify versions required for npm and nodejs (From meta-phosphor rev: e365760e53fa26503686d39fdf0726d928384766) Change-Id: Ib9b2197b180a3ecc0005966d18faa0c66ee3e91f Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>