mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-14 17:07:38 +00:00
2cf78f951b
Define bootscript address in RAM via DT property and remove it from config file. Adding default value to common DTSI. Platform DT description can remove this property or rewrite it. In Zynq case scriptaddr property was defined twice for no reason. Signed-off-by: Michal Simek <michal.simek@amd.com> Link: https://lore.kernel.org/r/d36ffeb00ed8f0ca4bb67d4983d1852d01ade637.1691067102.git.michal.simek@amd.com
17 lines
254 B
Text
17 lines
254 B
Text
// SPDX-License-Identifier: GPL-2.0+ OR MIT
|
|
/*
|
|
* Empty device tree for versal-virt board
|
|
*
|
|
* Copyright 2021 Google LLC
|
|
*/
|
|
|
|
/dts-v1/;
|
|
|
|
/ {
|
|
options {
|
|
u-boot {
|
|
compatible = "u-boot,config";
|
|
bootscr-address = /bits/ 64 <0x20000000>;
|
|
};
|
|
};
|
|
};
|