]> Git Repo - buildroot-mgba.git/blob - board/beaglebone/genimage.cfg
package/paxtest: update the patches to be applied with fuzz 0
[buildroot-mgba.git] / board / beaglebone / genimage.cfg
1 image boot.vfat {
2         vfat {
3                 files = {
4                         "MLO",
5                         "u-boot.img",
6                         "zImage",
7                         "uEnv.txt",
8                         "am335x-evm.dtb",
9                         "am335x-evmsk.dtb",
10                         "am335x-bone.dtb",
11                         "am335x-boneblack.dtb",
12                         "am335x-bonegreen.dtb",
13                         "am335x-boneblack-wireless.dtb",
14                         "am335x-bonegreen-wireless.dtb",
15                         "extlinux"
16                 }
17         }
18
19         size = 16M
20 }
21
22 image sdcard.img {
23         hdimage {
24         }
25
26         partition u-boot {
27                 partition-type = 0xC
28                 bootable = "true"
29                 image = "boot.vfat"
30         }
31
32         partition rootfs {
33                 partition-type = 0x83
34                 image = "rootfs.ext4"
35                 size = 512M
36         }
37 }
This page took 0.030868 seconds and 4 git commands to generate.