mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-18 17:23:09 +00:00
23b96e920b
Add support for writing symbols and determining the assumed position of binaries inside a mkimage image. This is useful as an example for other entry types which might want to do the same thing. Signed-off-by: Simon Glass <sjg@chromium.org>
27 lines
272 B
Text
27 lines
272 B
Text
// SPDX-License-Identifier: GPL-2.0+
|
|
|
|
/dts-v1/;
|
|
|
|
/ {
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
|
|
binman {
|
|
u-boot-dtb {
|
|
};
|
|
|
|
mkimage {
|
|
args = "-n test -T script";
|
|
|
|
u-boot-spl {
|
|
};
|
|
|
|
u-boot-spl2 {
|
|
type = "u-boot-spl";
|
|
};
|
|
};
|
|
|
|
u-boot {
|
|
};
|
|
};
|
|
};
|