diff options
Diffstat (limited to 'meta-xilinx-bsp')
-rw-r--r-- | meta-xilinx-bsp/conf/machine/include/machine-xilinx-overrides.inc | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/meta-xilinx-bsp/conf/machine/include/machine-xilinx-overrides.inc b/meta-xilinx-bsp/conf/machine/include/machine-xilinx-overrides.inc new file mode 100644 index 00000000..30049bc0 --- /dev/null +++ b/meta-xilinx-bsp/conf/machine/include/machine-xilinx-overrides.inc | |||
@@ -0,0 +1,21 @@ | |||
1 | SOC_VARIANT ??= "" | ||
2 | MACHINEOVERRIDES =. "${@['', '${SOC_FAMILY}${SOC_VARIANT}:']['${SOC_VARIANT}' != '']}" | ||
3 | |||
4 | # Here we can extend overrides for the corresponding family and variant | ||
5 | def get_soc_overrides(fam, var, d): | ||
6 | extender = '' | ||
7 | if (fam == 'zynqmp'): | ||
8 | if (var == 'eg'): | ||
9 | extender = 'mali400:' | ||
10 | elif (var == 'ev'): | ||
11 | extender = 'mali400:vcu:' | ||
12 | return extender | ||
13 | |||
14 | # Gets OVERRIDES extender depending on the board | ||
15 | SOC_OVERRIDES = "${@get_soc_overrides(d.getVar('SOC_FAMILY'),d.getVar('SOC_VARIANT'), d)}" | ||
16 | |||
17 | MACHINEOVERRIDES =. "${SOC_OVERRIDES}" | ||
18 | |||
19 | PACKAGE_EXTRA_ARCHS_append = " ${SOC_FAMILY}" | ||
20 | PACKAGE_EXTRA_ARCHS_append = "${@['', ' ${SOC_FAMILY}${SOC_VARIANT}']['${SOC_VARIANT}' != '']}" | ||
21 | |||