Skip to content

Integrate meta-seco-rk/ap/rk-things

Commit: edgehog/layers/seco/meta-seco-rk@fe77b6d6

[E09] use correct branch for sysdata

The u-boot-seco-rk-fw-sysdata recipe shared the same sources as u-boot, therefore it should build from the same branch.

--

Commit: edgehog/layers/seco/meta-seco-rk@24fd4dbf

[ROCKCHIP] fix MACHINEOVERRIDES order

The MACHINEOVERRIDES variable should contain a list of overrides ordered from the most general to the most specific. This order is currently not honored.

As a result, in the following assignments (e.g.) VAR:rockchip = "rockchip-value" VAR:rk3568 = "rk3568-value" the variable VAR will always have value "rockchip-value", even on rk3568, because the overrides are evaluated from left to right and "rockchip" comes after "rk3568".

Fix that by prepending "rockchip:" to MACHINEOVERRIDES instead of appending it.

Merge request reports