repo.or.cz
/
buildroot-gz.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Revert "package/libplatform: bump version to 2.1.0"
[buildroot-gz.git]
/
board
/
lego
/
ev3
/
genimage.cfg
blob
6b8546cc7c23f8d5aa7b4fd016e67bad36fc8dac
1
# LEGO MINDSTORMS EV3 can boot from a 16MB flash or from a microSD card.
2
# The U-Boot bootloader from the flash is always used, even when booting
3
# from a microSD card.
4
5
# The Flash image
6
7
flash nor-16M-256 {
8
pebsize = 4096
9
numpebs = 4096
10
minimum-io-unit-size = 256
11
}
12
13
image flash.bin {
14
flash {
15
}
16
flashtype = "nor-16M-256"
17
partition uboot {
18
image = "u-boot.bin"
19
size = 320K
20
}
21
partition uimage {
22
image = "uImage"
23
size = 3M
24
offset = 0x50000
25
}
26
partition rootfs {
27
image = "rootfs.squashfs"
28
size = 9600K
29
offset = 0x350000
30
}
31
}
32
33
# The SD card image
34
35
image boot.vfat {
36
vfat {
37
files = {
38
"uImage"
39
}
40
}
41
size = 16M
42
}
43
44
image sdcard.img {
45
hdimage {
46
}
47
partition boot {
48
partition-type = 0xC
49
bootable = "true"
50
image = "boot.vfat"
51
offset = 4M
52
}
53
partition rootfs {
54
partition-type = 0x83
55
image = "rootfs.ext2"
56
}
57
}