Blame view

buildroot/buildroot-2016.08.1/board/wandboard/genimage.cfg 757 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 Wandboard
  #
  # The SD card must have at least 1 MB free at the beginning.
  # U-Boot and its environment are dumped as is.
  # A single root filesystem partition is required (Ext2 in this case).
  #
  # For details about the layout, see:
  # http://wiki.wandboard.org/index.php/Boot-process
  
  image sdcard.img {
    hdimage {
    }
  
    partition spl {
      in-partition-table = "no"
      image = "SPL"
      offset = 1024
    }
  
    partition u-boot {
      in-partition-table = "no"
      image = "u-boot.img"
      offset = 70656
    }
  
    partition u-boot-env {
      in-partition-table = "no"
      image = "uboot-env.bin"
      offset = 393216
      size = 8192
    }
  
    partition rootfs {
      partition-type = 0x83
      image = "rootfs.ext2"
      size = 512M
    }
  }