Embedded Linux for Zynq 7000 / ZU+. Boot image part2. Buildroot for Zynq 7000 / Zynq Ultrascale+

แชร์
ฝัง
  • เผยแพร่เมื่อ 18 ก.ย. 2024
  • Embedded Linux for Zynq 7000 / Zynq Ultrascale+: system software and application development. Building Linux Image for Zynq by using Buildroot tool.
    LinkedIn: / aleksei-rostov
    E-mail: aleksei.rostov@protonmail.com

ความคิดเห็น • 6

  • @arzamas1988
    @arzamas1988 3 ปีที่แล้ว

    Музыку бы по тише. А так норм. Спасибо! )

  • @BOBRAPHTONEAFWATA
    @BOBRAPHTONEAFWATA 2 ปีที่แล้ว

    Great tutorial Aleksei . where are the other tutorials is it paid ? Pls send links

    • @farbius85
      @farbius85  2 ปีที่แล้ว

      Thanks a lot. I'll try to finish the playlist as soon as I have free time

  • @TM-nz6fe
    @TM-nz6fe 2 ปีที่แล้ว

    Great Tutorial Aleksei, is there a chance to get the whole its file, I would need to see your settings regarding the ramdisk part. Thanks.

    • @farbius85
      @farbius85  2 ปีที่แล้ว

      /dts-v1/;
      / {
      description = "Example of 7K image";
      #address-cells = ;
      images {
      kernel-1 {
      description = "Linux Kernel";
      data = /incbin/("./zImage");
      type = "kernel";
      arch = "arm";
      os = "linux";
      compression = "none";
      load = ;
      entry = ;
      hash-1 {
      algo = "sha1";
      };
      };
      fdt-1 {
      description = "Flattened Device Tree blob";
      data = /incbin/("./kernel.dtb");
      type = "flat_dt";
      arch = "arm";
      os = "linux";
      compression = "none";
      hash-1 {
      algo = "sha1";
      };
      };
      ramdisk-1 {
      description = "RAMDisk Image";
      data = /incbin/("./rootfs.cpio.lzma");
      type = "ramdisk";
      arch = "arm";
      os = "linux";
      compression = "lzma";
      load = ;
      entry = ;
      hash-1 {
      algo = "sha1";
      };
      };
      };
      configurations {
      default = "conf-1";
      conf-1 {
      description = "Boot Linux kernel with FDT blob + ramdisk";
      kernel = "kernel-1";
      fdt = "fdt-1";
      ramdisk = "ramdisk-1";
      hash-1 {
      algo = "sha1";
      };
      };
      };
      };

    • @TM-nz6fe
      @TM-nz6fe 2 ปีที่แล้ว +1

      @@farbius85 Thank you!