summaryrefslogtreecommitdiff
path: root/meta-facebook/recipes-phosphor/hostlogger
AgeCommit message (Collapse)AuthorFilesLines
2023-10-25obmc-console: Support 8 slots for Yosemite 4Delphine CC Chiu5-4/+33
Support ttyS5~ttyS8 if multi-host is needed. Support server/client conf 2204~2207 for console redirection. Support ttyS5~ttyS8 host-logger. Tested: - Do obmc-console to link from uart1 to uart9 - List log of lost-logger Change-Id: I558f71992f2cdab6c2a6338f728cdf5d476bcff2 Signed-off-by: Delphine CC Chiu <Delphine_CC_Chiu@wiwynn.com>
2022-06-28Add hostlogger support for Facebook Yv3.5Kumar Thangavel6-4/+6
Added hostlogger support to store console histories for all the host. TESTED : Built the openbmc image targetting Facebook YosemiteV3.5 hardware. Verified all the host log were generated. Signed-off-by: Kumar Thangavel <thangavel.k@hcl.com> Change-Id: I5adf9b1a9284c398e683f1699f7e8f678b321672
2022-02-18treewide: fix append/remove directivesPatrick Williams1-3/+3
As mentioned by I970e06ca6f9d0a9792af122eb25da1bb9a06f058, append and remove directives with '+=' are no longer valid Yocto syntax and raise a warning. See https://git.yoctoproject.org/poky/tree/documentation/migration-guides/migration-3.5.rst#n40 One interesting caveat has to do with the difference between "append" and "+=". foo:append = "a" foo:append = "b" Results in `foo = "ab"`, but foo += "a" foo += "b" Results in `foo = "a b"`. When `:append +=` is used it has behavior like the `+=` operator. Therefore, in some cases we need to insert additional whitespace after the `:append = "` to ensure concatenation behaves as expected. I've manually reviewed the results to ensure there is no ill side-effects from an additional space potentially being added. Fix up the entire tree with the following one-liner (and similar for `remove`): git ls-files -- ':!:poky/**' ':!:meta-security/**' \ ':!:meta-raspberrypi/**' ':!:meta-openembedded/**' \ | grep "\.bb" | xargs grep -l ":append.*+=" \ | xargs sed -i 's/:append\(.*\)+=\([^"]*\)" */:append\1=\2" /' or ... | xargs grep -l ":remove.*+=" \ | xargs sed -i "s/:remove\(.*\)+=/:remove\1=/" Signed-off-by: Patrick Williams <patrick@stwcx.xyz> Change-Id: Iea6235e7c76e252f4d473652957c2925f6b8845a
2021-08-07meta-facebook: prep for new override syntaxPatrick Williams1-5/+5
Ran `scripts/contrib/convert-overrides.py` from upstream Yocto and fixed up a few by hand that were missed. Tested: Built bletchley and tiogapass. Signed-off-by: Patrick Williams <patrick@stwcx.xyz> Change-Id: I0489ba007132901697e4ef1a29b03a3591b3ee3b
2021-04-01Add hostlogger supportKumar Thangavel6-0/+52
Added hostlogger support to store console histories for all the host. TESTED : Built the openbmc image targetting Facebook Tiogapass and YosemiteV2 hardware. Verified all the host log were generated. Signed-off-by: Kumar Thangavel <thangavel.k@hcl.com> Change-Id: Iee494d8ce025a253f0e7f915ec893acc44fd84a1