diff options
author | Raju Kumar Pothuraju <rajukumar.pothuraju@amd.com> | 2023-07-04 17:16:06 +0530 |
---|---|---|
committer | Mark Hatle <mark.hatle@amd.com> | 2023-07-07 09:41:02 -0500 |
commit | 861c02a8b3e8f72667979bce88f6537335888d48 (patch) | |
tree | 81d22047e720bcd4628ab1922f8e00826f645120 | |
parent | e29dc42309fbe3f4c4d6c3b0a0adac9cba7e8974 (diff) | |
download | meta-xilinx-861c02a8b3e8f72667979bce88f6537335888d48.tar.gz |
dt-processor.sh: Redirect MACHINEOVERRIDES to conf file
Redirect MACHINEOVERRIDES to conf file.
Signed-off-by: Raju Kumar Pothuraju <rajukumar.pothuraju@amd.com>
Signed-off-by: Mark Hatle <mark.hatle@amd.com>
-rwxr-xr-x | meta-xilinx-standalone-experimental/recipes-core/meta/files/dt-processor.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/meta-xilinx-standalone-experimental/recipes-core/meta/files/dt-processor.sh b/meta-xilinx-standalone-experimental/recipes-core/meta/files/dt-processor.sh index 9a76ad97..1c754689 100755 --- a/meta-xilinx-standalone-experimental/recipes-core/meta/files/dt-processor.sh +++ b/meta-xilinx-standalone-experimental/recipes-core/meta/files/dt-processor.sh | |||
@@ -886,7 +886,10 @@ MACHINEOVERRIDES =. "\${@['', '${mach_conf}:']['${mach_conf}' != '\${MACHINE}']} | |||
886 | EOF | 886 | EOF |
887 | 887 | ||
888 | if [ -n "${overrides}" ]; then | 888 | if [ -n "${overrides}" ]; then |
889 | echo "MACHINEOVERRIDES .= \":${overrides}\"" | 889 | cat <<EOF >>"${conf_file}" |
890 | MACHINEOVERRIDES .= ":${overrides}" | ||
891 | |||
892 | EOF | ||
890 | fi | 893 | fi |
891 | 894 | ||
892 | if [ "${machine}" == "zynqmp" ]; then | 895 | if [ "${machine}" == "zynqmp" ]; then |