3139-ls1088ardb-add-ITS-file.patch 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. From caaab508dc2ba749d8394b5934353b1c47f37d75 Mon Sep 17 00:00:00 2001
  2. From: Zhao Qiang <qiang.zhao@nxp.com>
  3. Date: Sun, 9 Oct 2016 15:14:16 +0800
  4. Subject: [PATCH 139/141] ls1088ardb: add ITS file
  5. Signed-off-by: Zhao Qiang <qiang.zhao@nxp.com>
  6. ---
  7. kernel-ls1088a-rdb.its | 55 ++++++++++++++++++++++++++++++++++++++++++++++++
  8. 1 file changed, 55 insertions(+)
  9. create mode 100644 kernel-ls1088a-rdb.its
  10. --- /dev/null
  11. +++ b/kernel-ls1088a-rdb.its
  12. @@ -0,0 +1,55 @@
  13. +/*
  14. + * Copyright (C) 2015, Freescale Semiconductor
  15. + *
  16. + * Raghav Dogra <raghav@freescale.com>
  17. + *
  18. + * This file is licensed under the terms of the GNU General Public
  19. + * License version 2. This program is licensed "as is" without any
  20. + * warranty of any kind, whether express or implied.
  21. + */
  22. +
  23. +/dts-v1/;
  24. +
  25. +/ {
  26. + description = "Simulator Image file for the LS1088A Linux Kernel";
  27. + #address-cells = <1>;
  28. +
  29. + images {
  30. + kernel@1 {
  31. + description = "ARM64 Linux kernel";
  32. + data = /incbin/("./arch/arm64/boot/Image.gz");
  33. + type = "kernel";
  34. + arch = "arm64";
  35. + os = "linux";
  36. + compression = "gzip";
  37. + load = <0x80080000>;
  38. + entry = <0x80080000>;
  39. + };
  40. + fdt@1 {
  41. + description = "Flattened Device Tree blob";
  42. + data = /incbin/("./arch/arm64/boot/dts/freescale/fsl-ls1088a-rdb.dtb");
  43. + type = "flat_dt";
  44. + arch = "arm64";
  45. + compression = "none";
  46. + load = <0x90000000>;
  47. + };
  48. + ramdisk@1 {
  49. + description = "LS2 Ramdisk";
  50. + data = /incbin/("./fsl-image-core-ls1088ardb-be.ext2.gz");
  51. + type = "ramdisk";
  52. + arch = "arm64";
  53. + os = "linux";
  54. + compression = "none";
  55. + };
  56. + };
  57. +
  58. + configurations {
  59. + default = "config@1";
  60. + config@1 {
  61. + description = "Boot Linux kernel";
  62. + kernel = "kernel@1";
  63. + fdt = "fdt@1";
  64. + ramdisk = "ramdisk@1";
  65. + };
  66. + };
  67. +};