添加构建Allwinner H616四核2GB RAM SoC WiFi(蓝莓)
This commit is contained in:
120
config/its/marvell/a37xx/espressobin.its
Normal file
120
config/its/marvell/a37xx/espressobin.its
Normal file
@@ -0,0 +1,120 @@
|
||||
/dts-v1/;
|
||||
|
||||
/ {
|
||||
description = "EspressoBIN 3720 FIT Image";
|
||||
#address-cells = <1>;
|
||||
|
||||
images {
|
||||
kernel {
|
||||
description = "Vanilla Linux kernel";
|
||||
data = /incbin/("/boot/vmlinuz-$(uname -r)");
|
||||
type = "kernel";
|
||||
arch = "arm64";
|
||||
os = "linux";
|
||||
compression = "none";
|
||||
load = <0x07000000>;
|
||||
entry = <0x07000000>;
|
||||
hash {
|
||||
algo = "sha1";
|
||||
};
|
||||
};
|
||||
ramdisk {
|
||||
description = "Boot ramdisk";
|
||||
data = /incbin/("/boot/initrd.img-$(uname -r)");
|
||||
type = "ramdisk";
|
||||
arch = "arm64";
|
||||
os = "linux";
|
||||
hash {
|
||||
algo = "sha1";
|
||||
};
|
||||
};
|
||||
fdtv5 {
|
||||
description = "Flattened Device Tree ebinv5";
|
||||
data = /incbin/("/boot/dtb/marvell/armada-3720-espressobin.dtb");
|
||||
type = "flat_dt";
|
||||
arch = "arm64";
|
||||
compression = "none";
|
||||
load = <0x06f00000>;
|
||||
entry = <0x06f00000>;
|
||||
hash {
|
||||
algo = "sha1";
|
||||
};
|
||||
};
|
||||
fdtv7 {
|
||||
description = "Flattened Device Tree ebinv7";
|
||||
data = /incbin/("/boot/dtb/marvell/armada-3720-espressobin-v7.dtb");
|
||||
type = "flat_dt";
|
||||
arch = "arm64";
|
||||
compression = "none";
|
||||
load = <0x06f00000>;
|
||||
entry = <0x06f00000>;
|
||||
hash {
|
||||
algo = "sha1";
|
||||
};
|
||||
};
|
||||
fdtv5-emmc {
|
||||
description = "Flattened Device Tree ebinv5 with eMMC";
|
||||
data = /incbin/("/boot/dtb/marvell/armada-3720-espressobin-emmc.dtb");
|
||||
type = "flat_dt";
|
||||
arch = "arm64";
|
||||
compression = "none";
|
||||
load = <0x06f00000>;
|
||||
entry = <0x06f00000>;
|
||||
hash {
|
||||
algo = "sha1";
|
||||
};
|
||||
};
|
||||
fdtv7-emmc {
|
||||
description = "Flattened Device Tree ebinv7";
|
||||
data = /incbin/("/boot/dtb/marvell/armada-3720-espressobin-v7-emmc.dtb");
|
||||
type = "flat_dt";
|
||||
arch = "arm64";
|
||||
compression = "none";
|
||||
load = <0x06f00000>;
|
||||
entry = <0x06f00000>;
|
||||
hash {
|
||||
algo = "sha1";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
configurations {
|
||||
default = "v5";
|
||||
v5 {
|
||||
description = "Standard Boot ebinv5";
|
||||
kernel = "kernel";
|
||||
ramdisk = "ramdisk";
|
||||
fdt = "fdtv5";
|
||||
hash {
|
||||
algo = "sha1";
|
||||
};
|
||||
};
|
||||
v7 {
|
||||
description = "Standard Boot ebinv7";
|
||||
kernel = "kernel";
|
||||
ramdisk = "ramdisk";
|
||||
fdt = "fdtv7";
|
||||
hash {
|
||||
algo = "sha1";
|
||||
};
|
||||
};
|
||||
v5-emmc {
|
||||
description = "Standard Boot ebinv5 with emmc";
|
||||
kernel = "kernel";
|
||||
ramdisk = "ramdisk";
|
||||
fdt = "fdtv5-emmc";
|
||||
hash {
|
||||
algo = "sha1";
|
||||
};
|
||||
};
|
||||
v7 {
|
||||
description = "Standard Boot ebinv7 with emmc";
|
||||
kernel = "kernel";
|
||||
ramdisk = "ramdisk";
|
||||
fdt = "fdtv7-emmc";
|
||||
hash {
|
||||
algo = "sha1";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
Reference in New Issue
Block a user