sign-images.its 750 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /dts-v1/;
  2. / {
  3. description = "Chrome OS kernel image with one or more FDT blobs";
  4. #address-cells = <1>;
  5. images {
  6. kernel {
  7. data = /incbin/("test-kernel.bin");
  8. type = "kernel_noload";
  9. arch = "sandbox";
  10. os = "linux";
  11. compression = "none";
  12. load = <0x4>;
  13. entry = <0x8>;
  14. kernel-version = <1>;
  15. signature {
  16. algo = "sha1,rsa2048";
  17. key-name-hint = "dev";
  18. };
  19. };
  20. fdt-1 {
  21. description = "snow";
  22. data = /incbin/("sandbox-kernel.dtb");
  23. type = "flat_dt";
  24. arch = "sandbox";
  25. compression = "none";
  26. fdt-version = <1>;
  27. signature {
  28. algo = "sha1,rsa2048";
  29. key-name-hint = "dev";
  30. };
  31. };
  32. };
  33. configurations {
  34. default = "conf-1";
  35. conf-1 {
  36. kernel = "kernel";
  37. fdt = "fdt-1";
  38. };
  39. };
  40. };