summaryrefslogtreecommitdiff
path: root/installer.conf
blob: acdd7a2c77de03db636961bfbd89b49a1a2c9a22 (plain)
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
images {
    bootldr {
        offset 0
        filename /data/bootldr.bin
        type raw
    }

    boot {
        partition boot
        filename /data/boot.img
        type raw
    }

    system {
        partition system
        filename /data/system.img
        type ext2
        flags resize,addjournal
    }

    data {
        partition data
        filename /data/userdata.img
        type ext2
        flags resize,addjournal
    }

    cache {
        partition cache
        mkfs ext3
    }

    third_party {
        partition third_party
        mkfs ext3
    }

## TODO: Add the support for this later?
#    system {
#        partition system
#        filename /data/system.tar.gz
#        type targz
#        mkfs ext3
#    }
}