summaryrefslogtreecommitdiff
path: root/meta-ingrasys
AgeCommit message (Collapse)AuthorFilesLines
2021-12-02Remove BBLAYERS_NON_REMOVABLE variableAlexander Filippov1-13/+0
`BBLAYERS_NON_REMOVABLE` is obsolete and no longer required. As it said by Yocto documentation it can be used by `Hob` https://www.yoctoproject.org/docs/1.5.2/ref-manual/ref-manual.html#var-BBLAYERS_NON_REMOVABLE that already removed since Yocto-2.1 https://www.yoctoproject.org/tools-resources/projects/hob Change-Id: Ibc2d8268a9d837a81e9cf6b0131dba8d0a030a3f Signed-off-by: Alexander Filippov <a.filippov@yadro.com>
2021-09-16bitbake: Use IPK packaging for rootfs assemblyAndrew Jeffery1-1/+1
bitbake offers a choice of DEB, RPM or IPK packaging. To a degree the choice is functionally arbitrary for image generation but control over the package format becomes important if we want to: 1. Include runtime package management functionality in the firmware image 2. Mess about with the packages on the build system With respect to 1 the IPK format and opkg (an ipk package manager) are designed for embedded systems[1] - by contrast to RPMs have heavier dependencies and a greater impact on the size and complexity of the firmware image. Regarding 2, the embedded nature and the need for opkg to work without much fuss leads to a lower configuration barrier by comparison to RPMs. With ipk it becomes possible to reuse the packages built during image preparation for core analysis without needing to generate an SDK: ``` $ export LD_LIBRARY_PATH=./tmp/work/x86_64-linux/opkg-native/*/recipe-sysroot-native/usr/lib $ MY_DEBUG_ROOT=tmp/rootfs-debug $ ./tmp/sysroots-components/x86_64/opkg-native/usr/bin/opkg \ -f ./tmp/work/p10bmc-openbmc-linux-gnueabi/obmc-phosphor-image/*/opkg.conf \ -o $MY_DEBUG_ROOT \ update $ fakeroot ./tmp/sysroots-components/x86_64/opkg-native/usr/bin/opkg \ -f ./tmp/work/p10bmc-openbmc-linux-gnueabi/obmc-phosphor-image/1.0-r0/opkg.conf \ -o $MY_DEBUG_ROOT \ install dbus-sensors dbus-sensors-dbg $ gdb-multiarch (gdb) set solib-absolute-prefix .../tmp/rootfs-debug (gdb) add-auto-load-safe-path .../tmp/rootfs-debug (gdb) file tmp/rootfs-debug/usr/bin/nvmesensor (gdb) core-file obmcdump_17_9597/core.nvmesensor.0.aae91b519d0e4e0e8bbe746e3f6cd25f.2779.9594000000 Core was generated by `/usr/bin/nvmesensor'. Program terminated with signal SIGABRT, Aborted. pthread_kill.c:45 45 pthread_kill.c: No such file or directory. (gdb) bt pthread_kill.c:45 ../sysdeps/posix/raise.c:26 /home/andrew/src/openbmc/openbmc/build/p10bmc/tmp/rootfs-debug/usr/lib/libstdc++.so.6 /home/andrew/src/openbmc/openbmc/build/p10bmc/tmp/rootfs-debug/usr/lib/libstdc++.so.6 /home/andrew/src/openbmc/openbmc/build/p10bmc/tmp/rootfs-debug/usr/lib/libstdc++.so.6 /home/andrew/src/openbmc/openbmc/build/p10bmc/tmp/rootfs-debug/usr/lib/libstdc++.so.6 "xyz.openbmc_project.NVMeSensor", this=0x488f04) at /usr/include/sdbusplus/bus.hpp:234 ../../../../../../workspace/sources/dbus-sensors/src/NVMeSensorMain.cpp:159 (gdb) ``` This approach documented in the Poky Reference Manual: https://www.yoctoproject.org/docs/1.0/poky-ref-manual/poky-ref-manual.html#platdev-gdb-remotedebug-launch-gdb-inferiorbins Switch all machines to IPK to align the debugging experience with upstream's documentation and to facilitate efficient use of packaged software at runtime. [1] https://openwrt.org/docs/guide-user/additional-software/opkg Change-Id: I8ef526add2d7a6790de1b3eb3fb85cd39b864f23 Signed-off-by: Andrew Jeffery <andrew@aj.id.au> Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
2021-09-02meta-phosphor: change systemd.bbclass to match upstream override syntaxPatrick Williams4-8/+8
Upstream bbclasses changed to typically use the `:${PN}` override syntax, including the SYSTEMD_ variables. Change our systemd.bbclass to do the same for consistency and perform a tree-wide variable replacement. Spot checked by building bletchley and witherspoon and checking some of the SYSTEMD_LINK directives on installed packages under qemu. Signed-off-by: Patrick Williams <patrick@stwcx.xyz> Change-Id: I20a9dd809bff8af8759488734f80486c7228c6eb
2021-08-24treewide: remove gategarth from layer-supportPatrick Williams2-2/+2
We've typically kept these LAYERSERIES_COMPAT to 2 releases: the current and the upcoming. Remove 'gatesgarth' is it is now 2 releases back. Signed-off-by: Patrick Williams <patrick@stwcx.xyz> Change-Id: I5e812a94fed1738898af75c0fdee81996a5bbf20
2021-08-11meta-ingrasys: meta-zaius: Cleanup for Yocto override syntax changeBrandon Kim20-39/+39
Cleanup with ``` convert-overrides.py meta-ingrasys git grep -l _zaius -- meta-ingrasys \ | xargs sed -i 's/_zaius/:zaius/' ``` After cleanup ``` $ git grep "_[a-z0-9_/-]*[ :]" -- meta-ingrasys | grep '.bb' meta-ingrasys/meta-zaius/recipes-phosphor/sensors/phosphor-hwmon_%.bbappend:# compose_list is not defined immediately so don't use := ``` Signed-off-by: Brandon Kim <brandonkim@google.com> Change-Id: Ib2da97530167688313ac16aedd69168137788c86
2021-06-07treewide: Remove obsolete image-mklibs classWilliam A. Kennington III1-1/+1
This is apparently not actually working anymore and is removed in the next poky update. Change-Id: Ia1c6a258d124a4a30a14fc42e8e0bba95e64faeb Signed-off-by: William A. Kennington III <wak@google.com>
2021-04-06hardknott: yocto releaseAndrew Geissler2-2/+2
Latest upstream yocto has moved on to the 3.3 hardknott release Signed-off-by: Andrew Geissler <geissonator@yahoo.com> Change-Id: Ieae36798d66d21c2c642931f06407d3bb2acf163
2021-03-22openbmc: add meta-security layerAnton D. Kachalov1-0/+2
This layer provides libseccomp. Signed-off-by: Anton D. Kachalov <gmouse@google.com> Change-Id: I84513d56f2ed75fab49043196b98ef8b858e394f
2021-02-23zaius: remove empty distro indirectionPatrick Williams2-2/+1
Most openpower machines use DISTRO="openbmc-openpower" but Zaius has a "openbmc-zaius" distro config file. This config file has nothing except an inclusion of the openpower one, so remove this useless indirection. Signed-off-by: Patrick Williams <patrick@stwcx.xyz> Change-Id: I58a5c8b8990f4ba2d18df1a4c731a5134e373f87
2021-02-23ingrasys: zaius: move mac2 to machine configPatrick Williams2-1/+2
We have a distro feature used within u-boot-aspeed to control the use of MAC2. This is effectively a function of the machine and not a function of the distro. Move the 'require' statement from the openbmc-zaius distro into the zaius machine config to reflect this. Signed-off-by: Patrick Williams <patrick@stwcx.xyz> Change-Id: I56a6f57b26915908b5c05bc922e54e764cf72300
2020-11-22meta-ingrasys: update Yocto compat for gatesgarthPatrick Williams1-1/+1
The next release of Yocto is soon and most of the upstream layers have switched support strings for it. Support layer compat for gatesgarth (current) and dunfell (previous). (From meta-ingrasys rev: 7dfbc01f6787cf41bf9be2bd0f5b3c46ce710016) Signed-off-by: Patrick Williams <patrick@stwcx.xyz> Change-Id: I359e4ce2c8dcbcfbe77bea3c36cc38398a60c6ba Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
2020-11-06meta-ingrasys: update Yocto compat for gatesgarthPatrick Williams1-1/+1
The next release of Yocto is soon and most of the upstream layers have switched support strings for it. Support layer compat for gatesgarth (current) and dunsfell (previous). (From meta-ingrasys rev: 52368129e9b624f9acd98c6156ea7a5d6d21ba4f) Signed-off-by: Patrick Williams <patrick@stwcx.xyz> Change-Id: If78b0ef8b9db95b8af2254d4b299a6c28e262044 Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
2020-11-03Use correct type for Dbus sensor interface in IPMI sensors YAML filesKonstantin Aladyshev1-7/+7
Dbus sensor interface 'xyz.openbmc_project.Sensor.Value' migrated from int to double. Therefore all old 'int64_t' types in "*-ipmi-sensor*.yaml" files for this interface should be changed to 'double'. (From meta-ingrasys rev: a77281516cf6aa609bb64196b6f48dbf0c52d725) Signed-off-by: Konstantin Aladyshev <aladyshev22@gmail.com> Change-Id: Ic14b9488d4da964a1d48052d9a8b334dbb753996 Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
2020-06-02zaius: Enable 7segKun Yi1-0/+1
Enable the postcode-7seg support as part of phosphor-host-postd. (From meta-ingrasys rev: b23cce18cfd15c88984c6ed781c75d926ae381c5) Signed-off-by: Kun Yi <kunyi731@gmail.com> Change-Id: Iec63f90460e6b4fd711b256bac0ee781b5535a0d Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
2020-05-29phosphor-settings-manager: remove override for Time.OwnerPatrick Williams1-6/+0
Time.Owner has been removed from phosphor-dbus-interfaces so this override is no longer appropriate. (From meta-ingrasys rev: 5d9fdf55c5d0400cfb92b27a9a5e4755e4c1e0c5) Signed-off-by: Patrick Williams <patrick@stwcx.xyz> Change-Id: Iaa96326d0f624df72054b0be53698f85d3d48fac Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
2020-04-28meta-zaius: Remove mention of vcs-workaroundJoel Stanley3-6/+1
This was a P9 DD1 workaround. These systems are no longer supported and are not found in the wild, so the workaround has been retired. Zaius opted to use it's own application for vcs control. We can now add that directly instead of overriding vcs workaround with vcs control. (From meta-ingrasys rev: 721db18e94f400a0b81d4a92ad2336be76fe1a6d) Signed-off-by: Joel Stanley <joel@jms.id.au> Change-Id: I4e9b26e5791a9b1dc8a5de343e52d5859154330a Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
2020-04-16dunfell: add support for new layerAndrew Geissler2-2/+2
(From meta-ingrasys rev: f6f1bf099107971f737a87b8fd4f85fadc0a3e78) Signed-off-by: Andrew Geissler <geissonator@yahoo.com> Change-Id: If877cad79cb8f581c1b28e012837402e5e73d956 Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
2020-04-03meta-ingrasys: remove unused zaius-config recipePatrick Williams1-6/+0
(From meta-ingrasys rev: 3ffec70944abf2a222f8a57839584519fd4efd92) Signed-off-by: Patrick Williams <patrick@stwcx.xyz> Change-Id: Ifedf4a3183af5ba3269b7edc28087e0ebd650528 Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
2019-12-16Revert "Fixup hwmon filenames"Brad Bishop3-3/+3
This reverts commit 66419549bc438ce800b9149ccae0ef02bf7e3bca. This patch is still under development and as is breaks the build. (From meta-ingrasys rev: df05e2d9f5843abf8cf4ef81a6b42752475ad6d8) Change-Id: I2158c28a2033c2bcf5f8a9cded8e345e39d5df6b Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-12-12Fixup hwmon filenamesWilliam A. Kennington III3-3/+3
Our previous start_hwmon.sh script was not escaping the filenames properly, resulting in configuration filepaths that differed from the actual filepaths. (From meta-ingrasys rev: 66419549bc438ce800b9149ccae0ef02bf7e3bca) Change-Id: I4d7c634c8cbe0987ae4407d9fd1431ff16064119 Signed-off-by: William A. Kennington III <wak@google.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-09-20meta-ingrasys: layer.conf: add zeus compatibilityPatrick Venture2-2/+2
OE-core master will be dropping warrior soon; zeus is the next release. (From meta-ingrasys rev: 9e946a348a50d439bbacafaf4f27f9910983d23b) Signed-off-by: Patrick Venture <venture@google.com> Change-Id: I302038aaab5a120587e734bc1c8bbf30d93cbe20 Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-09-18meta-ingrasys: Remove references to INGRASYSBASEBrad Bishop4-6/+3
INGRASYSBASE is only used for pointing at licenses...point at the licenses in oe-core in meta/files/common-licenses instead. to match the defacto convention used in other oe layers like meta-openembedded. (From meta-ingrasys rev: fcd2b2998a76f00307bb2ff821efa8ff8ef87c68) Change-Id: I76d73574778db36a649f20ccc0a5149f616743af Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-08-06zaius: phosphor-hwmon config: Add errnos to OCC REMOVERCSEddie James2-0/+2
Add errnos produced by the OCC driver stack to the REMOVERCS environment configuration. Zaius has a persistent issue with OCC unbind operations taking too long during host power off, resulting in hwmon errors as phosphor-hwmon attempts to poll the OCC. (From meta-ingrasys rev: b821af616c2bca5021bd28d80209341328371225) Signed-off-by: Eddie James <eajames@linux.ibm.com> Change-Id: Id010a7269e641d81f1b074565d2c684a2c8e04ea Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-07-19zaius: enable distro feature to support MAC2John Wang4-46/+4
Enable the distro feature phosphor-aspeednic-use-mac2 to support MAC2 This solution is not desirable but it works for now, For details please refer to https://gerrit.openbmc-project.xyz/c/openbmc/meta-phosphor/+/23415 Noted that this changed local.conf.sample, which means you need to modify the build/conf/local.conf accordingly Tested: devtool modify u-boot and saw the aspeednic patch is applied. (From meta-ingrasys rev: c827e2bd3ec4dfddc3e895bf3643390a0d44b79d) Signed-off-by: John Wang <wangzqbj@inspur.com> Change-Id: I691671434ca143add029df6d66d86059f4e309c1 Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-06-24meta-ingrasys: zaius: new YAML dependency schemeBrad Bishop10-65/+43
All the IPMI virtuals and PREFERRED_PROVIDERS in meta-phosphor are in the process of being deprecated. Prepare for that and move to a simpler scheme for providing the YAML configuration for Zaius systems. (From meta-ingrasys rev: a01ad654ff32e8f16ab36033ca1656d6b15bd1a0) Change-Id: I3d9cd4194d71d994e3f3dcff9a7174d61b2e7c53 Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-05-09meta-ingrasys: zaius: set BBFILE_PATTERNPatrick Venture1-1/+1
Bitbake uses this regex to associate recipes and bbappends from BBFILES (which contains recipes and bbappends from -all- layers listed in bblayers.conf) to this layer. The association is then used to map the BBFILE_PRIORITY value for this layer onto the recipes provided by this layer. BBFILE_PRIORITY is used to determine which recipe to use when the same recipe appears in multiple layers. Without BBFILE_PATTERN set, recipes in this layer will get a default priority and not the priority specified in BBFILE_PRIORITY. This layer doesn't set a priority anyway, so functionally this patch is a noop but it is an improvement from a correctness standpoint, and it makes a warning go away. (From meta-ingrasys rev: 67480036566266a3501bf42e230b5a0c0b7fd82e) Signed-off-by: Patrick Venture <venture@google.com> Change-Id: I9e9075907fe994606a09fd6965888e9585463381 Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-05-09meta-ingrasys: layer.conf: set BBFILE_PATTERNPatrick Venture1-1/+1
Bitbake uses this regex to associate recipes and bbappends from BBFILES (which contains recipes and bbappends from -all- layers listed in bblayers.conf) to this layer. The association is then used to map the BBFILE_PRIORITY value for this layer onto the recipes provided by this layer. BBFILE_PRIORITY is used to determine which recipe to use when the same recipe appears in multiple layers. Without BBFILE_PATTERN set, recipes in this layer will get a default priority and not the priority specified in BBFILE_PRIORITY. This layer doesn't set a priority anyway, so functionally this patch is a noop but it is an improvement from a correctness standpoint, and it makes a warning go away. (From meta-ingrasys rev: 7a286ca0dba71a6ef309ff031cafc06e2c00cb8d) Signed-off-by: Patrick Venture <venture@google.com> Change-Id: If0d38267efdf74a6d010278b5604ac517f4487da Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-04-20subtree updatesBrad Bishop22-141/+470
meta-aspeed: c8d791ede6..35a494ecb3: Andrew Jeffery (1): linux-aspeed: OCC, ISL68137, ASPEED spi-nor updates meta-ingrasys: 67bcaf389f..71846afdc6: Patrick Venture (5): meta-ingrasys: zaius: hwmon: udc90160 specify informative names meta-ingrasys: zaius: enable isl68137 and ir38064 meta-ingrasys: zaius: phosphor-hwmon: add vrm nodes meta-ingrasys: zaius: phosphor-hwmon: add power-brick nodes meta-ingrasys: zaius: update ipmi sensor inventory Robert Lippert (3): meta-ingrasys: zaius: remove reflock fixup recipe meta-ingrasys: zaius: avsbus-control: use linux driver instead of raw I2C commands meta-ingrasys: zaius: no longer need to set VDN VOUT_MAX during host boot Change-Id: I5dbcfae6f937e0f01e5fca4c1f686be0e82b7ee1 Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-04-06update upstream subtreesBrad Bishop2-2/+2
A number of corequisites exist so squashing these all into one patch. meta-ingrasys - refresh master bc513127f4..67bcaf389f meta-hxt - refresh master 86a4df514f..8fe0d38bbb meta-phosphor - refresh master 06c09d7cce..df6ddae3d2 meta-quanta - refresh master 4f126361a1..53f3025271 Change-Id: I3daeef2a0467d8ea4f1fd1c617e526f8b11258af Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-04-05meta-ingrasys: layer.conf: Add warrior compatibilityBrad Bishop2-2/+2
oe-core branched in preparation for the upcoming 2.7 Yocto release and as of 13e45ff requires core layer compatibility to "warrior" instead of "thud". We'll retain compatibility for both until we do our own branch or stop testing thud. (From meta-ingrasys rev: bc513127f473da3cdadf59f4836043e8dbf2e3bf) Change-Id: Ic35d93d2d24506a9a8f50bda9f5f76af0c97208b Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-03-26meta-ingrasys: zaius: Update I2C hwmon paths for the 5.0 kernelPatrick Venture3-2/+2
In the 5.0 Linux kernel, an I2C device path segment changed: i2c@1e78a000 -> bus@1e78a000 (From meta-ingrasys rev: 0736d99758250742a563bb416c4f7be3394fb206) Tested: Verified paths visually, but not tested on hardware. Signed-off-by: Patrick Venture <venture@google.com> Change-Id: Ifb89b0f62b787a19281304d0cbbdf3556f25842e Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-02-06zaius: Remove some layers from bblayers.confBrad Bishop1-4/+0
Zaius doesn't use poky, so drop meta-poky from the layer configuration. Zaius also doesn't need meta-webserver with the recent move to bmcweb. (From meta-ingrasys rev: 0b3e60508154017b923320c18b133756ec34fc8a) Change-Id: I75ead8eb6cbb1b10383cc5f81637e030521bc075 Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-01-10meta-ingrasys: zaius: add zaius-ipmi-sensor-inventoryPatrick Venture4-1/+20
Add zaius-ipmi-sensor-inventory instead of appending to phosphor-ipmi-sensor-inventory to not drop the zaius file with another machine that hasn't set an override. The other machine will use the default file supplied by the default provider. (From meta-ingrasys rev: 9cedd21e4a0e71f3f13d6ffe0e9317b3e308a943) Change-Id: I3f15f15553ad8449e19cc2400c2bcb29d0dbb613 Signed-off-by: Patrick Venture <venture@google.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-01-10meta-ingrasys: zaius: add zaius-ipmi-fru-propertiesPatrick Venture4-1/+20
Add zaius-ipmi-fru-properties package instead of appending to phosphor-ipmi-fru-properties to not drop the zaius file with another machine that hasn't set an override. The other machine will use the default file supplied by the default provider. (From meta-ingrasys rev: 4dd8f1dfde10a79c67d2be020ea2dce27bdde7c8) Change-Id: Iac04818b3f879d26b0084f49e5c131a9e115a3e8 Signed-off-by: Patrick Venture <venture@google.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-01-10meta-ingrasys: zaius: bugfix native overridePatrick Venture2-2/+2
Native recipes do not recognize machine overrides, because it's native and not set to a machine. Fix the two native recipes that have the zaius machine override. In a multiple system configuration (bblayers), these are handled via custom recipes. (From meta-ingrasys rev: f09aaca6496b6cfe351dc8a990034d6198f614cf) Change-Id: Id76d426bee1779412dc6e4f4d05877f84b22708f Signed-off-by: Patrick Venture <venture@google.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2019-01-09reset upstream subtrees to yocto 2.6Brad Bishop2-2/+2
Reset the following subtrees on thud HEAD: poky: 87e3a9739d meta-openembedded: 6094ae18c8 meta-security: 31dc4e7532 meta-raspberrypi: a48743dc36 meta-xilinx: c42016e2e6 Also re-apply backports that didn't make it into thud: poky: 17726d0 systemd-systemctl-native: handle Install wildcards meta-openembedded: 4321a5d libtinyxml2: update to 7.0.1 042f0a3 libcereal: Add native and nativesdk classes e23284f libcereal: Allow empty package 030e8d4 rsyslog: curl-less build with fmhttp PACKAGECONFIG 179a1b9 gtest: update to 1.8.1 Squashed OpenBMC subtree compatibility updates: meta-aspeed: Brad Bishop (1): aspeed: add yocto 2.6 compatibility meta-ibm: Brad Bishop (1): ibm: prepare for yocto 2.6 meta-ingrasys: Brad Bishop (1): ingrasys: set layer compatibility to yocto 2.6 meta-openpower: Brad Bishop (1): openpower: set layer compatibility to yocto 2.6 meta-phosphor: Brad Bishop (3): phosphor: set layer compatibility to thud phosphor: libgpg-error: drop patches phosphor: react to fitimage artifact rename Ed Tanous (4): Dropbear: upgrade options for latest upgrade yocto2.6: update openssl options busybox: remove upstream watchdog patch systemd: Rebase CONFIG_CGROUP_BPF patch Change-Id: I7b1fe71cca880d0372a82d94b5fd785323e3a9e7 Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2018-12-18zaius: remove setting root pw from local.confBrad Bishop1-4/+0
With meta-phosphor commit fd1f696f99 this is done by the distro configuration; so, no need to do it in local.conf. (From meta-ingrasys rev: 302ca19cdaa86cc9c48a859459ca05e13b962534) Change-Id: If7add5d0ce4eb52143521d5981449052797ede8e Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2018-11-08meta-ingrasys: master refresh 94d26b9f7d..c5f9312e58Brad Bishop5-4/+11
Update meta-ingrasys to master HEAD. Patrick Venture (5): meta-ingrasys: add INGRASYSBASE meta-ingrasys: zaius: ipmi-inventory-map-native: set LICENSE field meta-ingrasys: zaius: chassis: avsbus-control: set LICENSE field meta-ingrasys: zaius: chassis: refclock-fixup: set LICENSE field meta-ingrasys: zaius: chassis: vcs-control: set LICENSE field Change-Id: I58d8793a08e2e8333ccc4f71608365dec0ff8a8e Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2018-10-25meta-ingrasys: zaius: skeleton: obmc-libobmc-intf: drop symlinkPatrick Venture2-2/+1
Drop symlink and rename bbappend for obmc-libobmc-intf. (From meta-ingrasys rev: 94d26b9f7df1bcf331d55ec0bb1c91b8ca474e38) Change-Id: I81962c8733e14d90c13094f4353c33599b44ff51 Signed-off-by: Patrick Venture <venture@google.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2018-10-24meta-ingrasys: zaius: skeleton: obmc-libobmc-intf: set version wildcardPatrick Venture1-0/+1
Set the wildcard for version for obmc-libobmc-intf_%.bbappend (From meta-ingrasys rev: 15e0fd472307c957981399b3f355bcb6ad3ee19e) Change-Id: Id6af3b344c517b729977bcd12919fa9baa3e1bc7 Signed-off-by: Patrick Venture <venture@google.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2018-10-23meta-ingrasys: zaius: Update sensor config YAML to include rExpKun Yi1-0/+3
Tested: None (From meta-ingrasys rev: 05307cd0cc6b4da3fe3038b4cd99d12f370fa324) Change-Id: I7225f4653b77cc449e8929aa494a8c787dd5838c Signed-off-by: Kun Yi <kunyi731@gmail.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2018-10-22meta-ingrasys: zaius: mboxd: drop symlinkPatrick Venture2-2/+1
Drop symlink and rename bbappend for mboxd. (From meta-ingrasys rev: 495318e68d20c4927cc40d6780e05f7e68139d69) Change-Id: I22383131a97c1e63c40363d23ae726eb0793b402 Signed-off-by: Patrick Venture <venture@google.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2018-10-22meta-ingrasys: zaius: gpio-monitor: drop symlinkPatrick Venture2-12/+11
Drop symlink and rename bbappend for phosphor-gpio-monitor. (From meta-ingrasys rev: 3de657011fa0d35faab1d91f7521218611ba735a) Change-Id: Ia473affefd4c888e4c49462fc287c293e39f321e Signed-off-by: Patrick Venture <venture@google.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2018-10-17meta-ingrasys: zaius: phosphor-settings-manager: set version wildcardPatrick Venture3-0/+0
Update the bbappend to wildcard on the recipe's version. (From meta-ingrasys rev: aa260b2a1607923a9d413bbf4594c95e5069e5d6) Change-Id: Icda76e939719a189e06a269e987a5cd4a1096e87 Signed-off-by: Patrick Venture <venture@google.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2018-10-17meta-ingrasys: zaius: mboxd: set version wildcardPatrick Venture1-0/+1
Set the wildcard for version for mboxd_%.bbappend (From meta-ingrasys rev: f0d056893d547a4be72f85f74c26f4bac2377e40) Change-Id: I82157ec599ad2dea0ed7089d8a2c2bcf37f8b1e5 Signed-off-by: Patrick Venture <venture@google.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2018-10-16meta-ingrasys: zaius: gpio-monitor: set version wildcardPatrick Venture1-0/+1
Set the wildcard for version for phosphor-gpio-monitor.bbappend. (From meta-ingrasys rev: 4af22d6740e120796b65072dee056c6f5b8b182d) Change-Id: I351ddfc5c637adb4ae994e3e37a1e44df3618443 Signed-off-by: Patrick Venture <venture@google.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2018-10-16meta-ingrasys: zaius: phosphor-settings-manager: set wildcardPatrick Venture3-0/+0
Set wildcard for phosphor-settings-manager for meta-zaius. (From meta-ingrasys rev: 2844dc80db86f2959db24bf117136bb4c36c87f5) Change-Id: I83ce6d09f32dde2530dabd1621e2c457a89c7abb Signed-off-by: Patrick Venture <venture@google.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2018-10-16meta-ingrasys: zaius: config: rename as gitPatrick Venture1-0/+1
zaius-config.bb inherits config-in-skeleton, which is git-based. (From meta-ingrasys rev: 3f7e10c1546d2a02f08ae90a6b18268764da8313) Change-Id: I47466ac9df80c00b4ac31691473f621ecb8f9d78 Signed-off-by: Patrick Venture <venture@google.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2018-10-04meta-ingrasys: zaius: rename phosphor-hwmonPatrick Venture12-0/+0
Rename phosphor-hwmon%.bbappend to phosphor-hwmon_%.bbappend. Tested: Verified phosphor-hwmon confs were found in rootfs. (From meta-ingrasys rev: 7be24a88b9edcfb59929bbc7ec4f904b386a41d9) Change-Id: I96dda86c65ce599ea34ae444d955987f11953b0b Signed-off-by: Patrick Venture <venture@google.com> Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2018-10-01ingrasys: Add a layer licenseBrad Bishop3-0/+204
meta-ingrasys did not have licensing information documented. Add it. (From meta-ingrasys rev: 7990657941f1d4b38f5a8f4174cddf10e06c8f5d) Change-Id: I4e00e979c4af544488e6a61778052bdc97a23667 Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>