mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-04-18 12:13:42 +02:00
https://www.kernel.org kernel for chromebooks, SBCs and lean machines with small resources
51 lines
1.2 KiB
Plaintext
51 lines
1.2 KiB
Plaintext
/dts-v1/;
|
|
|
|
/ {
|
|
description = "Chrome OS kernel image with one or more FDT blobs";
|
|
images {
|
|
kernel{
|
|
description = "kernel";
|
|
data = /incbin/("arch/arm/boot/Image");
|
|
type = "kernel_noload";
|
|
arch = "arm";
|
|
os = "linux";
|
|
compression = "lz4";
|
|
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";
|
|
};
|
|
};
|
|
};
|
|
configurations {
|
|
conf-peach-pi {
|
|
kernel = "kernel";
|
|
fdt = "fdt-peach-pi";
|
|
};
|
|
conf-peach-pit {
|
|
kernel = "kernel";
|
|
fdt = "fdt-peach-pit";
|
|
};
|
|
};
|
|
};
|
|
|
|
|