janus-gateway: make echo test plugin optional
[buildroot-gz.git] / board / wandboard / genimage.cfg
blobb23a91b0b80471a9fa86c9368ed1fd521969089c
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 (Ext4 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 rootfs {
27     partition-type = 0x83
28     image = "rootfs.ext4"
29     size = 512M
30   }