Jan Kundrát | a6b3f5a | 2020-01-29 19:27:28 +0100 | [diff] [blame^] | 1 | image boot-emmc.vfat { |
Pieter Smith | 80ba935 | 2017-03-28 21:35:37 +0200 | [diff] [blame] | 2 | vfat { |
Pieter Smith | 80ba935 | 2017-03-28 21:35:37 +0200 | [diff] [blame] | 3 | files = { |
Jan Kundrát | 5fb4992 | 2019-08-05 18:27:25 +0200 | [diff] [blame] | 4 | "MLO", |
Jan Kundrát | a6b3f5a | 2020-01-29 19:27:28 +0100 | [diff] [blame^] | 5 | "u-boot.img", |
6 | "rauc.scr" | ||||
Jan Kundrát | 0ed892b | 2019-08-07 14:11:15 +0200 | [diff] [blame] | 7 | } |
Pieter Smith | 80ba935 | 2017-03-28 21:35:37 +0200 | [diff] [blame] | 8 | } |
Jan Kundrát | 5fb4992 | 2019-08-05 18:27:25 +0200 | [diff] [blame] | 9 | size = 8M |
Pieter Smith | 80ba935 | 2017-03-28 21:35:37 +0200 | [diff] [blame] | 10 | } |
11 | |||||
Jan Kundrát | a6b3f5a | 2020-01-29 19:27:28 +0100 | [diff] [blame^] | 12 | image emmc.img { |
Pieter Smith | 80ba935 | 2017-03-28 21:35:37 +0200 | [diff] [blame] | 13 | hdimage { |
14 | } | ||||
15 | |||||
Jan Kundrát | 5fb4992 | 2019-08-05 18:27:25 +0200 | [diff] [blame] | 16 | partition u-boot { |
Pieter Smith | 80ba935 | 2017-03-28 21:35:37 +0200 | [diff] [blame] | 17 | partition-type = 0xC |
Pieter Smith | 80ba935 | 2017-03-28 21:35:37 +0200 | [diff] [blame] | 18 | bootable = "true" |
Jan Kundrát | a6b3f5a | 2020-01-29 19:27:28 +0100 | [diff] [blame^] | 19 | image = "boot-emmc.vfat" |
Pieter Smith | 80ba935 | 2017-03-28 21:35:37 +0200 | [diff] [blame] | 20 | } |
21 | |||||
Jan Kundrát | a6b3f5a | 2020-01-29 19:27:28 +0100 | [diff] [blame^] | 22 | partition rootfs-A { |
Pieter Smith | 80ba935 | 2017-03-28 21:35:37 +0200 | [diff] [blame] | 23 | partition-type = 0x83 |
24 | image = "rootfs.ext4" | ||||
Jan Kundrát | a6b3f5a | 2020-01-29 19:27:28 +0100 | [diff] [blame^] | 25 | size = 1024M |
Pieter Smith | 80ba935 | 2017-03-28 21:35:37 +0200 | [diff] [blame] | 26 | } |
Jan Kundrát | 5fb4992 | 2019-08-05 18:27:25 +0200 | [diff] [blame] | 27 | |
Jan Kundrát | a6b3f5a | 2020-01-29 19:27:28 +0100 | [diff] [blame^] | 28 | partition cfg-A { |
Jan Kundrát | 5fb4992 | 2019-08-05 18:27:25 +0200 | [diff] [blame] | 29 | partition-type = 0x83 |
30 | image = "cfg.ext4" | ||||
Jan Kundrát | a6b3f5a | 2020-01-29 19:27:28 +0100 | [diff] [blame^] | 31 | size = 512M |
32 | } | ||||
33 | |||||
34 | partition rootfs-B { | ||||
35 | partition-type = 0x83 | ||||
36 | image = "rootfs.ext4" | ||||
37 | size = 1024M | ||||
38 | } | ||||
39 | |||||
40 | partition cfg-B { | ||||
41 | partition-type = 0x83 | ||||
42 | image = "cfg.ext4" | ||||
43 | size = 512M | ||||
Jan Kundrát | 5fb4992 | 2019-08-05 18:27:25 +0200 | [diff] [blame] | 44 | } |
Pieter Smith | 80ba935 | 2017-03-28 21:35:37 +0200 | [diff] [blame] | 45 | } |