sign-configs.its 783 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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 = "lzo";
  12. load = <0x4>;
  13. entry = <0x8>;
  14. kernel-version = <1>;
  15. hash-1 {
  16. algo = "sha1";
  17. };
  18. };
  19. fdt-1 {
  20. description = "snow";
  21. data = /incbin/("sandbox-kernel.dtb");
  22. type = "flat_dt";
  23. arch = "sandbox";
  24. compression = "none";
  25. fdt-version = <1>;
  26. hash-1 {
  27. algo = "sha1";
  28. };
  29. };
  30. };
  31. configurations {
  32. default = "conf-1";
  33. conf-1 {
  34. kernel = "kernel";
  35. fdt = "fdt-1";
  36. signature {
  37. algo = "sha1,rsa2048";
  38. key-name-hint = "dev";
  39. sign-images = "fdt", "kernel";
  40. };
  41. };
  42. };
  43. };