mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-17 18:46:36 +02:00
79 lines
2.1 KiB
Plaintext
79 lines
2.1 KiB
Plaintext
/dts-v1/;
|
|
|
|
/ {
|
|
description = "Chrome OS kernel image with one or more FDT blobs";
|
|
images {
|
|
kernel{
|
|
description = "kernel";
|
|
data = /incbin/("arch/arm/boot/zImage");
|
|
type = "kernel_noload";
|
|
arch = "arm";
|
|
os = "linux";
|
|
compression = "none";
|
|
load = <0>;
|
|
entry = <0>;
|
|
};
|
|
|
|
fdt-peach-pi {
|
|
description = "exynos5800-peach-pi.dtb";
|
|
data = /incbin/("arch/arm/boot/dts/samsung/exynos5800-peach-pi.dtb");
|
|
type = "flat_dt";
|
|
arch = "arm";
|
|
compression = "none";
|
|
hash {
|
|
algo = "sha1";
|
|
};
|
|
};
|
|
fdt-peach-pit {
|
|
description = "exynos5420-peach-pit.dtb";
|
|
data = /incbin/("arch/arm/boot/dts/samsung/exynos5420-peach-pit.dtb");
|
|
type = "flat_dt";
|
|
arch = "arm";
|
|
compression = "none";
|
|
hash {
|
|
algo = "sha1";
|
|
};
|
|
};
|
|
fdt-veyron-speedy {
|
|
description = "rk3288-veyron-speedy.dtb";
|
|
data = /incbin/("arch/arm/boot/dts/rockchip/rk3288-veyron-speedy.dtb");
|
|
type = "flat_dt";
|
|
arch = "arm";
|
|
compression = "none";
|
|
hash {
|
|
algo = "sha1";
|
|
};
|
|
};
|
|
fdt-veyron-minnie {
|
|
description = "rk3288-veyron-minnie.dtb";
|
|
data = /incbin/("arch/arm/boot/dts/rockchip/rk3288-veyron-minnie.dtb");
|
|
type = "flat_dt";
|
|
arch = "arm";
|
|
compression = "none";
|
|
hash {
|
|
algo = "sha1";
|
|
};
|
|
};
|
|
};
|
|
configurations {
|
|
conf-peach-pi {
|
|
kernel = "kernel";
|
|
fdt = "fdt-peach-pi";
|
|
};
|
|
conf-peach-pit {
|
|
kernel = "kernel";
|
|
fdt = "fdt-peach-pit";
|
|
};
|
|
conf-veyron-speedy {
|
|
kernel = "kernel";
|
|
fdt = "fdt-veyron-speedy";
|
|
};
|
|
conf-veyron-minnie {
|
|
kernel = "kernel";
|
|
fdt = "fdt-veyron-minnie";
|
|
};
|
|
};
|
|
};
|
|
|
|
|