1images { 2 bootldr { 3 offset 0 4 filename /data/bootldr.bin 5 type raw 6 } 7 8 boot { 9 partition boot 10 filename /data/boot.img 11 type raw 12 } 13 14 system { 15 partition system 16 filename /data/system.img 17 type raw 18 } 19 20 data { 21 partition data 22 filename /data/userdata.img 23 type raw 24 } 25 26 cache { 27 partition cache 28 mkfs ext3 29 } 30 31 third_party { 32 partition third_party 33 mkfs ext3 34 } 35 36## TODO: Add the support for this later? 37# system { 38# partition system 39# filename /data/system.tar.gz 40# type targz 41# mkfs ext3 42# } 43} 44