[Q] how to get mount points ?

Search This thread

mdiaz33685

Senior Member
Feb 20, 2009
1,642
1,070
Tampa, FL
Hello guys !!
I want build my own rom for sm-t210 , I learnt dxdia kitchen , apktool etc .., but I really need good way to get mount points

أرسلت من SM-T210R بإستخدام تاباتلك

The way I get the mounting points is downloading a custom rom... look at the updater script... I used benny..

this is sm-217S.. just noticed u were looking for t210... probably the same... not sure..

format("ext4", "EMMC", "/dev/block/mmcblk0p21", "0");
mount("ext4", "EMMC", "/dev/block/mmcblk0p21", "/system");
mount("ext4", "EMMC", "/dev/block/mmcblk0p22", "/cache");
mount("ext4", "EMMC", "/dev/block/mmcblk0p20", "/data");


assert(package_extract_file("boot.img", "/tmp/boot.img"),
write_raw_image("/tmp/boot.img", "/dev/block/mmcblk0p13"),
delete("/tmp/boot.img"));
 
  • Like
Reactions: aliquzwini

aliquzwini

Senior Member
Jul 22, 2013
234
54
baghdad
myhvgagames.blogspot.com
The way I get the mounting points is downloading a custom rom... look at the updater script... I used benny..

this is sm-217S.. just noticed u were looking for t210... probably the same... not sure..

format("ext4", "EMMC", "/dev/block/mmcblk0p21", "0");
mount("ext4", "EMMC", "/dev/block/mmcblk0p21", "/system");
mount("ext4", "EMMC", "/dev/block/mmcblk0p22", "/cache");
mount("ext4", "EMMC", "/dev/block/mmcblk0p20", "/data");


assert(package_extract_file("boot.img", "/tmp/boot.img"),
write_raw_image("/tmp/boot.img", "/dev/block/mmcblk0p13"),
delete("/tmp/boot.img"));

Good thank you , no not same I noticed different points , anyway it is Awesome way , you can decombile recovery.img, boot.img then look for etc- recovery. Fstb it is included all mounts points , but your way good too and easy :)

أرسلت من SM-T210R بإستخدام تاباتلك
 

Top Liked Posts

  • There are no posts matching your filters.
  • 1
    Hello guys !!
    I want build my own rom for sm-t210 , I learnt dxdia kitchen , apktool etc .., but I really need good way to get mount points

    أرسلت من SM-T210R بإستخدام تاباتلك

    The way I get the mounting points is downloading a custom rom... look at the updater script... I used benny..

    this is sm-217S.. just noticed u were looking for t210... probably the same... not sure..

    format("ext4", "EMMC", "/dev/block/mmcblk0p21", "0");
    mount("ext4", "EMMC", "/dev/block/mmcblk0p21", "/system");
    mount("ext4", "EMMC", "/dev/block/mmcblk0p22", "/cache");
    mount("ext4", "EMMC", "/dev/block/mmcblk0p20", "/data");


    assert(package_extract_file("boot.img", "/tmp/boot.img"),
    write_raw_image("/tmp/boot.img", "/dev/block/mmcblk0p13"),
    delete("/tmp/boot.img"));