blob: a058ce9a19a069adf37d543d5c9fabe937d3e687 [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",
11 "zImage"
12 }
13 }
14 size = 32M
15}
16
17image sdcard.img {
18 hdimage {
19 }
20
21 partition boot {
22 partition-type = 0xC
23 in-partition-table = "yes"
24 bootable = "true"
25 image = "boot.vfat"
26 }
27
28 partition rootfs {
29 partition-type = 0x83
30 image = "rootfs.ext4"
31 }
32}