hc
2023-05-26 a23f51ed7a39e452c1037343a84d7db1ca2c5bd7
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# LEGO MINDSTORMS EV3 can boot from a 16MB flash or from a microSD card.
# The U-Boot bootloader from the flash is always used, even when booting
# from a microSD card.
 
# The Flash image
 
flash nor-16M-256 {
   pebsize = 4096
   numpebs = 4096
   minimum-io-unit-size = 256
}
 
image flash.bin {
   flash {
   }
   flashtype = "nor-16M-256"
   partition uboot {
       image = "u-boot.bin"
       size = 320K
   }
   partition uimage {
       image = "uImage.da850-lego-ev3"
       size = 4M
       offset = 0x50000
   }
   partition rootfs {
       image = "rootfs.squashfs"
       size = 10M
       offset = 0x450000
   }
}
 
# The SD card image
 
image boot.vfat {
   vfat {
       file uImage {
           image = "uImage.da850-lego-ev3"
       }
   }
   size = 16M
}
 
image sdcard.img {
   hdimage {
   }
   partition boot {
       partition-type = 0xC
       bootable = "true"
       image = "boot.vfat"
       offset = 4M
   }
   partition rootfs {
       partition-type = 0x83
       image = "rootfs.ext2"
   }
}