mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-08 06:04:34 +00:00
870a9ead56
At present binman only supports resolving symbols in the same section as the binary that uses it. This is quite limited because we often need to group entries into different sections. Enhance the algorithm to search the entire image for symbols. Signed-off-by: Simon Glass <sjg@chromium.org>
22 lines
221 B
Text
22 lines
221 B
Text
/dts-v1/;
|
|
|
|
/ {
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
|
|
binman {
|
|
section {
|
|
pad-byte = <0xff>;
|
|
u-boot-spl {
|
|
};
|
|
|
|
u-boot {
|
|
offset = <24>;
|
|
};
|
|
};
|
|
|
|
u-boot-spl2 {
|
|
type = "u-boot-spl";
|
|
};
|
|
};
|
|
};
|