#
a221e432 |
| 25-Aug-2024 |
Andrew Jeffery <andrew@codeconstruct.com.au> |
linux-aspeed: Rename APB nodes, PT5161L support, Catalina updates
The notable change is to the phosphor-hwmon configuration paths for all Aspeed-based platforms. The changes were generated with the
linux-aspeed: Rename APB nodes, PT5161L support, Catalina updates
The notable change is to the phosphor-hwmon configuration paths for all Aspeed-based platforms. The changes were generated with the following incantations:
``` git ls-files -- :/:*/ahb/apb/bus@1e78* | while read -r S; do D="$(echo $S | sed -E 's|ahb/apb/bus@1e78a000/i2c-bus|ahb/apb@1e780000/bus@1e78a000/i2c|')"; mkdir -p "$(dirname "$D")"; git mv "$S" "$D"; done git ls-files -- :/:*/ahb/apb/pwm-tacho-controller@1e786* | while read -r S; do D="$(echo "$S" | sed -E 's|ahb/apb/pwm-tacho-controller@1e786000|ahb/apb@1e780000/pwm-tacho-controller@1e786000|')"; mkdir -p "$(dirname "$D")"; git mv "$S" "$D"; done sed -Ei 's|ahb/apb/|ahb/apb@1e780000/|g' meta-ibm/meta-palmetto/recipes-phosphor/sensors/phosphor-hwmon_%.bbappend meta-ibm/meta-romulus/recipes-phosphor/sensors/phosphor-hwmon_%.bbappend meta-ibm/recipes-phosphor/sensors/phosphor-hwmon_%.bbappend meta-ingrasys/meta-zaius/recipes-phosphor/sensors/phosphor-hwmon_%.bbappend meta-quanta/meta-f0b/recipes-phosphor/sensors/phosphor-hwmon_%.bbappend meta-quanta/meta-q71l/recipes-phosphor/sensors/phosphor-hwmon_%.bbappend sed -Ei 's/i2c-bus@/i2c@/g' meta-ibm/dynamic-layers/meta-openpower/recipes-phosphor/vpd/openpower-fru-vpd_%.bbappend meta-ibm/meta-palmetto/recipes-phosphor/sensors/phosphor-hwmon_%.bbappend meta-ibm/meta-romulus/recipes-phosphor/logging/files/callouts.yaml meta-ibm/meta-romulus/recipes-phosphor/sensors/phosphor-hwmon_%.bbappend meta-ibm/recipes-phosphor/chassis/vrm-control/ibm-ac-server/ir35221-unbind-bind.sh meta-ibm/recipes-phosphor/fans/phosphor-fan-presence-config/swift/config.yaml meta-ibm/recipes-phosphor/logging/ibm-logging/ibm-ac-server/policyTable.json meta-ibm/recipes-phosphor/sensors/phosphor-hwmon_%.bbappend meta-ingrasys/meta-zaius/recipes-phosphor/sensors/phosphor-hwmon_%.bbappend meta-quanta/meta-f0b/recipes-phosphor/sensors/phosphor-hwmon_%.bbappend meta-quanta/meta-q71l/recipes-phosphor/sensors/phosphor-hwmon_%.bbappend sed -Ei 's|/ahb:apb/|/1e780000.apb/|g' $(git grep -lE 'ahb:apb/.*1e78') sed -Ei 's|ahb:apb:i2c@1e78a000|1e780000.apb:bus@1e78a000|g' $(git grep -l ahb:apb:i2c@1e78a000) sed -Ei 's|ahb:apb|1e6e0000.apb|g' meta-phosphor/recipes-phosphor/video/uart-render-controller/uart-render-controller.service git ls-files -- :/:meta-ibm/*/ahb--apb/* | while read -r S; do D="$(echo "$S" | sed -E 's/ahb--apb/1e780000.apb/g')"; mkdir -p "$(dirname "$D")"; git mv "$S" "$D"; done; sed -Ei 's/ahb--apb/1e780000.apb/g' $(git grep -l ahb--apb -- meta-ibm) git ls-files -- :/:*i2c-bus* | while read -r S; do D="$(echo "$S" | sed -E 's/(1e78a..0).i2c-bus/\1.i2c/g')"; mkdir -p "$(dirname "$D")"; git mv "$S" "$D"; done; sed -Ei 's/(1e78a..0).i2c-bus/\1.i2c/g' $(git grep -lE '(1e78a..0).i2c-bus') ```
What couldn't be automated was cleaning up the ibm-logging policy table, which had many duplicate keys that needed manual inspection to remove. It's worth noting that even for the remaining, non-duplicate keys, the sysfs paths are not correct: The physical address of the I2C controllers needs to map to the assigned device index, but in the file they all have address 1e78a100 despite changes to the device index.
From eslint in CI:
``` meta-ibm/recipes-phosphor/logging/ibm-logging/ibm-ac-server/policyTable.json 9999:10 error Duplicate object key json/* 10020:10 error Duplicate object key json/* 10041:10 error Duplicate object key json/* 10062:10 error Duplicate object key json/* 10083:10 error Duplicate object key json/* 10104:10 error Duplicate object key json/* 17097:10 error Duplicate object key json/* 17118:10 error Duplicate object key json/* 17139:10 error Duplicate object key json/* 17160:10 error Duplicate object key json/* 17181:10 error Duplicate object key json/* 17202:10 error Duplicate object key json/* 17223:10 error Duplicate object key json/* 17244:10 error Duplicate object key json/* 17265:10 error Duplicate object key json/* 17286:10 error Duplicate object key json/* 17307:10 error Duplicate object key json/* 17328:10 error Duplicate object key json/* 17349:10 error Duplicate object key json/* 17370:10 error Duplicate object key json/* 17391:10 error Duplicate object key json/* 17412:10 error Duplicate object key json/* 17433:10 error Duplicate object key json/* 17454:10 error Duplicate object key json/* 19575:10 error Duplicate object key json/* 19596:10 error Duplicate object key json/* ```
Andrew Jeffery (1): ARM: dts: aspeed: Rework APB nodes
Cosmo Chou (3): dt-bindings: vendor-prefixes: add asteralabs dt-bindings: trivial-devices: add Astera Labs PT5161L hwmon: Add driver for Astera Labs PT5161L retimer
Potin Lai (2): ARM: dts: aspeed: catalina: add pdb cpld io expander ARM: dts: aspeed: catalina: update io_expander7 & io_expander8 line name
Rob Herring (Arm) (1): arm: dts: aspeed: Use standard 'i2c' bus node name
Change-Id: I32ca7579eabd59ed20da3f481da687589a361763 Signed-off-by: Andrew Jeffery <andrew@codeconstruct.com.au>
show more ...
|
#
918bbfd9 |
| 23-Jul-2024 |
Matt Spinler <spinler@us.ibm.com> |
meta-ibm:Use device path for p10bmc hwmon configs
With https://gerrit.openbmc.org/c/openbmc/phosphor-hwmon/+/72996, phosphor-hwmon can be told to use the device path as the path to the config file a
meta-ibm:Use device path for p10bmc hwmon configs
With https://gerrit.openbmc.org/c/openbmc/phosphor-hwmon/+/72996, phosphor-hwmon can be told to use the device path as the path to the config file and not the OF_FULLNAME udev env var.
Enable this option for the p10bmc image, and rename all of the config files in the image to be based on the device path.
This is being done because the Rainier and Everest follow-ons, BlueRidge and Fuji, have a different name for the max31785 in the device tree, even though it shares the same fan card. With this change, the config files can be shared.
This also deletes the Bonnell config file, because it is at the same device path as on Rainier but requires different contents. It will just be handled with something downstream.
Tested: Things still show up on D-Bus: ``` $ busctl tree xyz.openbmc_project.Hwmon-75e29b8640dca44a8648ec8aeb240d520bd5eb91b19a8ebe4bbc48ef236d856c.Hwmon1 `- /xyz `- /xyz/openbmc_project `- /xyz/openbmc_project/sensors `- /xyz/openbmc_project/sensors/fan_tach |- /xyz/openbmc_project/sensors/fan_tach/fan0_0 |- /xyz/openbmc_project/sensors/fan_tach/fan0_1 |- /xyz/openbmc_project/sensors/fan_tach/fan1_0 |- /xyz/openbmc_project/sensors/fan_tach/fan1_1 |- /xyz/openbmc_project/sensors/fan_tach/fan2_0 |- /xyz/openbmc_project/sensors/fan_tach/fan2_1 |- /xyz/openbmc_project/sensors/fan_tach/fan3_0 |- /xyz/openbmc_project/sensors/fan_tach/fan3_1 |- /xyz/openbmc_project/sensors/fan_tach/fan4_0 |- /xyz/openbmc_project/sensors/fan_tach/fan4_1 |- /xyz/openbmc_project/sensors/fan_tach/fan5_0 `- /xyz/openbmc_project/sensors/fan_tach/fan5_1 ```
Change-Id: Ie413778b0383cc8115973337dd53d6aa06f45302 Signed-off-by: Matt Spinler <spinler@us.ibm.com>
show more ...
|
Revision tags: 2.17.0-dev |
|
#
9f433293 |
| 22-Mar-2024 |
Andrew Geissler <geissonator@yahoo.com> |
meta-ibm: remove swift machine
This machine is no longer in use
Change-Id: Icad284c92fa1cf9c5fc5f0afacb58e287a9557e2 Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
|
#
6fd62ea8 |
| 31-Jan-2024 |
Matt Spinler <spinler@us.ibm.com> |
meta-ibm: Update Everest max31785 hwmon conf path
Kernel commit 4b46d86c978bbca24c110a5b0d6890380ed4b6c7 changed all PCA954x i2c-switch DTS node names to i2c-mux, so update the phosphor-hwmon config
meta-ibm: Update Everest max31785 hwmon conf path
Kernel commit 4b46d86c978bbca24c110a5b0d6890380ed4b6c7 changed all PCA954x i2c-switch DTS node names to i2c-mux, so update the phosphor-hwmon config file path accordingly.
Change-Id: I4c4f6f26f8e6931ddd43f449661c032a55350f4c Signed-off-by: Matt Spinler <spinler@us.ibm.com>
show more ...
|
Revision tags: 2.16.0-dev, 2.14.0, 2.14.0-rc1, 2.15.0-dev |
|
#
40e54e99 |
| 12-Apr-2023 |
Lakshmi Yadlapati <lakshmiy@us.ibm.com> |
meta-ibm:sensors:p10bmc:Add power-supply hwmon configs
Add the power-supply configuration files for the acbel-fsg032 power supplies used in the Bonnell systems in order to get telemetry data added t
meta-ibm:sensors:p10bmc:Add power-supply hwmon configs
Add the power-supply configuration files for the acbel-fsg032 power supplies used in the Bonnell systems in order to get telemetry data added to D-Bus via phosphor-hwmon.
Bonnell power supplies on bus 3 at 0x5a and 0x5b
Change-Id: I97a1e1ba57ee1b2da6462b6921f121683498fe87 Signed-off-by: Lakshmi Yadlapati <lakshmiy@us.ibm.com>
show more ...
|
#
93e6bbee |
| 03-Mar-2023 |
Matt Spinler <spinler@us.ibm.com> |
meta-ibm: Add max31785 hwmon config for Bonnell
While the max31785 is at the same I2C bus and address as on Rainier, it only has two fans so it needs a unique hwmon conf file, which it has because t
meta-ibm: Add max31785 hwmon config for Bonnell
While the max31785 is at the same I2C bus and address as on Rainier, it only has two fans so it needs a unique hwmon conf file, which it has because the name is different in the device tree.
Signed-off-by: Matt Spinler <spinler@us.ibm.com> Change-Id: Ia2c77e4149f02fe0a9d335cdd0551fb4ddd75108
show more ...
|
Revision tags: 2.13.0, 2.14.0-dev, 2.12.0 |
|
#
ec88c48a |
| 11-Oct-2022 |
Myung Bae <myungbae@us.ibm.com> |
Remove largely unmaintained Mihawk
A fork of it is maintained but its upstream layer has largely been unmaintained. No future products are planned to be based on this layer. Mihawk is similar to Wit
Remove largely unmaintained Mihawk
A fork of it is maintained but its upstream layer has largely been unmaintained. No future products are planned to be based on this layer. Mihawk is similar to Witherspoon.
Signed-off-by: Myung Bae <myungbae@us.ibm.com> Change-Id: I82f7d777b78cd126237d51e42f1e11abdf80ae68
show more ...
|
Revision tags: 2.12.0-rc1, 2.13.0-dev |
|
#
d5c716dc |
| 17-Feb-2022 |
Patrick Williams <patrick@stwcx.xyz> |
treewide: fix append/remove directives
As mentioned by I970e06ca6f9d0a9792af122eb25da1bb9a06f058, append and remove directives with '+=' are no longer valid Yocto syntax and raise a warning.
See ht
treewide: fix append/remove directives
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
show more ...
|
Revision tags: 2.11.0, 2.12.0-dev |
|
#
3772aab3 |
| 29-Oct-2021 |
Brandon Wyman <bjwyman@gmail.com> |
sensors:p10bmc:Add power-supply hwmon configs
Add the power-supply configuration files for the ibm-cffps power supplies used in the Rainier and Everest systems in order to get telemetry data added t
sensors:p10bmc:Add power-supply hwmon configs
Add the power-supply configuration files for the ibm-cffps power supplies used in the Rainier and Everest systems in order to get telemetry data added to D-Bus via phosphor-hwmon.
Rainier power supplies on bus 3 at 0x68, 0x69, 0x6a, and 0x6b.
Everest power supplies on bus 3 at 0x68, 0x69, 0x6d, and 0x6b. Older hardware has power supply at 0x6a instead of 0x6d.
Input voltage, input power, output voltage, and output current.
No critical or warning low values, to avoid logging errors when AC is pulled, or other fault conditions handled by the PSU monitor. AC loss, brownout, over-voltage, over-current, and other conditions should be handled by the PSU monitor application.
No critical/warning high values, for similar doubled up fault logging.
Change-Id: I9f39e41e2dd0a7b77910207322506d8376f98772 Signed-off-by: Brandon Wyman <bjwyman@gmail.com>
show more ...
|
#
c184a0f0 |
| 28-Sep-2021 |
Matt Spinler <spinler@us.ibm.com> |
ibm: Drop hwmon support for water cooled wspoon There is an upcoming systemd change that doesn't handle what was being done, which was to delay starting phosphor-hwmon from udev until th
ibm: Drop hwmon support for water cooled wspoon There is an upcoming systemd change that doesn't handle what was being done, which was to delay starting phosphor-hwmon from udev until the chassis cooling type was on D-Bus. This commit removes this method and goes down to a single hwmon config file that only supports the air cooled system, which has 2 more fan rotors than the water cooled one does. This change also applies to the similar systems witherspoon-tacoma and swift. Resolves openbmc/phosphor-hwmon/#19. Signed-off-by: Matt Spinler <spinler@us.ibm.com> Change-Id: Ic4ed46a5bf310fb1fef8704dcafc0376c441f8c4
show more ...
|
#
e83c2209 |
| 01-Sep-2021 |
Patrick Williams <patrick@stwcx.xyz> |
meta-phosphor: change systemd.bbclass to match upstream override syntax Upstream bbclasses changed to typically use the `:${PN}` override syntax, including the SYSTEMD_ variables. Chang
meta-phosphor: change systemd.bbclass to match upstream override syntax 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
show more ...
|
#
782d7195 |
| 17-Aug-2021 |
Anton Blanchard <anton@ozlabs.org> |
Fix path to udev rules files Use nonarch_base_libdir instead of base_libdir, because the files are always in /lib/udev/rules.d/. On ppc64le base_libdir is lib64, and the files end up
Fix path to udev rules files Use nonarch_base_libdir instead of base_libdir, because the files are always in /lib/udev/rules.d/. On ppc64le base_libdir is lib64, and the files end up in the wrong spot. Signed-off-by: Anton Blanchard <anton@ozlabs.org> Change-Id: I3c24dae293f4166f1ed1826d09d4bde7cd7d0357
show more ...
|
#
b96c7504 |
| 06-Aug-2021 |
Adriana Kobylak <anoo@us.ibm.com> |
meta-ibm: prep for new override syntax Change-Id: I9116ed7260e369136acb39eec15075db2d4dbeba Signed-off-by: Adriana Kobylak <anoo@us.ibm.com>
|
Revision tags: 2.10.0-rc1, 2.11.0-dev |
|
#
c15c753d |
| 14-Apr-2021 |
Matt Spinler <spinler@us.ibm.com> |
build phosphor-hwmon with meson The repository supports it, so switch it over in bitbake. Signed-off-by: Matt Spinler <spinler@us.ibm.com> Change-Id: I8d96c79b395ee2614ddd869091
build phosphor-hwmon with meson The repository supports it, so switch it over in bitbake. Signed-off-by: Matt Spinler <spinler@us.ibm.com> Change-Id: I8d96c79b395ee2614ddd869091569f245426c5c7
show more ...
|
#
63ed80d2 |
| 25-Mar-2021 |
Adriana Kobylak <anoo@us.ibm.com> |
ibm: sensors: Replace rainier with p10bmc The IBM rainier machine name is being replaced with the generic p10bmc. Change-Id: I43d08c3be45d8cc8b03914b9bc257df2668e9fe0 Signed-off
ibm: sensors: Replace rainier with p10bmc The IBM rainier machine name is being replaced with the generic p10bmc. Change-Id: I43d08c3be45d8cc8b03914b9bc257df2668e9fe0 Signed-off-by: Adriana Kobylak <anoo@us.ibm.com>
show more ...
|
#
d31ef576 |
| 07-Jan-2021 |
Matthew Barth <msbarth@us.ibm.com> |
rainier: Add max31785 hwmon device for Everest Everest has the max31785 at a different i2c address that is behind a mux, so install its hwmon config at that associated location.
rainier: Add max31785 hwmon device for Everest Everest has the max31785 at a different i2c address that is behind a mux, so install its hwmon config at that associated location. Tested: Hwmon instance for the max31785 starts successfully on Everest (From meta-ibm rev: cd84eb53a79edcabddd5e7720f9e0389f4e96151) Signed-off-by: Matthew Barth <msbarth@us.ibm.com> Change-Id: Ide9ca8bd76d708ef9453dc7d02526dfbb1dd8a30 Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
show more ...
|
Revision tags: 2.9.0, 2.9.0-rc1, 2.10.0-dev |
|
#
80418147 |
| 23-Nov-2020 |
Matthew Barth <msbarth@us.ibm.com> |
sensors:rainier: Add max31785 hwmon config Add the max31785 fan controller device to hwmon. (From meta-ibm rev: 71404ba4966e32bb4ed9a120062d669ed642d851) Change-Id: I4b2cd1
sensors:rainier: Add max31785 hwmon config Add the max31785 fan controller device to hwmon. (From meta-ibm rev: 71404ba4966e32bb4ed9a120062d669ed642d851) Change-Id: I4b2cd1c5379e76ccf40f52dc6ceca6a98f931f40 Signed-off-by: Matthew Barth <msbarth@us.ibm.com> Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
show more ...
|
#
7cff96a9 |
| 17-Nov-2020 |
Matthew Barth <msbarth@us.ibm.com> |
sensors:max31785-msl: Enable/install max31785-msl package The max31785-msl application is now a package within the phosphor-hwmon recipe, so that package needs to be enabled and installe
sensors:max31785-msl: Enable/install max31785-msl package The max31785-msl application is now a package within the phosphor-hwmon recipe, so that package needs to be enabled and installed on `ibm-ac-server` alias of machines which have a max31785 chip. These machines require that the minimum ship level(msl) be verified on them using this application. Tested: Built phosphor-hwmon package after enabling max31785-msl package Verified application, config file, and service existed in image (From meta-ibm rev: 33184059fa07ca12e11fb9e8dde2d6a31e1f029e) Change-Id: I186fb6ca930e4107738d4ed90d31b6233be3d6f2 Signed-off-by: Matthew Barth <msbarth@us.ibm.com> Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
show more ...
|
#
10d8f3d5 |
| 15-Oct-2020 |
Matthew Barth <msbarth@us.ibm.com> |
sensors:max31785: Remove `x` perms from udev rule file Remove executable permissions from the `70-max31785-hwmon.rules` file to eliminate the systemd-udevd warning that its marked execut
sensors:max31785: Remove `x` perms from udev rule file Remove executable permissions from the `70-max31785-hwmon.rules` file to eliminate the systemd-udevd warning that its marked executable. (From meta-ibm rev: 46984b5eda5c40e63cb9fab6aa5e667cec7f5b68) Signed-off-by: Matthew Barth <msbarth@us.ibm.com> Change-Id: Ic7405ed73f2d7875c57696ae4e5b30e380502fd6 Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
show more ...
|
#
6e7584f9 |
| 29-Sep-2020 |
Ben Pai <Ben_Pai@wistron.com> |
meta-ibm: mihawk: Solve the issue of cannot reading 250 soc temperature Mihawk cannot read the 250 soc sensor on the riser, this is because dts defines pca9545riser@70 instead of pca9545
meta-ibm: mihawk: Solve the issue of cannot reading 250 soc temperature Mihawk cannot read the 250 soc sensor on the riser, this is because dts defines pca9545riser@70 instead of pca9545@70. (From meta-ibm rev: 731297ebde0eb4272d39260a30cd5f5b1f4e6f1a) Change-Id: Ibcb72ef6be7c953cc35cc216e8cc45e283949e61 Signed-off-by: Ben Pai <Ben_Pai@wistron.com> Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
show more ...
|
#
d5768910 |
| 11-Jun-2020 |
Ben Pai <Ben_Pai@wistron.com> |
meta-ibm: mihawk: Add 250 soc thermal sensor Mihawk can use up to eight 250-soc. Tested: The user can see the temperature when using 250-soc. (From meta-ibm rev: 74b755
meta-ibm: mihawk: Add 250 soc thermal sensor Mihawk can use up to eight 250-soc. Tested: The user can see the temperature when using 250-soc. (From meta-ibm rev: 74b7557b08ed2582861cd7da390d84371ec2ff86) Change-Id: I17b0d969d0902f6470287c6164f542ad84412f7d Signed-off-by: Ben Pai <Ben_Pai@wistron.com> Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
show more ...
|
Revision tags: 2.8.0, 2.8.0-rc1, 2.9.0-dev |
|
#
e1615142 |
| 22-Apr-2020 |
Brad Bishop <bradleyb@fuzziesquirrel.com> |
meta-ibm: move all meta-witherspoon metadata The metadata common to all IBM systems is confusingly split between meta-ibm and meta-witherspoon. Move everything to meta-ibm. The
meta-ibm: move all meta-witherspoon metadata The metadata common to all IBM systems is confusingly split between meta-ibm and meta-witherspoon. Move everything to meta-ibm. The meta-ibm README is re-written to more accurately reflect the scope of the layer. Allow the configuration samples (bblayers.conf.sample, local.conf.sample) to be sourced from either meta-ibm or meta-witherspoon until such a time that any workflows and tooling have had the opportunity to move to meta-ibm. (From meta-ibm rev: 6e05ef2e90b214eaf4e43ee7027bbbb1d8d09442) Change-Id: I3ec890d5300f9649c974ea6b9dca93a2e8a889ab Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com> Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
show more ...
|