Advertisement
Guest User

Untitled

a guest
Aug 25th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.15 KB | None | 0 0
  1. /dts-v1/;
  2. / {
  3. description = "FIT image with Petitboot Kevin chromebook";
  4. #address-cells = <1>;
  5. images {
  6. kernel@1 {
  7. description = "Linux kernel";
  8. data = /incbin/("./Image-5.2.9.lzma");
  9. type = "kernel";
  10. arch = "arm64";
  11. os = "linux";
  12. compression = "lzma";
  13. load = <0x80008000>;
  14. entry = <0x80008000>;
  15. hash@1 {
  16. algo = "crc32";
  17. };
  18. hash@2 {
  19. algo = "sha1";
  20. };
  21. };
  22. fdt@1 {
  23. description = "FDT";
  24. data = /incbin/("./rk3399-gru-kevin.dtb");
  25. type = "flat_dt";
  26. arch = "arm64";
  27. compression = "none";
  28. hash@1 {
  29. algo = "crc32";
  30. };
  31. hash@2 {
  32. algo = "sha1";
  33. };
  34. };
  35. ramdisk@1 {
  36. description = "petitboot initramfs";
  37. data = /incbin/("./initramfs-stretch-glibc.igz");
  38. type = "ramdisk";
  39. arch = "arm64";
  40. os = "linux";
  41. compression = "lzma";
  42. load = <00000000>;
  43. entry = <00000000>;
  44. hash@1 {
  45. algo = "sha1";
  46. };
  47. };
  48. };
  49. configurations {
  50. default = "conf@1";
  51. conf@1 {
  52. description = "Default boot config";
  53. kernel = "kernel@1";
  54. ramdisk = "ramdisk@1";
  55. fdt = "fdt@1";
  56. };
  57. };
  58. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement