core/pkg-kconfig: handle generated defconfigs
[buildroot-gz.git] / board / wandboard / genimage.cfg
blobf5df1ff8837569a1df8711f981d3928e75144683
1 # Minimal SD card image for the Wandboard
3 # The SD card must have at least 1 MB free at the beginning.
4 # U-Boot and its environment are dumped as is.
5 # A single root filesystem partition is required (Ext2 in this case).
7 # For details about the layout, see:
8 # http://wiki.wandboard.org/index.php/Boot-process
10 image sdcard.img {
11   hdimage {
12   }
14   partition spl {
15     in-partition-table = "no"
16     image = "SPL"
17     offset = 1024
18   }
20   partition u-boot {
21     in-partition-table = "no"
22     image = "u-boot.img"
23     offset = 70656
24   }
26   partition u-boot-env {
27     in-partition-table = "no"
28     image = "uboot-env.bin"
29     offset = 393216
30     size = 8192
31   }
33   partition rootfs {
34     partition-type = 0x83
35     image = "rootfs.ext2"
36     size = 512M
37   }