summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2021-01-05systemd: remove SYSTEMD_PAGER= profile settingsPatrick Williams3-13/+0
There was support to inject an empty "SYSTEMD_PAGER=" variable into the profile. This was to workaround ANSI control characters being injected into the default systemd tool output, but has a side-effect of disabling the pager for useful commands like `journalctl`. The underlying cause of these control characters was that busybox less was missing features that systemd relies on. Many of these busybox features say "this is essential for less applet to work with ... systemd": https://git.busybox.net/busybox/tree/miscutils/less.c#n103 These are now enabled so this empty environment variable can be removed. (From meta-phosphor rev: d8f8d70f7e4771eb295fff3ca80182b6636411b6) Signed-off-by: Patrick Williams <patrick@stwcx.xyz> Change-Id: Idc2fef9ccfb28e7956caf4efc141698940879f65 Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
2021-01-05busybox: enable less options for systemdPatrick Williams2-0/+11
There are a number of options that make busybox-less work better with systemd's pager expectations. Add them in. Also, add in a few options for usability. (From meta-phosphor rev: 70fd77661f452d5982330da2db2c8e26edee2c58) Signed-off-by: Patrick Williams <patrick@stwcx.xyz> Change-Id: I331654f9db6918c6c4a3c13f94ce638a08e934af Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
2020-12-31bytedance: g220a:read eeprom mac addrLotus Xu4-0/+166
read a byte at one time eg: for the first byte i2cset -y 1 0x50 0x00 0x00 i2cget -y 1 0x50 (From meta-bytedance rev: 6389a4f03a518e49241d13843cf005f4a85d7cc8) Tested: Verify the eeprom mac addr can be read use `fw_printenv`,`ip a` can read device mac addr Signed-off-by: Lotus Xu <xuxiaohan@bytedance.com> Change-Id: I5fbf28e5bb3bb2ccc2a074388f4166e35da48afc Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
2020-12-31bytedance: g220a: Enable swampd tuning modeJohn Wang2-0/+19
Do not enter the failmode if a temperature sensor's value is NAN, It's useful for debug. We always want the pid-controler to run, when debugging. (From meta-bytedance rev: ae79ff9e289c85498e656172e99d44b11d969109) Signed-off-by: John Wang <wangzhiqiang.bj@bytedance.com> Change-Id: I957528b2e2f336bdf3abbd78ec105bdc249e3716 Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
2020-12-31bytedance: g220a: Enable webuiJohn Wang1-1/+2
Tested: Login in the webui, it works. (From meta-bytedance rev: 69a07b424834dc1f78046177c1314988812e27e9) Signed-off-by: John Wang <wangzhiqiang.bj@bytedance.com> Change-Id: I2c89ce0cddfb0f68b788b855b67cbc56e321c3f4 Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
2020-12-31bytedance: g220a: Enable ipmiJohn Wang7-0/+486
Tested: Run ipmitool fru print 0 and ipmitool sensor list, the output is as expected. (From meta-bytedance rev: 9e8a65aa85782b09f21fda3df0f502f6037e0f02) Signed-off-by: John Wang <wangzhiqiang.bj@bytedance.com> Change-Id: I0ab25c386a418d039f05a4c4e96553152322194f Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
2020-12-31meta-g220a: Add me-time-syncLei YU4-0/+58
g220a BMC needs to get time from ME on start. Add me-time-sync package that fetches time from ME via ipmb, and set the time to BMC via `date` command. Tested: Verify the time is set on BMC boots (From meta-bytedance rev: c8640d007d25676261acc04317e5612269bd3ed5) Signed-off-by: Lei YU <yulei.sh@bytedance.com> Change-Id: I0e7f1d249cf743e3477843a67a6d2e6250c43aa6 Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
2020-12-31bytedance: g220a: Enable ipmbLotus Xu5-0/+50
Tested : we can see /dev/ipmb-4 on g220a Use `busctl call xyz.openbmc_project.Ipmi.Channel.Ipmb \ "/xyz/openbmc_project/Ipmi/Channel/Ipmb" org.openbmc.Ipmb \ sendRequest yyyyay 0x01 0x0a 0x00 0x48 0` to get ME time correctly (From meta-bytedance rev: 58c6841aee1bd93c1070401ce7ca589367b8e6d0) Signed-off-by: Lotus Xu <xuxiaohan@bytrdance.com> Change-Id: Ic45173405ec9cd1806b5caa7a5081b6ed0d8fc3e Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
2020-12-31bytedance: g220a: Enable peciJohn Wang1-0/+7
Tested: boot the host, and see cpu/dimm sensors under /sys/class/hwmon (From meta-bytedance rev: 76f1849431b2dcafbe96ca4ece33841ba66e0fd9) Signed-off-by: John Wang <wangzhiqiang.bj@bytedance.com> Change-Id: I3125bd6f42c8de0d85a2fb49946e8e219f46ab54 Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
2020-12-31bytedance: g220a: Add sol configJohn Wang3-0/+37
Tested: ssh -p 2200, SOL works well. (From meta-bytedance rev: 1f40f6da4fc2e00fc06128ae6ba7dd1f045c8a84) Signed-off-by: John Wang <wangzhiqiang.bj@bytedance.com> Change-Id: I2abd1e11c5158da887ac382bb2a98f94d85a4749 Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
2020-12-31bytedance: g220a: Enable uart routingJohn Wang1-0/+1
(From meta-bytedance rev: 5b738226c37418f6c98935bb747db509e63a5466) Signed-off-by: John Wang <wangzhiqiang.bj@bytedance.com> Change-Id: Ia0f32176b25d14ee35481dc413d463edb50eb98c Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
2020-12-31bytedance: g220a: Add uart routing patchJohn Wang4-0/+597
(From meta-bytedance rev: 5729e59f3a7f1202deccb8d90738a32f8821c215) Signed-off-by: John Wang <wangzhiqiang.bj@bytedance.com> Change-Id: I115935112219927a9ac77720adeae646a62aec12 Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
2020-12-31bytedance: g220a: Add configurationsJohn Wang2-0/+2526
(From meta-bytedance rev: aec4880792267c1d8a00ba8a77b3fd23640691f3) Signed-off-by: John Wang <wangzhiqiang.bj@bytedance.com> Change-Id: I729b66aa82c4bde434879e9ef696c03d4015c624 Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
2020-12-31telemetry: srcrev bump bc766b4d8b..503c158972Andrew Geissler1-1/+1
Wludzik, Jozef (1): Add meson options to modify Telemetry consts (From meta-phosphor rev: 2c71ff5b5b13e2fc9d86661df635f4fc80ac9291) Change-Id: If6cb201adb5d49a1b0eca5646856d9e15447ddb2 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
2020-12-31phosphor-ipmi-flash: srcrev bump c5b901d84e..12e6e7568bAndrew Geissler1-1/+1
William A. Kennington III (1): version_handler: Read doesn't need to catch missing sessions (From meta-phosphor rev: 9e6c86f665d6ab1a804cc460865f74d4ee897e88) Change-Id: Ib01b2c2737805036b48b606628fff34990b0291a Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
2020-12-31bmcweb: srcrev bump f16f62633a..81ce609e30Andrew Geissler1-1/+1
Ed Tanous (1): Fix .clang-tidy (From meta-phosphor rev: 7befc72da6d7528b05322d4ea80cfeaa43d8af2a) Change-Id: I299d7109b19e62328d512dc442fd58ccc8256356 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
2020-12-31phosphor-power: srcrev bump a76898f11c..73eaceeba5Andrew Geissler1-1/+1
Bob King (1): regulators: Add Services to ActionEnvironment (From meta-phosphor rev: 51da36a828d21e79dac951b8b154612b1c29e4af) Change-Id: I51edb8f6989120190ee0cd0bf0f041887696cf58 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
2020-12-31meta-nuvoton: npcm7xx-bootblock: upgrade to 10.10.16Benjamin Fair1-2/+1
Changelog from 10.10.09: * MC: Enhanced training optimization. * SPI0 frequency is now only limited to be up to 50MHz (remove 40MHz lower limit). This check is only performed if PLLs are changes (RUN_BMC or new header frequency values). * Fix an issue in INTCR3 settings (FIU_FIX field). * MC: in enhanced training: change the sweep range accrording to the location of the step. (run time optimization) (From meta-nuvoton rev: e7db9495062eab77a319e6eb322cdfe0f68719d8) Change-Id: I65a512a0110b183c5d9307aea1380cc914236d7d Signed-off-by: Benjamin Fair <benjaminfair@google.com> Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
2020-12-31meta-quanta: gbs: stop hwmon while doing tray resetGeorge Hung1-0/+21
Stop phosphor-hwmon before performing a tray power cycle to avoid ADM1272 doing an abnormal I2C transaction and causing ADM1272 driver probe to fail due to wrong Manufacturer ID. (From meta-quanta rev: 2143eac88d3643e4a8d461eec2ed9a2d2e6a32f3) Signed-off-by: George Hung <george.hung@quantatw.com> Change-Id: Ibd69cb956d76dbe08f0bb6e6bce115d5bab469df Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
2020-12-24phosphor-ipmi-flash: srcrev bump c78bfc8230..c5b901d84eAndrew Geissler1-1/+1
William A. Kennington III (13): version-handler: Remove superfluous canHandleBlob verison-handler: Cleanup extern C version_handlers_builder: Use string references version-handler: Remove create special cases Makefile: Fix code coverage flags Makefile: Consistently use tabs buildjson: Remove arbitrary restrictions on HandlerConfig version-handler: Refactor handler construction version-handler: Refactor maps to simplify accesses version-handler: Remove superfluous open session check general_systemd: Don't print missing job version_handler: Don't store session information immediately version_handler: Expire shouldn't fail (From meta-phosphor rev: 7bb55d20ed0486f84cb067db690937e11d3d3ab8) Change-Id: Iade8d60d238a6f0245d147e2c02d7e31082c0cf6 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
2020-12-24phosphor-logging: srcrev bump f10068d397..96f27a3debAndrew Geissler1-1/+1
Patrick Williams (1): run-ci: modify permissions to execute (From meta-phosphor rev: c090a2ba663946f0f3c797867dface454bf9ecc9) Change-Id: I3311fff8f1211896f3bf56a7f112d5bb4818c304 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
2020-12-24sdbusplus: srcrev bump a4c9edc12a..9ad6d75aacAndrew Geissler1-1/+1
Patrick Williams (1): sdbus++: fix method template generation Ramin Izadpanah (1): sdbus++: Refactor utilities shared by templates (From meta-phosphor rev: 81b4fdaf941f43faa87266162b2250bcbbe1ca85) Change-Id: Ie8e354b28189cbb23ddcd6b808a40b865995c7d0 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
2020-12-24phosphor-dbus-interfaces: srcrev bump 4bd4033c79..4c7663b0e5Andrew Geissler1-1/+1
Alpana Kumari (1): Interface Support for processor vpd Kuiying Wang (1): Fix crash issue due to throw undefined error Patrick Williams (3): regenerate-meson: improve search for sdbus++ tool build: regenerate meson for stable-sort run-ci: add script to confirm meson files are up-to-date SunnySrivastava1984 (2): SparePartNumber property added in Asset interface. ibm:An api to perform VPD recollection. (From meta-phosphor rev: 6946d4c803b4aebda0c6724fa1d37ff270119182) Change-Id: I61716a35ab1b69dc045f521210037f56fc32717d Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
2020-12-24dbus-sensors: srcrev bump 937eb54e2f..6736d4b2a7Andrew Geissler1-1/+1
Andrei Kartashev (1): cpusensor: change Min/Max values for power (From meta-phosphor rev: dd2f35da5aa0a6196fa17d8d8d05b19ae7e5c323) Change-Id: I7c91509f5bfd4abad16a5d38bb38e4cb3eb0f7a7 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
2020-12-22phosphor-dbus-interfaces: srcrev bump a3943e6e38..4bd4033c79Andrew Geissler2-2/+2
Dhruvaraj Subhashchandran (2): Update dump create interface to accept a set of parameters. Add Entry and create parameters enum for resource dump. phosphor-debus-collector: srcrev bump 2279386bf7..969f9a5904 Dhruvaraj Subhashchandran (1): Update createDump to accept additional parameters. (From meta-phosphor rev: 0f7ad23295ae6310dc110b4cabf1e97e61f83632) Change-Id: I65df3e3bb03ab7ccc4223b7f1dfe97a64c231184 Signed-off-by: Dhruvaraj Subhashchandran <dhruvaraj@in.ibm.com> Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
2020-12-22linux-aspeed: Add Mt Jade and X11SPI machinesJoel Stanley1-1/+1
Quan Nguyen (1): ARM: dts: aspeed: Add device tree for Ampere's Mt. Jade BMC Ryan Sie (1): ARM: dts: aspeed: Add Supermicro x11spi BMC machine (From meta-aspeed rev: b276b99c1a93e9353db49f67514e8294216b455a) Change-Id: I77c674b155c0444ad6725914a72fe75883004575 Signed-off-by: Joel Stanley <joel@jms.id.au> Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
2020-12-22phosphor-ipmi-ethstats: srcrev bump 75ca0187b1..6b48b92e08Andrew Geissler1-1/+1
Patrick Venture (1): use character literal string find override (From meta-phosphor rev: fc8c31e56ed817301df723a1ec6dbe056137b12e) Change-Id: Ib7391a795d9e3d6b95a061f36ea7de97c3dd5367 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
2020-12-22phosphor-power: srcrev bump 9b86852ed2..a76898f11cAndrew Geissler1-1/+1
Bob King (1): regulators: Enhance config file parser (From meta-phosphor rev: e9058e9a8e01f0768849a50185a719771fabdb7a) Change-Id: Ifc1a2fb93d3d426a71e0ee38227a1550f35c52d9 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
2020-12-22pdbg: Move to v3.2Joel Stanley1-1/+1
libpdbg: - Added support for P10 chip - Implemented new chip-ops for P10 libpdbg fixes: - register access in sbefifo driver - thread status in sbefifo driver pdbg fixes: - drop special spr access commands - getspr/setspr uses spr names (From meta-openpower rev: 8f73ef738b986950eb268c129f48a6eb805feee0) Change-Id: Id264a39de1fcefa4b1df837d27075e8a8982f60a Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
2020-12-19phosphor-power: srcrev bump 8429e884ac..9b86852ed2Andrew Geissler1-1/+1
Brandon Wyman (1): psu-ng: Wait for inventory manager (From meta-phosphor rev: 2983ca9def6944986590b43b42377fa64182180e) Change-Id: I58d7464e1a93ef25a6f95821cbbf53237f36795a Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
2020-12-19phosphor-host-ipmid: srcrev bump f7d081f667..07c15b7359Andrew Geissler1-1/+1
Lei YU (4): sel: Add OEM SEL Record data structure sel: Support OEM record 0xCD~0xDF sel: Support OEM record 0xE0~0xFF sel: Support regular SEL record (From meta-phosphor rev: 7e0623b01cf0816d591d3a1c79d1f7cbed034805) Change-Id: I8c3887b6b0bb402738574d44b77da92425a1f8af Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
2020-12-19sdbusplus: srcrev bump 0c76546f7d..a4c9edc12aAndrew Geissler1-1/+1
Patrick Williams (1): sdbus++-gen-meson: force locale for stable sort (From meta-phosphor rev: f2baaa5506f5a17414ea080e14a282751f9925ff) Change-Id: Ied4b79c2fbd0a89310e0eed54c2e91307c2ee9e5 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
2020-12-19u-boot-aspeed: FIT and FDT fixesJoel Stanley1-1/+1
Two backports from u-boot master relating to SPL signaturues, and a patch from Hongwei that was sent to the upstream list. Heiko Stuebner (2): spl: fit: select SPL_HASH_SUPPORT for SPL_FIT_SIGNATURE spl: fit: select SPL_CRYPTO_SUPPORT for SPL_FIT_SIGNATURE Hongwei Zhang (1): Common:fdt: Check for error return value (From meta-aspeed rev: e173b53d6d29d1489853379d78649f70420ca4c7) Change-Id: I1ad719b86de2a110fef44a27c584e74faedc5748 Signed-off-by: Joel Stanley <joel@jms.id.au> Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
2020-12-17dump: Used renamed build optionRamesh Iyyar4-9/+5
- The phosphor-debug-collector renamed "host-dump-offload-transport" build option into "host-transport" to make generic for supporting other host dump action (i.e create,delete) not only offload so, changed build option here as well based on phosphor-debug-collector. - In this patch bumping "phosphor-dbus-interfaces" as well to get bumped "phosphor-debug-collector" dependent dbus changes. - Modified "ffdc" recipe to use phosphor-debug-collector.inc to avoid version update in two different place Version bump info: - phosphor-dbus-interfaces: SRCREV: 02f196d..a3943e6 Dhruvaraj Subhashchandran (1): Update Create interface to return object path. - phosphor-debug-collector: SRCREV: ff9c452..2279386 Dhruvaraj Subhashchandran (2): Return the object path for user requested dumps. Progress tracking support for dump entries. Ramesh Iyyar (4): host-dump: Renamed host-dump-offload-transport build option offload: Moved existing pldm offload as oem/ibm command ibm-host-system-dump-offload: Used CustomFd host: Added support to delete system dump phosphor-debug-collector patch: https://gerrit.openbmc-project.xyz/c/openbmc/phosphor-debug-collector/+/38792 (From meta-phosphor rev: 17743ee6f06480be7806d64d50f6bda1a2d4f5df) Signed-off-by: Ramesh Iyyar <rameshi1@in.ibm.com> Change-Id: I54e01c192170b710977aa54439a02044a34e481e Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
2020-12-17openpower-pnor-code-mgmt: srcrev bump 4dcf55d4e9..0529d284b0Andrew Geissler1-1/+1
Andrew Geissler (1): config: add new everest machine support (From meta-openpower rev: 3e7bd76e5bb64422a86e5c104585c1f92a94dc7b) Change-Id: I73e084fe5f93a31f5ab683387d5933b69e288f54 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
2020-12-17dump: Used renamed build optionRamesh Iyyar1-2/+2
The phosphor-debug-collector renamed "host-dump-offload-transport" build option into "host-transport" to make generic for supporting other host dump action (i.e create,delete) not only offload so, changed build option here as well based on phosphor-debug-collector. phosphor-debug-collector patch: https://gerrit.openbmc-project.xyz/c/openbmc/phosphor-debug-collector/+/38792 (From meta-ibm rev: eb951216a95e360431644dba46f04fc0541fb608) Signed-off-by: Ramesh Iyyar <rameshi1@in.ibm.com> Change-Id: I4466896b67cb7490b13e6c32113bb59651fbcdb3 Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
2020-12-17openpower-pnor-code-mgmt: srcrev bump 671a7da76e..4dcf55d4e9Andrew Geissler1-1/+1
Brad Bishop (1): updater: Add missing static keyword (From meta-openpower rev: be6d86035df507d01e8ea887225192d2d2ea6eb3) Change-Id: Iff581fe5f157a5c477ff2bd70ac81ae2f26b7bf3 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
2020-12-17Add Ed as a meta-google maintainerEd Tanous1-0/+1
I really would've preferred pulling a sword from a stone, or been given a 2 factor encryption key by the lady of the lake, but as monty python says "strange women lying in ponds distributing swords is no basis for a system of government. Supreme executive power derives from a mandate from the masses, not from some farcical aquatic ceremony." As such, I submit this to the masses for approval. (From meta-google rev: 78fc1ee55f0592d678a3ec04be9d63e671b694c3) Signed-off-by: Ed Tanous <edtanous@google.com> Change-Id: Icac06f2b977af30693c40183432c3f2a921899df Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
2020-12-17entity-manager: srcrev bump c76af0fb1d..c7c5de795cAndrew Geissler1-1/+1
Andrew Geissler (1): configs: add everest chassis Patrick Williams (1): run-ci: modify permissions to execute (From meta-phosphor rev: d722ef3965c452fa6859877ba0065675878f0fd5) Change-Id: Ia2831ef4c1999a709bc991f259b970bb6909e4f4 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
2020-12-17sdbusplus: srcrev bump a3f2bdecd3..0c76546f7dAndrew Geissler1-1/+1
Vernon Mauery (1): exit read_wait async loop on error (From meta-phosphor rev: f382ae68ca190f43eb96ad07305f70133a03bd41) Change-Id: I04347a717470537cd851ffbb0155b0d1385b50f8 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
2020-12-17dbus-sensors: srcrev bump 23c96e7c24..937eb54e2fAndrew Geissler1-1/+1
Zhikui Ren (1): Correct ADC sensors max reading (From meta-phosphor rev: 6a49feeab3adc4b56981529c8927bd921639cdec) Change-Id: I3432f2e15cdab0dfb87774a30226c35de105f1f1 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
2020-12-17webui-vue: srcrev bump 645250b918..0f22907a41Andrew Geissler1-1/+1
Derick Montague (1): Update component documentation Dixsie Wolmers (1): Add security settings page Sukanya Pandey (3): Add client sessions page Show asset name in the app header Add form file documentation (From meta-phosphor rev: a8438f88dd9d138500d1a07f4adb91c75cbb93f4) Change-Id: I02db44481edcb5f946e0f335d51f045a9b999f6d Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
2020-12-17run soft off in quiesceAndrew Geissler1-0/+8
When the obmc-host-quiesce@.target was initially created the idea was to leave the system in the state it was in. In most cases the host had crashed. As OpenBMC has grown, the use cases for the quiesce target have grown. For example the Quiesce On Hardware Error design: https://github.com/openbmc/docs/blob/master/designs/fail-boot-on-hw-error.md When the QuiesceOnHwError setting is enabled, the host will be put in a Quiesce state to indicate that an error has occurred. In a lot of cases though the host actually can (and does) continue to boot. This causes a lot of confusion for the user (host state shows Quiesce but host is still booting). This commit adds the pldmSoftPowerOff.service to the quiesce target to ensure the host is given a chance (if it's running) to gracefully shut itself down. If the host does not respond then the soft off service will follow it's timeout flow and exit without error. Tested: - Verified when quiesce error is injected that the PLDM soft off service was called (From meta-phosphor rev: dfa2d6beb496b2265402950caf524c7f79850c46) Signed-off-by: Andrew Geissler <geissonator@yahoo.com> Change-Id: Ie6d07011a5ac5f6964435364ff6e332a77e5a3d4 Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
2020-12-17Make instantiated mapper services oneshotJonathan Doman2-24/+4
The systemd issue which prevented use of Restart= policy in oneshot services has been fixed. Therefore, mapper-wait@ and mapper-subtree-remove@ services can be cleaned up and simplified. Tested: 1. Created a simple test.service which has Wants/After dependency on mapper-wait@-some-object.service, and just echos "TEST" to journal. 2. systemctl start test; verify it hangs since object doesn't exist yet 3. Start service which creates /some/object; verify test.service is started. 4. systemctl restart test; verify it starts immediately 5. Stop service which publishes /some/object 6. systemctl restart test; verify it starts immediately, since mapper-wait@-some-object is still active, even though the object is gone. (From meta-phosphor rev: 9f4d038a8ce14c8f6a4ac62e4d0a993b3f9aac1f) Signed-off-by: Jonathan Doman <jonathan.doman@intel.com> Change-Id: I97fca5cb4166e4f0f72352140bcef4ba453b99da Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
2020-12-17meta-facebook: yosemitev2: Add json config for more than two channels ↵Kumar Thangavel1-0/+32
support in ipmbbridge. Added json configurations to support multi host channels or more than two channels in ipmbbridge. TESTED : Built Facebook YosemiteV2 images and loaded on the target hardware. We are able to see BMC to all host communications through Ipmb (From meta-facebook rev: 2d70e814173a16d601e9b829669a766182776551) Signed-off-by: Kumar Thangavel <thangavel.k@hcl.com> Change-Id: I79c960fa3940afdb6d1b69807d206480be875f8d Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
2020-12-16ipmbbridge: srcrev bump 3e07b9ea35..8fe0abe6d9Andrew Geissler1-1/+1
Kumar Thangavel (2): Ipmbbridge: Add support for multiple sub channel. Ipmbbridge: Add host Identification support for ipmid. (From meta-phosphor rev: 411ce83b571d73e156192ac990057779b1249a80) Change-Id: I0048c9b50b7694aba6a0c42360511d02088914d3 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
2020-12-16phosphor-host-postd: srcrev bump bf002b46d5..c80e59fefbAndrew Geissler1-1/+1
Kun Yi (1): Remove autotools (From meta-phosphor rev: fb4938873e19deda095cb15657bd9e6094d003cc) Change-Id: I5649feaee175acb7eea23b4b5ada08858e44a437 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
2020-12-16phosphor-host-ipmid: srcrev bump c0fe0c6b49..f7d081f667Andrew Geissler1-1/+1
Kumar Thangavel (1): phosphor-host-ipmid : yosemitev2: Add host Identification support (From meta-phosphor rev: 326d6293524f2630bbc880ec77b9c6917e7262f1) Change-Id: I2978bda05be5fae58c8413eeb2e1fd889cac4f32 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
2020-12-16phosphor-debug-collector: srcrev bump 8b9b4690a4..ff9c4527eaAndrew Geissler1-1/+1
Ravi Teja (1): Modify dump offload method to write dump on to unix socket path (From meta-phosphor rev: 4cb25cf5bea4c066584cab7617d0163589221d56) Change-Id: I9c805f42802d55838638bfea213d8af724266ec4 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
2020-12-16phosphor-debug-collector: srcrev bump 8b9b4690a4..ff9c4527eaAndrew Geissler1-1/+1
Ravi Teja (1): Modify dump offload method to write dump on to unix socket path (From meta-phosphor rev: bd91110ebf8282a838c9f08e13d5ac0c5effc7d0) Change-Id: I94b3188b557162437568380a8c369c2c5298d5f5 Signed-off-by: Andrew Geissler <openbmcbump-github@yahoo.com> Signed-off-by: Andrew Geissler <geissonator@yahoo.com>