Integrate meta-seco-rk/ap/rk-things
[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.
--
[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.