Blame view

buildroot/buildroot-2016.08.1/board/via/imx6_vab820/genimage.cfg 685 Bytes
6b13f685e   김민수   BSP 최초 추가
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
  # Minimal SD card image for the VIA VAB-820 / AMOS-820
  #
  # The SD card must have at least 1 MB free at the beginning.
  # U-Boot is added before the filesystem partitions as is.
  # A FAT boot partition and an Ext4 root filesystem partition are required.
  
  image boot.vfat {
    vfat {
      files = {
        "imx6q-vab820.dtb",
        "uImage"
      }
    }
    size = 10M
  }
  
  image sdcard.img {
    hdimage {
    }
  
    partition u-boot {
      in-partition-table = "no"
      image = "u-boot.imx"
      offset = 1024
    }
  
    partition boot {
      partition-type = 0xC
      bootable = "true"
      image = "boot.vfat"
    }
  
    partition rootfs {
      partition-type = 0x83
      image = "rootfs.ext4"
      size = 512M
    }
  }