]> Git Repo - buildroot-mgba.git/blob - board/lego/ev3/genimage.cfg
board/lego/ev3: update to 4.14 kernel and 2017.11 U-Boot
[buildroot-mgba.git] / board / lego / ev3 / genimage.cfg
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.da850-lego-ev3"
23                 size = 4M
24                 offset = 0x50000
25         }
26         partition rootfs {
27                 image = "rootfs.squashfs"
28                 size = 10M
29                 offset = 0x450000
30         }
31 }
32
33 # The SD card image
34
35 image boot.vfat {
36         vfat {
37                 file uImage {
38                         image = "uImage.da850-lego-ev3"
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 }
This page took 0.02921 seconds and 4 git commands to generate.