Pieter Smith | 80ba935 | 2017-03-28 21:35:37 +0200 | [diff] [blame] | 1 | image 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 | |||||
17 | image 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 | } |