From 42325e59c81bf8892280d6da0831df314ae4663c Mon Sep 17 00:00:00 2001 From: Kevin Mihelich Date: Tue, 8 Aug 2017 18:43:03 -0600 Subject: [PATCH 3/4] rockchip: mickey: Add a .its file for chromium --- doc/chromium/chromebit_mickey.its | 42 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 doc/chromium/chromebit_mickey.its diff --git a/doc/chromium/chromebit_mickey.its b/doc/chromium/chromebit_mickey.its new file mode 100644 index 0000000000..44174a5edd --- /dev/null +++ b/doc/chromium/chromebit_mickey.its @@ -0,0 +1,42 @@ +/dts-v1/; + +/ { + description = "U-Boot mainline"; + #address-cells = <1>; + + images { + kernel@1 { + description = "U-Boot mainline"; + type = "kernel_noload"; + arch = "arm"; + os = "linux"; + data = /incbin/("../../b/chromebit_mickey/u-boot.bin"); + compression = "none"; + load = <0>; + entry = <0>; + hash@2 { + algo = "sha1"; + }; + }; + + fdt@1{ + description = "rk3288-veyron-mickey.dtb"; + data = /incbin/("../../b/chromebit_mickey/u-boot.dtb"); + type = "flat_dt"; + arch = "arm"; + compression = "none"; + hash@1{ + algo = "sha1"; + }; + }; + }; + + configurations { + default = "config@1"; + config@1 { + description = "Boot U-Boot"; + kernel = "kernel@1"; + fdt = "fdt@1"; + }; + }; +}; -- 2.14.1