Skip to content

Instantly share code, notes, and snippets.

@larsr
Created December 10, 2012 08:49
Show Gist options
  • Save larsr/4249394 to your computer and use it in GitHub Desktop.
Save larsr/4249394 to your computer and use it in GitHub Desktop.
dtb for chromebook303 kernel
/dts-v1/;
/ {
description = "Chrome OS kernel image with one or more FDT blobs";
#address-cells = <1>;
images {
kernel@1 {
data = /incbin/("/home/larsr/build/arch/arm/boot/zImage");
type = "kernel_noload";
arch = "arm";
os = "linux";
compression = "none";
load = <0>;
entry = <0>;
};
fdt@1 {
description = "exynos5250-daisy.dtb";
data = /incbin/("/home/larsr/build/arch/arm/boot/exynos5250-daisy.dtb");
type = "flat_dt";
arch = "arm";
compression = "none";
hash@1 {
algo = "sha1";
};
};
fdt@2 {
description = "exynos5250-smdk5250.dtb";
data = /incbin/("/home/larsr/build/arch/arm/boot/exynos5250-smdk5250.dtb");
type = "flat_dt";
arch = "arm";
compression = "none";
hash@1 {
algo = "sha1";
};
};
fdt@3 {
description = "exynos5250-snow.dtb";
data = /incbin/("/home/larsr/build/arch/arm/boot/exynos5250-snow.dtb");
type = "flat_dt";
arch = "arm";
compression = "none";
hash@1 {
algo = "sha1";
};
};
fdt@4 {
description = "exynos5250-spring.dtb";
data = /incbin/("/home/larsr/build/arch/arm/boot/exynos5250-spring.dtb");
type = "flat_dt";
arch = "arm";
compression = "none";
hash@1 {
algo = "sha1";
};
};
};
configurations {
default = "conf@1";
conf@1 {
kernel = "kernel@1";
fdt = "fdt@1";
};
conf@2 {
kernel = "kernel@1";
fdt = "fdt@2";
};
conf@3 {
kernel = "kernel@1";
fdt = "fdt@3";
};
conf@4 {
kernel = "kernel@1";
fdt = "fdt@4";
};
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment