You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.1 KiB
Plaintext
57 lines
1.1 KiB
Plaintext
1 year ago
|
// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
||
|
/*
|
||
|
* Flattened Image Tree file for BVF
|
||
|
*
|
||
|
* Copyright (C) 2022 Microchip Technology Inc. and its subsidiaries.
|
||
|
* Author: Conor Dooley <conor.dooley@microchip.com>
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
/dts-v1/;
|
||
|
|
||
|
/ {
|
||
|
description = "U-Boot fitImage for the BeagleV-Fire";
|
||
|
#address-cells = <2>;
|
||
|
|
||
|
images {
|
||
|
kernel {
|
||
|
description = "Linux kernel";
|
||
|
data = /incbin/("./Image.gz");
|
||
|
type = "kernel";
|
||
|
arch = "riscv";
|
||
|
os = "linux";
|
||
|
compression = "gzip";
|
||
|
load = <0x80200000>;
|
||
|
entry = <0x80200000>;
|
||
|
hash-1 {
|
||
|
algo = "sha256";
|
||
|
};
|
||
|
};
|
||
|
base_fdt {
|
||
|
description = "Flattened Device Tree blob";
|
||
|
data = /incbin/("./mpfs-beaglev-fire.dtb");
|
||
|
type = "flat_dt";
|
||
|
arch = "riscv";
|
||
|
compression = "none";
|
||
|
load = <0x8a000000>;
|
||
|
hash-1 {
|
||
|
algo = "sha256";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
|
||
|
configurations {
|
||
|
default = "kernel_dtb";
|
||
|
kernel_dtb {
|
||
|
description = "1 Linux kernel, FDT blob";
|
||
|
kernel = "kernel";
|
||
|
fdt = "base_fdt";
|
||
|
};
|
||
|
|
||
|
base_dtb {
|
||
|
description = "Base FDT blob for BeagleV-Fire board";
|
||
|
fdt = "base_fdt";
|
||
|
};
|
||
|
};
|
||
|
};
|