mesa3d-headers: fix installation of dri.pc
[buildroot-gz.git] / board / roseapplepi / genimage.cfg
blob4d40e65bba2f1c4e9e6b09cd88de29c7a440674c
1 # Minimal SD card image for the Roseapple Pi
3 image boot.vfat {
4         vfat {
5                 files = {
6                      "uEnv.txt",
7                      "uImage"
8                 }
9                 file kernel.dtb {
10                      image = "actduino_bubble_gum_sdboot_linux.dtb"
11                 }
12         }
13         size = 10M
16 image sdcard.img {
17         hdimage {
18         }
20         partition s500-bootloader {
21                 in-partition-table = "no"
22                 image = "s500-bootloader.bin"
23                 offset = 0x200200
24         }
26         partition u-boot {
27                 in-partition-table = "no"
28                 image = "u-boot-dtb.img"
29                 offset = 0x300000
30         }
32         partition boot {
33                 partition-type = 0xC
34                 bootable = "true"
35                 image = "boot.vfat"
36         }
38         partition rootfs {
39                 partition-type = 0x83
40                 image = "rootfs.ext4"
41                 size = 512M
42         }