New: XDA launches forum for app developers. Discuss coding, tools, marketing, and more.
XDA Developers Android and Mobile Development Forum
Forgot your password?
 
Post Reply+
Tip us?
 
SilviuMik
Old
#1  
SilviuMik's Avatar
Member - OP
Thanks Meter 44
Posts: 84
Join Date: Nov 2011
Default [Q] Info`s about /dev/block

Hello, can anybody with a rooted Gio point me out to the /dev/block files for /system , /data , /cache ?
For example for GSII is /dev/block/mmcblk0p24 25 26
At us i think it should be something with 12/13/14
I need the correct filenames from our Gio. Only names i don`t actually need the files
Thank u in advance
Device: GT-I9100 Samsung Galaxy SII + Samsung 32GB microSD Card MB-MGBGB Pro Series
ROM: Stock 4.1.2 I9100XWLSW / I9100XXMS2 / I9100XEULS5
Kernel: Stock
Recovery: Stock
Device: GT-S5660 Samsung Galaxy Gio + A-Data MicroSDHC 16GB Class 10
ROM: Stock 2.3.6 S5660XXKTT / S5660XXKTA / S5660OXFKT6
Kernel: Stock
Recovery: Stock
 
JustVass
Old
#2  
Senior Member
Thanks Meter 34
Posts: 104
Join Date: Jan 2012
I have CyanogenMod 7.2 installed with ext4 partition on SD.

Here's what "mount" says on my phone (stripped the mounts for individual apps).
I decided to leave other non-/dev/block entries here, too, just in case
Code:
rootfs on / type rootfs (ro,relatime)
tmpfs on /dev type tmpfs (rw,relatime,mode=755)
devpts on /dev/pts type devpts (rw,relatime,mode=600)
proc on /proc type proc (rw,relatime)
sysfs on /sys type sysfs (rw,relatime)
none on /acct type cgroup (rw,relatime,cpuacct)
tmpfs on /mnt/asec type tmpfs (rw,relatime,mode=755,gid=1000)
tmpfs on /mnt/obb type tmpfs (rw,relatime,mode=755,gid=1000)
none on /dev/cpuctl type cgroup (rw,relatime,cpu)
/dev/block/stl12 on /system type ext4 (ro,noatime,nodiratime,barrier=1,data=ordered,noauto_da_alloc)
/dev/block/stl13 on /data type ext4 (rw,nosuid,nodev,noatime,nodiratime,barrier=1,data=ordered,noauto_da_alloc)
/dev/block/stl14 on /cache type ext4 (rw,nosuid,nodev,noatime,nodiratime,barrier=1,data=ordered,noauto_da_alloc)
/dev/block/mmcblk0p2 on /sd-ext type ext4 (rw,nosuid,nodev,noatime,nodiratime,commit=19,barrier=0,nobh,data=writeback)
/dev/block/mmcblk0p2 on /data/app type ext4 (rw,nosuid,nodev,noatime,nodiratime,commit=19,barrier=0,nobh,data=writeback)
/dev/block/mmcblk0p2 on /data/data type ext4 (rw,nosuid,nodev,noatime,nodiratime,commit=19,barrier=0,nobh,data=writeback)
/dev/block/mmcblk0p2 on /cache/download type ext4 (rw,nosuid,nodev,noatime,nodiratime,commit=19,barrier=0,nobh,data=writeback)
/dev/block/vold/179:1 on /mnt/sdcard type vfat (rw,dirsync,nosuid,nodev,noexec,relatime,uid=1000,gid=1015,fmask=0602,dmask=0602,allow_utime=0020,codepage=cp437,iocharset=iso8859-1,shortname=mixed,utf8,errors=remount-ro)
/dev/block/vold/179:1 on /mnt/secure/asec type vfat (rw,dirsync,nosuid,nodev,noexec,relatime,uid=1000,gid=1015,fmask=0602,dmask=0602,allow_utime=0020,codepage=cp437,iocharset=iso8859-1,shortname=mixed,utf8,errors=remount-ro)
tmpfs on /mnt/sdcard/.android_secure type tmpfs (ro,relatime,size=0k,mode=000)
The Following User Says Thank You to JustVass For This Useful Post: [ Click to Expand ]
 
hsrars-d
Old
#3  
hsrars-d's Avatar
Senior Member
Thanks Meter 188
Posts: 394
Join Date: Nov 2011
Location: In your backyard

 
DONATE TO ME
BML partition layout of the Samsung Galaxy Gio GT-S5660:
bml0: contents of the entire flash
bml1: mibib
bml2: qcsbl
bml3: oemsbl
bml4: amss
bml5: block level representation of /dev/stl5 (efs)
bml6: block level representation of /dev/stl6 (empty)
bml7: arm11boot
bml8: boot image
bml9: recovery image
bml10: unknown
bml11: empty (contains only 0xff bytes)
bml12: block level representation of /dev/stl12 (/system)
bml13: block level representation of /dev/stl13 (/data)
bml14: block level representation of /dev/stl14 (/cache)

STL partition layout of the Samsung Galaxy Gio GT-S5660:
stl5: /efs
stl6: empty partition (contains only 0xff bytes)
stl12: /system
stl13: /data
stl14: /cache

Partition layout used by ODIN (GIO_v1.0.ops):
0,mibib
1,qcsbl
2,oemsbl
3,amss
4,arm11boot
5,boot
6,recovery
7,system
8,data
9,csc
10,

Available partitions according to /proc/partitions:
major minor size device
137 0 513024 bml0/c
137 1 1536 bml1
137 2 512 bml2
137 3 768 bml3
137 4 25600 bml4
137 5 9216 bml5
137 6 5120 bml6
137 7 2048 bml7
137 8 8192 bml8
137 9 8192 bml9
137 10 768 bml10
137 11 6144 bml11
137 12 222464 bml12
137 13 192768 bml13
137 14 29696 bml14
138 12 214784 stl12
138 13 185600 stl13
138 14 25856 stl14

particle.blurringexistence.net/samsung-gt-s5660/partition-layout

Sent from my GT-S5660 using XDA Premium App
i9300 - CM 10.1 Nightlies
The Following User Says Thank You to hsrars-d For This Useful Post: [ Click to Expand ]
 
SilviuMik
Old
#4  
SilviuMik's Avatar
Member - OP
Thanks Meter 44
Posts: 84
Join Date: Nov 2011
Thank u both ! I wanted to try to port DARKSIDE::SUPER::WIPE but it formats in Ext4 and i need in rfs because atm i only use stock rom
Device: GT-I9100 Samsung Galaxy SII + Samsung 32GB microSD Card MB-MGBGB Pro Series
ROM: Stock 4.1.2 I9100XWLSW / I9100XXMS2 / I9100XEULS5
Kernel: Stock
Recovery: Stock
Device: GT-S5660 Samsung Galaxy Gio + A-Data MicroSDHC 16GB Class 10
ROM: Stock 2.3.6 S5660XXKTT / S5660XXKTA / S5660OXFKT6
Kernel: Stock
Recovery: Stock
 
JustVass
Old
#5  
Senior Member
Thanks Meter 34
Posts: 104
Join Date: Jan 2012
Note that my output is from CM which uses ext4, too. No rfs there, sorry
The Following User Says Thank You to JustVass For This Useful Post: [ Click to Expand ]