blob: a1cb8c9d9e9bcc93cf81091f6097bddb1fd03cd0 [file] [log] [blame]
Pieter Smith80ba9352017-03-28 21:35:37 +02001image boot.vfat {
2 vfat {
3 file MLO {
4 image = "barebox-am33xx-beaglebone-mlo.img"
5 }
6 file barebox.bin {
7 image = "barebox-am33xx-beaglebone.img"
8 }
9 files = {
10 "barebox.env",
Jan Kundrátd0af3ae2017-03-31 14:49:09 +020011 "czechlight-bbb.dtb",
Pieter Smith80ba9352017-03-28 21:35:37 +020012 "zImage"
13 }
14 }
15 size = 32M
16}
17
18image sdcard.img {
19 hdimage {
20 }
21
22 partition boot {
23 partition-type = 0xC
24 in-partition-table = "yes"
25 bootable = "true"
26 image = "boot.vfat"
27 }
28
29 partition rootfs {
30 partition-type = 0x83
31 image = "rootfs.ext4"
32 }
33}