26 lines
394 B
Plaintext
26 lines
394 B
Plaintext
|
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
|
||
|
|
||
|
/dts-v1/;
|
||
|
|
||
|
/ {
|
||
|
description = "OpenWrt bootfs image";
|
||
|
#address-cells = <1>;
|
||
|
|
||
|
images {
|
||
|
kernel {
|
||
|
description = "Linux kernel";
|
||
|
data = /incbin/("${kernel}");
|
||
|
type = "kernel";
|
||
|
os = "linux";
|
||
|
arch = "arm64";
|
||
|
compression = "lzma";
|
||
|
load = <0x80000>;
|
||
|
entry = <0x80000>;
|
||
|
|
||
|
hash-1 {
|
||
|
algo = "sha256";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|