blob: 7509f501ec8687b711a467f0e65256f40cc522b6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
image beaglebone-boot.vfat {
vfat {
file MLO { image = "barebox-am33xx-beaglebone-mlo.img"}
file barebox.bin { image = "barebox-am33xx-beaglebone.img" }
}
size = 32M
}
image @IMAGE@ {
hdimage {
align = 1M
partition-table-type = hybrid
}
partition boot {
image = beaglebone-boot.vfat
partition-type = 0xc
partition-type-uuid = F
bootable = true
}
partition root-A {
image = root.ext2
partition-type-uuid = 69dad710-2ce4-4e3c-b16c-21a1d49abed3 # root-arm
}
partition root-B {
image = root.ext2
partition-type-uuid = 69dad710-2ce4-4e3c-b16c-21a1d49abed3 # root-arm
}
partition data {
size = 512M
}
}
/* vim: set tabstop=8 noexpandtab : */
|