DUAL BOOT for SGY - Galaxy Y GT-S5360 Android Development

this is still alpha release and not fully tested. the idea based on http://forum.xda-developers.com/showthread.php?t=1155613 but this is diffrent implementation. i successfully boot using stock rom dxlc1 on internal storage and hybrid 2.1 on sdcard.
instalation :
1. flash kenel using odin (or other method for kernel flashing)
2. make 4 partition in your sdcard
1st fat-32 for your data
2nd ext3 for system
3rd ext3 for cache
4th ext3 for data
for testing, i use about 300MB for all ext3 partition
3. edit updater-script
- change /dev/block/stl9 to /dev/block/mmcblk0p2 and the type from rfs to ext3
- change /dev/block/stl10 to /dev/block/mmcblk0p3 and the type from rfs to ext3
- change /dev/block/stl11 to /dev/block/mmcblk0p4 and the type from rfs to ext3
- don't use a2sd
- don't flash boot.img
Click to expand...
Click to collapse
change for hybrid 2.1 rom:
change line
Code:
mount("rfs", "EMMC", "/dev/block/stl19", "/system");
with
Code:
unmount("/system");
mount("ext3", "EMMC", "/dev/block/mmcblk0p2", "/system");
remove line
Code:
package_extract_dir("data", "/data");
remove all line with word "dtinstall"
remove this line
Code:
assert(package_extract_file("boot.img", "/tmp/boot.img"),
write_raw_image("/tmp/boot.img", "boot"),
delete("/tmp/boot.img"));
Click to expand...
Click to collapse
4. install your edited rom as usual (i use cwm)
5. done. if you want boot to sdcard, create empty file named "bootsdcard" in your sdcard 1st partition and reboot
note :
- you can boot using dual rom but not dual kernel (yet). this one is stock kernel, so no init.d (yet)
- it does NOT work with a2sd or link2sd
- like i said it's not fully tested yet. it's only for dev and tester. use with caution
- boot from sdcard is slower compared to internal storage. little bit laggy i think, but still very usable
- if you already tested,please report your result
link:
http://www.mediafire.com/?6zrkh6a872036x7

woah... another great innovation in our device...

This is awesome

will try and report...

sunilvyas said:
will try and report...
Click to expand...
Click to collapse
if you try before install rom to sdcard please check if your sdcard partition is corect (/dev/block/mmcblk0p1 , /dev/block/mmcblk0p2 , /dev/block/mmcblk0p3, /dev/block/mmcblk0p4)
and the filesystem also correct. better using tools in linux. editing updater-script also little bit tricky. i use hybrid because i don't have other custom rom. i also try direct extract from stock rom image but not working (boot loop).

sounds interesting...count me in irfan. repartition my old sdcard atm.

I can't convert the script. dsixda kitchen always add new lines if I convert the script from amend to edify. I can't get rid some lines...how can i do that in better way?
edit: these lines (and some more) always added automatically.
assert(package_extract_file("boot.img", "/tmp/boot.img"),
write_raw_image("/tmp/boot.img", "boot"),
delete("/tmp/boot.img"));

kurotsugi said:
I can't convert the script. dsixda kitchen always add new lines if I convert the script from amend to edify. I can't get rid some lines...how can i do that in better way?
edit: these lines (and some more) always added automatically.
assert(package_extract_file("boot.img", "/tmp/boot.img"),
write_raw_image("/tmp/boot.img", "boot"),
delete("/tmp/boot.img"));
Click to expand...
Click to collapse
i don't know if it is proper way, but i just unzip,edit,and re-zip. i use cwm, not sure if working with stock recovery.
just remove that line. it's for update boot.img
[edit]--
and i know it's tricky to install rom to sdcard. i just need few hour to mod kernel (ramdisk) but almost a day just to find working way to install rom to sdcard

thats a nice discovery. at first I thougt both updater-script and updater-binary are strictly related that we can't recklessly modify only updater-script. modifying it right now...
---------- Post added at 03:49 PM ---------- Previous post was at 02:52 PM ----------
it works...now I can set my internal and system partition to any size (lol) having 300mb internal memory sounds nice for everyone.
edit: make sure you're using a fast sdcard.

ill try this. maybe.

yup...this discovery will help us a lot. I'll edit my post soon.

kurotsugi said:
it works...now I can set my internal and system partition to any size (lol) having 300mb internal memory sounds nice for everyone.
Click to expand...
Click to collapse
just don't forget to leave space for fat-32 partition. it's not funny if you have 500MB for system partition but only 300MB "sdcard" partition
and with minimum works, it is also safe to test alpha/beta rom without messing with your phone. if you got boot loop when you try rom on sdcard, just turn off your phone, eject your sdcard, turn on you phone, insert your sdcard, and delete "bootsdcard" file. your phone will normal again.
just like link2sd or a2sd, if you boot from sdcard, it's better to move you application to phone, not sdcard.
it's just experiment, we still could improve with add ext4 support for ex.

I have 8gb memory card. leave 6gb for fat32 is more than enough for me.
EDIT: this is basic installer script for the rom. it will install the rom in sdcard. they can use this script instead of make one for theirself.
http://www.mediafire.com/download.php?nxgiz0993brp9re

kurotsugi said:
I have 8gb memory card. leave 6gb for fat32 is more than enough for me.
EDIT: this is basic installer script for the rom. it will install the rom in sdcard. they can use this script instead of make one for theirself.
http://www.mediafire.com/download.php?nxgiz0993brp9re
Click to expand...
Click to collapse
at this time,, cant relate buddy.. for newbie like me.. pls make a tutorial for that bro.. great help for us again and more thank can be gain also.. haha... nyc work again buddy

its only contain the installer script to install the rom to sdcard. everything else is the same with previous one.

kentoi me said:
at this time,, cant relate buddy.. for newbie like me.. pls make a tutorial for that bro.. great help for us again and more thank can be gain also.. haha... nyc work again buddy
Click to expand...
Click to collapse
i want to make it easier to follow, but (maybe) different rom have different install script. so i just write general method and one example for hybrid, because i only have that rom in my hard disk and my connection too slow to download other custom rom. if someone with large custom rom collection can upload updater-script from custom rom (updater-script only, not full rom), i can edit it for you. it's located in "META-INF/com/google/android/updater-script" inside your custom rom zip file.
and please, not everybody do something just for thanks meter. someone maybe do it just to make his/her phone better, or just to share, or just to make someone else with more expensive phone jealous

I've already made one irfan. check on my mediafire link.

kurotsugi said:
I've already made one irfan. check on my mediafire link.
Click to expand...
Click to collapse
i did, and thank you for sharing. but different rom need different script, even if usually all updater-script from cutom rom do the same thing, mount, delete, extract, create simlink, chmod file, install a2sd, and install kernel. to install to sdcard only need simple modification, but still need little knowledge about edify.

check this picture. people will get jealous after saw this one (lol)
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
even if your kernel wouldn't support a2sd, it still gives miracles for our device. I have some new idea's to make use this feature. it will be fun

IMHO, why u need to use sdcard partition for cache partition
i think it shouldn't problem, if using internal partition for cache.

Related

[ROM][27/03]iNsertCoinHD DATA++ v03

This ROM is for ADVANCED S-OFF Users. Be aware, you must understand what your doing.
WIKI: http://insertcoin.baadnwz.eu please experienced users and fans bring your contribution to the wiki ..
IRC: irc.freenode.net #baadnwz-roms
The theory
ClassicalDude said:
Premise:
1. Performance degradation with HD roms (and regular ones as well) occur when essential parts of the device's operation are from the sd card, instead of working as much as possible from the internal memory.
2. Deodexed roms render a substantial part of the /system partition into a bloated archive, since no apk or jar file is actually used. Everything is odexed and copied into the dalvik-cache, which leads to -
3. The dalvik-cache of a deodexed rom is much larger than that of an odexed rom. So now we have large portions of the system partition that are not used, and a clogged data partition.
4. So we use a2sd, a2sd+, d2ext or d2we - and essentially, what we get is that almost nothing is being run from the internal memory. What a waste.
Click to expand...
Click to collapse
If this is true, only intensive testing will reveal. So lets give it a shot.
1st things 1st, you need to flash Bravo CM7 Hboot. either from fastboot or from hboot.- goto alpharev.nl site - is there together with all the info how to flash it
Rom Download link:
http://baadnewz.lcdc.sk/InsertCoinDATAplusplus/
Rom is the same as InsertCoin 2.0.0 A2SD+. But edited to fit to 130 nand, you'll need 1 gb ext2/3/4 partition.
P.S. framework folder lies under /system/sd/framework so you CANT flash zips directly from UOT, get the zip unpack it and push the framework-res.apk to /system/sd/framework
(you should know this if your a poweruser)
Free space after 1st boot
/dev/block/mtdblock3 130.0M 114.9M 15.1M 88% /system
/dev/block/mtdblock5 302.6M 93.6M 209.1M 31% /data
Freespace after i restored my apps:
/dev/block/mtdblock3 130.0M 114.9M 15.1M 88% /system
/dev/block/mtdblock5 302.6M 187.4M 115.2M 62% /data
Changelog:
27.03 UPDATE - new kernel
http://baadnewz.lcdc.sk/Desire_HD_B.../kernel-bravo-2.6.32.36-insertcoin-110327.zip
Changes in -110327:
* Usb/gadget code backports
* Updates from Google/CAF (fb, gpu)
* Upstream Linux update (2.6.32.36)
Changes in -110324:
Updates/fixes from HTC (usb/gadget/msm72k_udc, video/msm/mdp_ppp, binder, lowmemorykiller, serial/msm_serial_hs_bcm, atmega_microp)
Updates from Google/CAF (ashmem, cgroup, cpufreq, lowmemorykiller, evdev, gpu)
Linux update from upstream (2.6.32.35)
Extended CPU Vdd levels sysfs interface (vdd_min, vdd_max, vdd_step for scripting/frontend purposes)
Callrec support (avs333) included by default
19.03 - new kernel
http://baadnewz.lcdc.sk/Desire_HD_B.../kernel-bravo-2.6.32.33-insertcoin-110319.zip
flash from recovery, fixed slow charging bug - credits snq-
v03
- changed where market downloads, now it wont touch ur sdcard, you dont need a download folder - credits coolexe.
P.S. if you are brave enough ill just upload the boot.img, fastboot flash it on v02 and ur done (fastboot flash boot boot.img)
v02
- added powernotification widget
- changed battery icon to honeycomb
- updated busybox to 1.19
- FIXED MARKET DOWNLOADS (you must have a download folder on /sdcard)
just downloaded angry birds from market 16 mB .. all fine - again thanks alot to coolexe
v01
- initial release
If you want to show your appreciation click the button below
​
Thanks to the following developers (not in a specific order)
robocik, snq-, ownhere, coutts, melethron, Leedroid, Sub501, NeoPhyTe.x360, coolexe, sibere, droidzone, ClassicalDude, AlphaRev Team and all others who contributed somehow to Desire community.
Thanks to Donors:
stoeckler kookysan rexypow lcdc Mr_Kruz shatdhehat dongerado shadeofblue golightlygl yordaniy latawa 2 times Decibelnet dimcus ozjubb faceN D3n1s Karukera Tsuneku kingqueen trikpa KuliX pjm77 kartoffel1212 gajow Broquen FiremakerP SpeedyCarv Yod-b kizuodoko Hardianto photovirus aaargh777 fran_ele Sylaan Mr.Stylo nyunyu, Anakha56, malachay, Octosi, pasteyface, wboevink, odl, puneet_si Merchandraies, sandreiutz, sudkcoce, pexon, aleksb, tinky1, Odinbear, neoghio, 5om
Plus the ones who didnt want to be mentioned here.
I don't want to be misunderstood, I don't have a problem with noobs, we all were noobs once. But i mentioned this before, since you are flashing a hboot, if you are not an advanced user stay away. or 1st understand what you are doing, don't just follow steps and copy/ paste. And please, don't spam this thread with question like "how do i go back to stock hboot" "what addons are working" "why my uot update zip didn't work". If you have some basic knowledge of how an update.zip works you know what wrong.
reserved. 10char
We use the data Partition for Cache and Apps and the sdext for other data or system files ?
With the old scripts we do not really use the Data partition? I understand it right?
Sry for my bad english.... i need further infromation but it looks very good!
Downloading right now.
xtcislove said:
We use the data Partition for Cache and Apps and the sdext for other data or system files ?
With the old scripts we do not really use the Data partition? I understand it right?
Sry for my bad english.... i need further infromation but it looks very good!
Downloading right now.
Click to expand...
Click to collapse
Applications and system framework files don't run from jar or apk files. They run from odex files within the Dalvik Cache. So placing the Dalvik Cache on the sd card causes performance degradation, and keeping these jar and apk files in the internal memory is a waste of space.
In this method, we try to keep in the internal memory only the files the phone actually uses during its runtime, and move to the sd card all the archive files that are not in use.
Quadrant tests will probably not reveal an improved performance. They don't test for what we have done. But the user experience is much, much better.
Complete explanation: http://forum.xda-developers.com/showthread.php?t=992176
ClassicalDude said:
Applications and system framework files don't run from jar or apk files. They run from odex files within the Dalvik Cache. So placing the Dalvik Cache on the sd card causes performance degradation, and keeping these jar and apk files in the internal memory is a waste of space.
In this method, we try to keep in the internal memory only the files the phone actually uses during its runtime, and move to the sd card all the archive files that are not in use.
Quadrant tests will probably not reveal an improved performance. They don't test for what we have done. But the user experience is much, much better.
Complete explanation: http://forum.xda-developers.com/showthread.php?t=992176
Click to expand...
Click to collapse
Many thanks!
This was my Idea after reading this (but bad english [writing])
Quadrant Scores are not very itresting.... User Experience counts more.... I take a look now ;-) Few minutes and i can give a little feedback ;-)
awolbriggy said:
I am assuming this means the black out is over... This seems like an excellent direction to be heading, and the logic sounds sound! It is bed time on my side of the world, but I will definitely be testing this one out in the morning (or once i can slack off at work...)
For people who struggle with running commands, there is a windows app for flashing hboots/recoverys - fast boot commander which is a fairly easy way to proceed...
Big thanks to baadnewz (and co) for being so prolific in work of late.... keeps us compulsive rom swappers happy...
Click to expand...
Click to collapse
i still dont have a working pc @ home. cooked this @ work
are market download working for you ?
Works fine for now, market download works too!
baadnewz said:
are market download working for you ?
Click to expand...
Click to collapse
Just got a "not enough space" message while restoring my Apps from Market. Maybe to many downloads at once.
zomfgitsDace said:
Just got a "not enough space" message while restoring my Apps from Market. Maybe to many downloads at once.
Click to expand...
Click to collapse
That's the one problem with a tiny cache partition. You cannot have too many market downloads at once, and you cannot flash a new radio with a zip file. I sent a message to the wonderful people at alpharev, asking for a new partition layout. If this type of rom gains traction, they will probably accommodate us.
Device booted very fast And market is working.
Very responsive.
tomcat84 said:
Are market downloads saved to the cache partition?
What about market apps that are like 40 MB large?
Or did I get that wrong?
Click to expand...
Click to collapse
don't worry. coolexe helped with a workaround, now im testing the new full rom and will upload a new version
upload completed for some time enjoy
Here is PowerControl and Green Ginger Battery Mod for this ROM
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Download
These toggles are available
Edit before start widget.txt if you want your power control.
toggleAirplane
toggleAutoRotate
toggleBluetooth
toggleBrightness
toggleFlashlight
toggleGPS
toggleLockScreen
toggleMobileData
toggleScreenTimeout
toggleSleepMode
toggleSound
toggleSync
toggleWifi
toggleWimax
Installation:
1- Copy "greenginger-insertcoin" folder to your sdcard
2- Reboot Recovery (i use Clockworkmod)
mount system
mount sdcard
mount sd-ext
3- Open cmd
cd C:/yoursdkfolder/tools
Code:
adb shell
cp /sdcard/greenginger-insertcoin/framework/framework-res.apk /sd-ext/framework_s/framework-res.apk
cp /sdcard/greenginger-insertcoin/framework/framework.jar /sd-ext/framework_s/framework.jar
cp /sdcard/greenginger-insertcoin/framework/services.jar /sd-ext/framework_s/services.jar
cp /sdcard/greenginger-insertcoin/app/PowerControlSettings.apk /sd-ext/app_s/PowerControlSettings.apk
cp /sdcard/greenginger-insertcoin/app/PCSCII.apk /sd-ext/app_s/PCSCII.apk
cp /sdcard/greenginger-insertcoin/customize/notification_config.txt /system/customize/notification_config.txt
cp /sdcard/greenginger-insertcoin/customize/widget.txt /system/customize/widget.txt
exit
adb reboot
4- Reboot your Desire
Enjoy!
Credits: GingerCarbon Mod by Krzysiec and me (installation)
MrLuje said:
Any feedback on the responsiveness between this ROM and the "classic" iNsertCoinHD a2sd?
I'm going to flash it after work
@proxuser : what is PCSCII.apk used for ?
Click to expand...
Click to collapse
PCSCII.apk is the USB connection stuff, the menu you see after usb connection.
Rom is still deodexed...coz we can't customized odexed files...
janikjan said:
Hi, is this ROM still deodexed or not? From yout first post I understood, that odexed rom has lower dalvik-cache than deodexed one. Thanks
Sent from my HTC Desire using XDA Premium App
Click to expand...
Click to collapse
Sent From Nokia 1100...!!!
i can odex files, but then using themes is a big nono
baadnewz said:
i can odex files, but then using themes is a big nono
Click to expand...
Click to collapse
If there are any improvements with odexing the ROM. You should do it! Unodexing is very easy!
This ROM is great so far. Your new script is great! It RUNßs a huge smoother as with Data2ext! Many thanks! Ive got this idea, too But no skills ^^
Hum, just flashed hboot cm7 and rom InsertCoinDATAplusplusv02
df -h
Filesystem Size Used Available Use% Mounted on
tmpfs 203.2M 0 203.2M 0% /dev
/dev/block/mtdblock4 5.0M 852.0K 4.2M 17% /cache
/dev/block/mmcblk0p1 6.2G 4.9G 1.3G 79% /sdcard
/dev/block/mtdblock3 130.0M 31.0M 99.0M 24% /system
/dev/block/mmcblk0p2 1.1G 164.2M 943.8M 15% /sd-ext
/dev/block/mtdblock5 302.6M 15.6M 287.0M 5% /data
Click to expand...
Click to collapse
and I got this from logcat (while on bootscreen)
link_image[1995]: failed to link /system/bin/sh
CANNOT LINK EXECUTABLE
Click to expand...
Click to collapse
Any hints?
Edit : Flashed InsertCoinDATAplusplusv02 again and it worked, this time
MrLuje said:
Hum, just flashed hboot cm7 and rom InsertCoinDATAplusplusv02
and I got this from logcat (while on bootscreen)
Any hints?
Edit : Flashed InsertCoinDATAplusplusv02 again and it worked, this time
Click to expand...
Click to collapse
Same Problem here! just wipe and reflash always solve bootlops on InsertCoin ROM´s ;-) perfect and best rom =)
Edit: ROM is so responsive and quick! So great!

[MOD]Interactive Data2sd + [04-25-11 update]

INTERACTIVE DATA2SD MOD
There are a lot of ways of moving /data to SD ext(2nd) partition. Here I'll show you an easy way to do it which is fully compatible with Optimus One(and possibly other devices as well). If you don't like the method used here, try other Data2SD/ext mod which may suit your needs, but please, don't hesitate to post your feedbacks/comments be it negative or positive (feedbacks/comments are highly appreciated).
The mod, as the title says, moves the whole /data partition to your SDcard's 2nd(ext) partition, which could give you virtually unlimited space to install apps and also boost quadrant scores. I have tested this with EXT2(and can get up to 900+ on quadrant with stagefright off or 2000 with stagefright on, OC'd to 787mhz with I/O score playing around 4000 - 5000+), so if you're using other FileSystems, please do post your feedbacks and possibly your I/O scores as well. I have also enforced an e2fsck on every boot which is useful for ext2 users as this will check and fix your 2nd partition for errors on every boot, if there's any.
Dalvik2cache temporarily unavailable with v4b5. A new version with the option to move dalvik-cache almost anywhere possible is coming up. If you still want to use the dalvik2ram mod, try v1.2(link at the bottom).
Why move dalvik-cache to RAM? Basically, the idea of moving the whole /data partition to SD ext partition is to primarily get more space for installing apps. And in this case, it does perform very well and combined with fast SD cards, it could even provide real-life performance boost. Now the downside to this, is that while most /data contents just get copied and read not that much often, dalvik-cache stores some info that needs to be read and updated very frequently. This results in a high I/O read/write frequency and thus results in shortening of the SD card life(in theory, the same could also be said when left internally but this time dealing damage to the nand disk instead). To counter this, the method I used is to move dalvik-cache to a virtual-disk like partition known as a tmpfs. tmpfs resides in RAM and has dynamic resizing structure which can allocate space depending on your needs. This way, dalvik-cache won't be using any physical disk and therefore causing damage to none. Almost too good to be true right? Well the drawback is, because tmpfs resides in RAM anything written onto it get's lost when rebooted or in-case of power loss thus resulting in loooong boot times(depending on the apps installed), as dalvik-cache contents are being rebuilt on every boot. Well I think that's enough of dalvik-cache and lets start with the mod.
WARNING
USING A NON-APP2SD ROM OR SIMPLY UNINSTALLING APP2SD IS STRICTLY RECOMMENDED
DO NOT EVEN TRY THIS MOD IF YOU HAVE ANY FORM OF APP2SD INSTALLED
ALWAYS PERFORM A BACKUP BEFORE TRYING OUT STUFF LIKE THESE
Disclaimer: I am not responsible for anything bad happening to the world blah blah, you know the drill!
INSTALLATION
An SD card with at least two partitions required.(First partition as FAT32 for regular SD use and second partition as EXT2(EXT3 and EXT4 will be supported on future builds)
1. Download Data2sd_v4b5.zip here!(latest stable build)
2. Flash via recovery
(testers WANTED, preferably using different ROMs.)
Test release can be found here!!!!!
QUADRANT TEST RESULT:
This mod is still on-going and still under development. Although it's already fully functional, some features or options may still be added later-on. Please post your feedbacks and give thanks if you can.
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
To disable DarkTremor's app2sd, just follow these steps
Ungaze_Data2sd_v1_2.zip(archive)
Code:
#Data2Sdext_Dalvik-cache2RAM
#
#By: Ungaze
#
#Credits:
#uncorrupted for original script for a wide variety of devices
#sibere and ownhere for additional resources
#pomka78 for dalvik-RAM script and Idea
#nervgaz, franciscofranco, andy572 and joesephmother for ideas and suggestions.
#all the testers and everyone who provided feedbacks on this mod. Thanks to you guys.
#
Can this be used with mik's CM7 beta6.1 rom ?
TIA
Very nice job! I will try it asap.
Attached the edify signed version (Clockworkmod 3 ). It installs just fine.
@hell1134: I think it should work on any rom that obeys the prerequisites and that are properly explained by ungaze (no apps2SD script installed or if it is something just uninstall in order to try this).
hell1134 said:
Can this be used with mik's CM7 beta6.1 rom ?
TIA
Click to expand...
Click to collapse
Should work with any non-app2SD Optimus One ROM on the fly. Make a backup first.
The script works fine. I tested it on Mik's beta 6.2. The only issue I have seen is with the themes. Even though a theme is selected, it defaults to the System one and since I could not find a way to do a hot reboot I couldn't properly apply my desired theme.
I have the other dalvik cache script running right now. You talk a lot about improving the life of the device/sd and saving space for apps. Is there no performance gains with doing this?
Sent from my LG-P500 using XDA Premium App
Momaro said:
I have the other dalvik cache script running right now. You talk a lot about improving the life of the device/sd and saving space for apps. Is there no performance gains with doing this?
Sent from my LG-P500 using XDA Premium App
Click to expand...
Click to collapse
Personally, I don't find any huge/noticeable gain on any mod I have done with O1 this is because O1 is already super fast as it is, and it's a good thing. But if you're the kind of person who measures performance based on benchmark's, then data2sd will give you huge I/O performance gain(specially in quadrant). On the other hand, dalvik-cache2ram is purely for disk preservation only. Not much gain here.
regarding themes on miks CM7 6.2. I really don't have the slightest idea on what's happening with your themes. Maybe its in the way that CM implements themes? I reallt don't know as themes reside in the /system partition which should not be affected by the scripts that I have made.
I personally haven't seen any performance benefits. Anyway as I think about it the sdcard way is more preferably for me since I would never use one with a lesser class than 6.
@ungaze: Only the default themes (System, Androidian and Cyanbread) are in /system
marioemp2k7 said:
The script works fine. I tested it on Mik's beta 6.2. The only issue I have seen is with the themes. Even though a theme is selected, it defaults to the System one and since I could not find a way to do a hot reboot I couldn't properly apply my desired theme.
Click to expand...
Click to collapse
May be pasting your desired theme to system/app and removing the current default will help. Then even after reboot default will be your drsired theme.
Sent from my LG-P500 using Tapatalk
I don't think it will help me since the question is about T-Mobile Theme Manager settings. I don't know where these are saved but it is pretty obvious that there are not in the right place since everything defaults to the System theme.
Edit: I have managed to make Hot Reboot (Quick Boot Plus) work so now I have the themes working properly since I can restart only the UI.
I will stick to this for now.
one question :: is the phone really fast with data partition on sdcard's ext2 partition ??? anybody using it please give your inputs: Also How do i use this along with darktremor's a2sd ??? i just want data2sd not dlcache2ram
I haven't used ext2 partition but I can tell you about 3 and 4. Theoretically, performance wise ext2 should be as fast as ext4 the only major difference being that the latter is a journaled fs.
In practice you will not see too much difference between the 3 of them on this phone.
I have used mostly ext4 and I am happy with it. Once the phone boots it adds a little waiting time to actually be ready (5-10 secs for me).
For the second part, I don't think it's feasible to use both. Instead you can use the original script by pomka78 and disable darktremor's dalvik script from (a2sd nocache).
sarfaraz1989 said:
is the phone really fast with data partition on sdcard's ext2 partition ???
Click to expand...
Click to collapse
I'd tried app2sd with microSD Class 4 and now I can say that for scheme "[email protected], [email protected]" ext2 is faster than ext3, and ext4 is a waaay faster than ext3. This scheme is very useful and most of the time it is as fast, as "[email protected]" due to Dalvik cache is on nand. The scheme "(data&Dalvik)@Ext" with slow cards is almost useless because of the lags.
But of course it's better to use Class10
marioemp2k7 said:
I haven't used ext2 partition but I can tell you about 3 and 4. Theoretically, performance wise ext2 should be as fast as ext4 the only major difference being that the latter is a journaled fs.
In practice you will not see too much difference between the 3 of them on this phone.
I have used mostly ext4 and I am happy with it. Once the phone boots it adds a little waiting time to actually be ready (5-10 secs for me).
For the second part, I don't think it's feasible to use both. Instead you can use the original script by pomka78 and disable darktremor's dalvik script from (a2sd nocache).
Click to expand...
Click to collapse
Ext2 is the fastest one because of no journalism.
Anyway this script works awesomely good. With a class 4 card my phone flies like it never did and I don't understand how anyone can say that it lags.
how was the quadrant score, cant try it right now, i need to buy new sd card, any brand recomendation?
cmangalos said:
how was the quadrant score, cant try it right now, i need to buy new sd card, any brand recomendation?
Click to expand...
Click to collapse
I can push 2050 in Quadrant Advanced with 3650 for i/o.
Hi, I finally flash a rom with init.d enabled. Now I have franciscofranco scripts. But something went wrong when I flashed Data2SD + Dalvik-cache2RAM...
lerkin said:
Hi, I finally flash a rom with init.d enabled. Now I have franciscofranco scripts. But something went wrong when I flashed Data2SD + Dalvik-cache2RAM...
Click to expand...
Click to collapse
It's written in capital letters
Do you have A2SD script? You need a non-a2sd rom
kite86 said:
It's written in capital letters
Do you have A2SD script? You need a non-a2sd rom
Click to expand...
Click to collapse
Yes I have rom without it.
I installed franciscofranco first, and everything was fine.
After it I flashed that script, android was starting for 5 minutes and after that it hanged up, I removed battery, started again and there were constant force closes of titanium backup, launcherpro and some android processes.
I tried to install only that Data2SD + Dalvik-cache2RAM script on fresh rom. It started, when it hanged on "preparing SD", after restart everything was fine, there was about 400 mb of free rom.
Interesting... Are those two scripts compatible?
if im using darktremors a2sd i need to reflash my rom? do everything from beggining?

[20/02/13][Guide][Memory Script]Installation of Mounts2SD[Automated/Playstore App]

Update #1: The attached zip file now works perfectly
Update #2: Fully Automated: new zip file attached at the end of this post.
Update #3: The creator of the script has released an application.
There are lot of scripts available to make use of the sd-ext partition of your card and install apps on it. Personally i've tried all of them :laugh:
Mounts2SD is one such script by dk_zero-cool. (Original Thread)
Features:
Graphical installer with configuration options and auto deletion of almost any existing app2sd script
Control script to manage configuration from shell
SWAP Support
Link Apps from data as system apps
Move Apps to sd-ext
Move Dalvik-cache to sd-ext
Move Apps Data to sd-ext
Move system linked apps to sd-ext
Move Cache to a tmpfs (With auto control)
Internal nand and sdcard readahead optimization
Handles slow sdcards that takes time to initiate
Checks filesystems for errors on boot using e2fsck
Let's you use whatever linux filesystem supported by kernel
Able to revert any prev. options
Fix permissions
Internal/External storage optimization
Fix CyanogenMod dalvik to /cache
Revert the sd-ext/data partitions so that sd-ext becomes the new /data
Android Market 'Not enough space' fix
Checks available free space before moving content
Click to expand...
Click to collapse
I found that this script works fine on modded stock roms as well on Cyanogen/AOKP roms. I'm writing a simplified tutorial to get it up and running on your device. This may also work on other devices.
Caution: Although there are no steps that will brick your phone (at the most you need will need to reflash a rom ). Yet, i won't take responsibility for any damage done to your device.
Pre-requisites:
Rooted rom with init.d support (Rooting Tutorial) (Enabling init.d support)
sd-ext partition (Tutorial)
Your kernel should support sd-ext
Installation:
Make a nandroid backup if your want as you may loose data
Download the attached file (View attachment mounts2sd.zip)
Place to zip in the root of your SD card
Reboot into recovery
Select: Install zip from SD card-> <Now select the file your downloaded> ->Install
Reboot your device (May take some time to boot)
If zip file cannot be installed then please leave a comment :fingers-crossed:
Initial Setup:
Download Android Terminal Emulator from Google Play
Open Terminal and type in the following commands one by one: (CAUTION: CASE SENSITIVE COMMANDS, Grant root permissions is asked for)
su
m2sd apps disable
m2sd data disable
m2sd cache disable
m2sd dalvik disable
m2sd dlcache disable
m2sd readahead 512 (512kb is the readahead value suggested for a class 4 sd card. If your have a better card then you may increase this value)
m2sd rmount enable
Reboot your device now (May take some time to boot)
When your device boots up, be sure to check the internal memory size. It should be almost equal to your sd-ext size. Enjoy your extended storage! :highfive::highfive:
Screenshot:
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
----OR----
Another method: No need for any configuration using terminal. Just download and flash View attachment 1464209. Remember to reboot twice. Enjoy :good:
----OR----
You can simply install this app from the playstore. (Warning: I haven't tested this!)
Remember to hit thanks if i helped :good::good:
Please add date to your thread's name.
Thank you
hrkh83 said:
Please add date to your thread's name.
Thank you
Click to expand...
Click to collapse
Added
A Query
sabaatworld said:
Download Android Terminal Emulator from Google Play
Open Terminal and type in the following commands one by one: (CAUTION: CASE SENSITIVE COMMANDS, Grant root permissions is asked for)
su
m2sd apps disable
m2sd data disable
m2sd cache disable
m2sd dalvik disable
m2sd dlcache disable
m2sd readahead 512
m2sd rmount enable
Reboot your device now (May take some time to boot)
Click to expand...
Click to collapse
Why to type m2sd apps disable etc. rather than m2sd apps enable?
satvik7star said:
Why to type m2sd apps disable etc. rather than m2sd apps enable?
Click to expand...
Click to collapse
I prefer to use reverse mount feature cause it's faster and you never run into vague internal memory depletion issues.
Zip fails to install.
I'm using TWRP recovery with this ROM, which, I think, has init.d support.
hameerabbasi said:
I'm using TWRP recovery with this ROM, which, I think, has init.d support.
Click to expand...
Click to collapse
I have not tried this rom but, most probably it does. If it doesn't then this will help:
http://forum.xda-developers.com/showthread.php?t=1912324
This ROM had the file.
This ROM already had the file /system/etc/init.d/10mounts2sd on it. I guess that means it already has init.d support. Anyway, I'll re-flash, and try to configure, and report back.
That file fails too.
Flashing that file fails, too. I manually copied the file to init.d, to no avail, on two different ROMS. The one I gave you, and AOKP as well. Flashing the zip also fails on AOKP.
EDIT: Flashing fails on MIUI (this one).
recovery.log attached as recovery.txt.
I cant able to install mounts2sd-4.6.2_installer-signed.zip from sdcard.
it shows Status 0. Installation aborted
hameerabbasi said:
Flashing that file fails, too. I manually copied the file to init.d, to no avail, on two different ROMS. The one I gave you, and AOKP as well. Flashing the zip also fails on AOKP.
EDIT: Flashing fails on MIUI (this one).
recovery.log attached as recovery.txt.
Click to expand...
Click to collapse
I'm really sorry for the bad zip file. I've uploaded a new one. Please download it from the first post. I've tested this one and it should work fine.
droidbot678 said:
I cant able to install mounts2sd-4.6.2_installer-signed.zip from sdcard.
it shows Status 0. Installation aborted
Click to expand...
Click to collapse
Exact same issue here.
EDIT: Scratch that. Working beautifully, didn't see last post. Might I suggest a change in title/version number to make other users aware of the change?
Try the fix...
Sent from my HTC Explorer A310e using xda premium
Seems to net work on http://forum.xda-developers.com/showthread.php?t=1935004
The interne memory not change after applying the script.
Beda974 said:
Seems to net work on http://forum.xda-developers.com/showthread.php?t=1935004
The interne memory not change after applying the script.
Click to expand...
Click to collapse
After rebooting you need to execute the commands on the terminal as well.
m2sd apps disable
m2sd data disable
m2sd cache disable
m2sd dalvik disable
m2sd dlcache disable
m2sd readahead 512
m2sd rmount enable
Reboot your device now (May take some time to boot)
So after this reboot, I reexcute this commands ?
Beda974 said:
m2sd apps disable
m2sd data disable
m2sd cache disable
m2sd dalvik disable
m2sd dlcache disable
m2sd readahead 512
m2sd rmount enable
Reboot your device now (May take some time to boot)
So after this reboot, I reexcute this commands ?
Click to expand...
Click to collapse
I'm facing the same issue on the AOKP ROM.
I have tried it on cm9 and it works. Don't forget to type in su and then these commands
Sent from my HTC Explorer A310e using xda premium
I installed Miui Build 5 rom and rebooted the mobile and it was working perfectly, up on installing mount2sd it doesn't go beyond the htc logo screen. even after factory reset it doesn't work
Hi,sabaat
I am using AOKP build 4 and want to use this script,now I have link2sd and i want to make my internal memory looks like SDext,so plz guide me as I am new to this.....thanks in advance

[Update] [KERNEL7-FINAL] Repencis Kernel [TOOL] ext4 Converter

Ext4 converter :
Mod Edit: Links removed as kernel has no source code so is violating the GPL and XDA Forum Rules.
about Converter :
- convert system, data and cache partisions
- no need restoring nandroid backup after flashing kernel
- kernel must support ext4 for using this formatter
- fix stuck after convert ext4 with formatter system partision
- if u get error log messeges on recovery stock this problem from ur kernel
* Repencis ext4 Converter V2
Changelog:
- Fix Super User Problem .. I have try in stockrom, wintermod and Repencis v3.5
* Repencis-rfs-to-ext4-conv v.1
(link formatter : http://www.mediafire.com/?6gqjrbu1e1u7yru)
Changelog :
- Eror Superuser problem Dont using it..
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
How to Convert
Warning u must have space on sdcard about 500mb before using this formatter!!
ur rom must have kernel support ext4 installed before using this converte
download and Put Repencis-ext4-conv-v2.zip in ur sdcard
Go to Cwm > chose instal zip
chose Repencis-to-ext4-conv-v2.zip
please wait mybe make a time about3-5 minute
reboot now
Answer/Question :
Q : i have using this formatter my apps losing, curently rom using a2sd?
A : go to terminal write
- su
- a2sd reinstall
Q: My Rom lost super user?
A : try reinstaling superuser (updated.zip) root ur rom.
if u get other problem PM me on facebok (fedy kusuma)
i have been testing this formatter about twice using my latest kernel with flashing odin before instal kernel and do formatter
if u want to try my kernel :
this kernel build from GT-S5360_GB_Opensource_Update3 latest source from opensource samsung
============================================================================================
KERNEL REPENCIS
============================================================================================
* Rv4-kernel7-final
link kernel :
I honestly was not happy with the behavior of other users who not appreciate my work. I just give the best from my ability if it is not pleasing you dont need to say things that are not appreciated.. maybe 1 or 2 next day i want to offline for long time in this xda forum... thanks for all who appreciate my work
all about Rv4 kernel7- Final build :
before instal this kernel u must from fresh rom or stock rom bcos cant work full if have using oher kernel
add super user
add busybox
enabling boot animation support for most bootanimation ldpi u can search most bootanimation like cm7, cm9 and other rom in galaxy mini n galye
remove bootpslash ( i have methode to changing original samsung boot logo flash via odin, i can share if u need i have tested its work..)
Fix ext4 and other issue bug
very fast and best profermance in ext4 file system
Dont confused with modules file if u remove it mybe ur phone is gone stuck or schedule IO gone
a2sd support
init.d support
swap support
droidwall support
DroidVpn Support
add Cpu
add IO
5 Frequency 156 , 312 ,468 , 624, 832
auto mount sd-ext as ext4
All Governer Cpu work no need tweak bacem or module to make cpu governer work like other kernel
Minimal Baseband firmware DXLE1 or above not work in DXLC1 to down
work best in stock rom.. u can modify ur own Rom ..
How to flash :
just download and put file zip in sdcard then instal it via cwm
Troubleshoting :
Q : my phone restared some times?
A : try using low freq 312 bcos min freq 156 - max 312 cant open other app with big ram used so using min freq 312 recomended..
* Rv4 build6.4 revo :
Changelog
- ext4 not work
- have some issue cant ekstrak file on system
- link removed
*Rv4-build6.3
link kernel :
Mirror Link:
changelog From Previous build:
- Fix no need instal busybox before instal kernel
- now support to all rom without instal busybox first
- add Super user
- Add Busybox
*Rv4-build6.2
link kernel :
mirror link :
changelog:
-fix bootsplash when using ext4 file system in charge mode off from previous kernel
*Rv4-build6.1
link kernel :
about kernel :
-a2sd support
-init.d support
-swap support
-droidwall support
-DroidVpn Support
-add Cpu
-add IO
-5 Frequency 156 , 312 ,468 , 624, 832
- auto mount sd-ext as ext4
- no need tweak bacem to make cpu governer work
- i just added feature when work on galaxy y for what include most feature but not work?
- Required baseband firmware DXLE1 to up .. not work in DXLC1
follow this steps :
1. download kernel RV4-kernel6.2
2. put in ur sdcard
3. before instal this kernel recomended instal busybox chose busybox v1.93 and chose custom tone then instal (search on google recomnded pro version )
4. Go to Cwm > chose instal zip
5. chose RV4-build6.2zip
6. reboot now
7. and u can go to step to format ext4 using Repencis-ext4-conv-v2.zip if do u want...
========================================================================================
Patch Change Bootlogo Original samsung with Logo Repencis
========================================================================================
i have methode to patch original samsung boot logo with repenis logo if u want to test it just follow my steps :
1. download RV4-Boot-logo.zip and put in sdcard
2. go to cwm instal zip > chose > RV4-Boot-logo.zip
3. back chose advanced > reboot recovery
4. reboot now
RV4 Boot logo link :
Mediafire : Download
Bugs :
- folder /mnt/.lfs cant be access becos param.lfs has been patch so if u need back to stock original must revert back to odin stock frimware full packaged with bootloader and pit (repartision checked in odin) .. u can get boot and pit in firmware fullpackaged bcos in firmware docky just have 3 file so if u have firmware latest with 3 file just copy boot and pit from other firmware packaged full and paste it in ur latest firmware folder then go flashing..
- dont using it if dont know how to flashing ...so think before using this bootlogo patches
- Did ur own risk !!
===========================================================================================
Thanks To :
* Allah SWT
* Heri setiawan (Repencis Team)
* Jmkl six (killed)
* Andhika Edho (phiexz)
* Irfan Bagus
* Muhammad Alfiyan Syamsuddin
* Wintermod Dev Team
* Simply Young Dev Team
* Jeniper Dev Team
* Official Galaxy Young Indonesia group
* and You....
====Reserved======
WOOHOO! Repencis is back! Hmmmmmm... I can smell V4!!! :highfive:
The freq are not changing using setcpu
a6 3420m quad core 2.4 laptop
Heartlessangel2001 said:
The freq are not changing using setcpu
a6 3420m quad core 2.4 laptop
Click to expand...
Click to collapse
are u have try this kernel ?
Yes using v4 16
a6 3420m quad core 2.4 laptop
welcome back sir.good to hear u again...
Can i apply your kernel n ext-4 in simply young rom since it has it's own kernel n a2sd in it? if i can, pliss guide me the steps to do it...
Thanks in Advance :thumbup::thumbup::thumbup:
Sent from my GT-S5360 using Xparent Blue Tapatalk 2
thanks for the share.. gonna try it.
i have merruks #206 which i believe supports ext4.. would it be the same process? thanks.
Is can install this in Savie Kernel #73???
---------- Post added at 05:58 PM ---------- Previous post was at 05:33 PM ----------
kykemejia said:
Is can install this in Savie Kernel #73???
Click to expand...
Click to collapse
Not working with Savie Kernel #73 and Hyperion!!! Get logo Samsung !!
finished flashing with no problem...
any tried flash this when have merruk deluxe #206?
about the "features dont work or work idk,it make the merruk big,and need more ram to load,merruk have 249 mb ram usable,so i think 290 mb without the "not working features is better,right?
PLEASE REUPLOAD YOUR KERNEL GOT THIS MESSAGE FROM MEDIAFIRE:
Download Problem with this message from mediafire:
Split Archive Blocked
The file you attempted to download is an archive that is part of a set of archives. MediaFire does not support unlimited downloads of split archives and the limit for this file has been reached. MediaFire understands the need for users to transfer very large or split archives, up to 10GB per file, and we offer this service starting at $1.50 per month.
We have informed the owner that sharing of this file has been limited and how they can resolve this issue.
thanks master. will try your ext4 formater.. maybe it work on mine. but need to back to stock first. coz my rom already ext4.
can't download the kernel.
gbadcool said:
Can i apply your kernel n ext-4 in simply young rom since it has it's own kernel n a2sd in it? if i can, pliss guide me the steps to do it...
Thanks in Advance :thumbup::thumbup::thumbup:
Sent from my GT-S5360 using Xparent Blue Tapatalk 2
Click to expand...
Click to collapse
yes can Follow this steps :
1. download first busybox search on google, instal busybox open app chose v1.93 > chose custom tone > instal..
2. reboot to recovery go to cwm > instal zip from sdcard > chose kernel zip
3. yes instal then reboot now
emompong said:
thanks for the share.. gonna try it.
i have merruks #206 which i believe supports ext4.. would it be the same process? thanks.
Click to expand...
Click to collapse
i havent tested from other kernel.. mybe work but u must backup ur rom first...
Heartlessangel2001 said:
Yes using v4 16
a6 3420m quad core 2.4 laptop
Click to expand...
Click to collapse
where link kernel do u try??
this my kernel on this thread cant be access link
kykemejia said:
Is can install this in Savie Kernel #73???
---------- Post added at 05:58 PM ---------- Previous post was at 05:33 PM ----------
Not working with Savie Kernel #73 and Hyperion!!! Get logo Samsung !!
Click to expand...
Click to collapse
i havnt tested from other kernel .. but backup ur rom first if u want to try
blackpanther2209 said:
finished flashing with no problem...
Click to expand...
Click to collapse
thanks for report sir..
anonymous27 said:
PLEASE REUPLOAD YOUR KERNEL GOT THIS MESSAGE FROM MEDIAFIRE:
Download Problem with this message from mediafire:
Split Archive Blocked
The file you attempted to download is an archive that is part of a set of archives. MediaFire does not support unlimited downloads of split archives and the limit for this file has been reached. MediaFire understands the need for users to transfer very large or split archives, up to 10GB per file, and we offer this service starting at $1.50 per month.
We have informed the owner that sharing of this file has been limited and how they can resolve this issue.
Click to expand...
Click to collapse
zecn said:
thanks master. will try your ext4 formater.. maybe it work on mine. but need to back to stock first. coz my rom already ext4.
Click to expand...
Click to collapse
heirfister said:
can't download the kernel.
Click to expand...
Click to collapse
oke sir wait.. i m progres fix link of kernel...
great bro, we always wait for ur new innovation
Code:
run_program("/sbin/mount", "/dev/block/stl9", "/system");
run_program("/sbin/mkdir", "-p", "/sdcard/.repencis-ext4");
run_program("/sbin/cp", "-r", "/system", "/sdcard/.repencis-ext4");
run_program("/sbin/mount", "/dev/block/stl9", "/system");
run_program("/sbin/sh","-c","busybox mv /sdcard/.repencis-ext4/system/* /system");
run_program("/sbin/mount", "/dev/block/stl11", "/data");
run_program("/sbin/sh", "-c", "busybox tar -C /data -cvf /sdcard/.repencis-ext4/data.tar data app app-private system");
run_program("/sbin/mount", "/dev/block/stl11", "/data");
run_program("/sbin/sh", "-c", "busybox tar -C /data -xvf /sdcard/.repencis-ext4/data.tar");
my concern is on these part. I didn't owned this device anymore so I could be wrong. as fas as I remember we don't have these files in /sbin folder. neither in stock, savie's, maroc, nor mine. without these files, the script won't work. can anyone verify it? just go to /sbin folder with your root explorer and tell us what are the files inside it.
kurotsugi said:
Code:
run_program("/sbin/mount", "/dev/block/stl9", "/system");
run_program("/sbin/mkdir", "-p", "/sdcard/.repencis-ext4");
run_program("/sbin/cp", "-r", "/system", "/sdcard/.repencis-ext4");
run_program("/sbin/mount", "/dev/block/stl9", "/system");
run_program("/sbin/sh","-c","busybox mv /sdcard/.repencis-ext4/system/* /system");
run_program("/sbin/mount", "/dev/block/stl11", "/data");
run_program("/sbin/sh", "-c", "busybox tar -C /data -cvf /sdcard/.repencis-ext4/data.tar data app app-private system");
run_program("/sbin/mount", "/dev/block/stl11", "/data");
run_program("/sbin/sh", "-c", "busybox tar -C /data -xvf /sdcard/.repencis-ext4/data.tar");
my concern is on these part. I didn't owned this device anymore so I could be wrong. as fas as I remember we don't have these files in /sbin folder. neither in stock, savie's, maroc, nor mine. without these files, the script won't work. can anyone verify it? just go to /sbin folder with your root explorer and tell us what are the files inside it.
Click to expand...
Click to collapse
this run from smylink busybox tools ..
if u want to know see on init.rc of boot.img u can see
# setup the global environment
export PATH /sbin:/vendor/bin:/system/sbin:/system/bin:/system/xbin
# SEC_SECURITYLAB_LATONA_DEVICE_ENCRYPTION: include /lib /*ASW3 YONG_ODE*/
export LD_LIBRARY_PATH /lib:/vendor/lib:/system/lib
export ANDROID_BOOTLOGO 1
export ANDROID_ROOT /system
maybe u know what i mean..
if this cant run why succesfully? with backup and restore file
i m using method from andhika edho (phiexz)
followed your instructions carefully, but still i got problems, after flashing your formatter i cannot connect to my wifi, terminal emu, bte, and root explorer not working even if i reinstall them. any solutions? im using your latest kernel.

[KitKat] [Rom] [BETA #1][AORP - 4.4.20] [22-12 -13]

{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
AORP- Android Open Rebel Project is an aftermarket firmware based on the CyanogenMod with add functionalities . We are dedicated to fast, stable, and feature-filled roms, honesty and communication with our users, and openness with our code. We like frequent builds, with the very latest and greatest hardware support and fixes. We strive to not only provide you with the best rom we can build, but also to give back to the Android community and our fellow developers. For us, this is about creating something we can be proud of and hope you will enjoy.
Screenshot
officiallysonyrebel
Saki3d
ansebovi
galaxyfreak
vineethraj
roksm er
Working
Same as cm11 beta 2
Buggs
Stock browser --> use 3rd party apps
To boot this rom you need 2 sd-ext partitions ( im lazy to setup memory scripts or apps )
the partition order should be
SD-SYSTEM ----> SD-Data
Instruction
Download the ROM & Gapps
Wipe 2 SD-Partitions using minitool partition wizard or disk utility
Reboot to Recovery
Do a factory reset
Flash the ROM & Gapps
Reboot
​
Rom : here
Gapps : Here
AmalD said:
To boot this rom you need 2 sd-ext partitions ( im lazy to setup memory scripts or apps )
the partition order should be
SD-SYSTEM ----> SD-Data
Instruction
Download the ROM & Gapps
Wipe 2 SD-Partitions using minitool partition wizard or disk utility
Reboot to Recovery
Do a factory reset
Flash the ROM & Gapps
Reboot
​
Rom : here
Gapps : Here
Click to expand...
Click to collapse
bro tell about the amount of system partition needed
PiCo HackR said:
bro tell about the amount of system partition needed
Click to expand...
Click to collapse
512 mb is enough for SD-SYSTEM
Hey @AmalD can you please just delete some useless apps and make the ROM run on only one partition....! I don't wanna make any extra partitions now ...?
Thanks in advance ..!
Sent from my Explorer A310e using XDA Premium 4 mobile app
working/not working??
AmalD said:
AORP- Android Open Rebel Project is an aftermarket firmware based on the CyanogenMod with add functionalities . We are dedicated to fast, stable, and feature-filled roms, honesty and communication with our users, and openness with our code. We like frequent builds, with the very latest and greatest hardware support and fixes. We strive to not only provide you with the best rom we can build, but also to give back to the Android community and our fellow developers. For us, this is about creating something we can be proud of and hope you will enjoy.
Screenshot
officiallysonyrebel
Saki3d
ansebovi
galaxyfreak
vineethraj
roksm er
Click to expand...
Click to collapse
can u plz tell me bro whats working and not working?
Too less info!!!!!!!
The dev is requested to provide more info about the ROM...........Info provided is too less......PLEASE TELL ABOUT the following factors:-
1-is ART working?
2-how to use the memory scripts?
3-what are the bugs?
4-what things are working?
5-How is this rom different from cm11 or beanstalk?
Any detail about the above mentioned queries will be much appreciated.......Anyways thanks for the rom
fahadshafiq436 said:
The dev is requested to provide more info about the ROM...........Info provided is too less......PLEASE TELL ABOUT the following factors:-
1-is ART working?
2-how to use the memory scripts?
3-what are the bugs?
4-what things are working?
5-How is this rom different from cm11 or beanstalk?
Any detail about the above mentioned queries will be much appreciated.......Anyways thanks for the rom
Click to expand...
Click to collapse
1 - yes
2 - no need of memory scripts i have added a kernel which mounts sd-data as data
3 - stock browser
4- everything that works in cm 11 beta 2
5 - try and check ur self
thanks
AmalD said:
1 - yes
2 - no need of memory scripts i have added a kernel which mounts sd-data as data
3 - stock browser
4- everything that works in cm 11 beta 2
5 - try and check ur self
Click to expand...
Click to collapse
Thanks for clearing out the confusion but about question number 2 i.e. about the memory scripts...............i have two partitions one is the normal sd card partition while other is sd ext of 2 gb........what changes do i have to make .........please explain in detail coz i am a big noob.......thanks anyways
fahadshafiq436 said:
Thanks for clearing out the confusion but about question number 2 i.e. about the memory scripts...............i have two partitions one is the normal sd card partition while other is sd ext of 2 gb........what changes do i have to make .........please explain in detail coz i am a big noob.......thanks anyways
Click to expand...
Click to collapse
totally u should have 3 partitions
1 ) normal
2 ) sd-system ---> ext4 ---> min 512 mb
3 ) sd-data ----> ext4 ---> 1 GB ( it will be your internal memory )
just like this
AmalD said:
1 - yes
2 - no need of memory scripts i have added a kernel which mounts sd-data as data
3 - stock browser
4- everything that works in cm 11 beta 2
5 - try and check ur self
Click to expand...
Click to collapse
USB tethering works????????????????
fahadshafiq436 said:
USB tethering works????????????????
Click to expand...
Click to collapse
lol rom is daam smooth but help us to install it inside nand memory
PiCo HackR said:
lol rom is daam smooth but help us to install it inside nand memory
Click to expand...
Click to collapse
SMOOTH?????man i used it for nearly half an hour and it wasnt smooth it was very close to usable not at all smooth
fahadshafiq436 said:
SMOOTH?????man i used it for nearly half an hour and it wasnt smooth it was very close to usable not at all smooth
Click to expand...
Click to collapse
I think the problem is gapps
I had no problem installing the ROM, edited gapps
.MoHaMaD said:
I think the problem is gapps
I had no problem installing the ROM, edited gapps
Click to expand...
Click to collapse
i mean rom is alright but it is not smooth it is very laggy and games dont work i.e.stop work
@AmalD
Great work
can we do a factory reset before flashing rom, because if I do that,then SD-SYSTEM partition become ext3
and when I flash this script http://forum.xda-developers.com/showthread.php?t=2411161 ,on boot in recovery I got this message : not rooted
marko94 said:
@AmalD
Great work
can we do a factory reset before flashing rom, because if I do that,then SD-SYSTEM partition become ext3
and when I flash this script http://forum.xda-developers.com/showthread.php?t=2411161 ,on boot in recovery I got this message : not rooted
Click to expand...
Click to collapse
u can do f-reset from recovery .
for that script to work edit its updater script ( mount point ) prefer updaterscript of ROM
change this
Code:
mount("yaffs2", "MTD", "system", "/system");
to
Code:
run_program("/sbin/busybox", "mount", "-t", "auto", "/dev/block/mmcblk0p2", "/system");
AmalD said:
u can do f-reset from recovery .
for that script to work edit its updater script ( mount point ) prefer updaterscript of ROM
change this
Code:
mount("yaffs2", "MTD", "system", "/system");
to
Code:
run_program("/sbin/busybox", "mount", "-t", "auto", "/dev/block/mmcblk0p2", "/system");
Click to expand...
Click to collapse
There is no
Code:
mount("yaffs2", "MTD", "system", "/system");
line in the script
Updater Script is as below
Code:
run_program("/tmp/busybox","mount","/system");
run_program("/sbin/busybox","mount","/system");
run_program("/tmp/busybox","mount","-o","rw,remount","/system");
run_program("/sbin/busybox","mount","-o","rw,remount","/system");
run_program("/tmp/busybox","mount","/data");
run_program("/sbin/busybox","mount","/data");
run_program("/tmp/busybox","mount","-o","rw,remount","/data");
run_program("/sbin/busybox","mount","-o","rw,remount","/data");
manojchintu said:
There is no
Code:
mount("yaffs2", "MTD", "system", "/system");
line in the script
Updater Script is as below
Code:
run_program("/tmp/busybox","mount","/system");
run_program("/sbin/busybox","mount","/system");
run_program("/tmp/busybox","mount","-o","rw,remount","/system");
run_program("/sbin/busybox","mount","-o","rw,remount","/system");
run_program("/tmp/busybox","mount","/data");
run_program("/sbin/busybox","mount","/data");
run_program("/tmp/busybox","mount","-o","rw,remount","/data");
run_program("/sbin/busybox","mount","-o","rw,remount","/data");
Click to expand...
Click to collapse
since op mount mmcblk0p2 as system and mmcblk0p3 as data , so replace above codes with this may work.
Code:
run_program("/sbin/busybox", "mount", "-t", "auto", "/dev/block/mmcblk0p2", "/system");
run_program("/sbin/busybox", "mount", "-t", "auto", "/dev/block/mmcblk0p3", "/data");
run_program("/sbin/busybox", "mount", "-t", "auto", "/dev/block/mmcblk0p3", "/data");
or manually copy them the directoreies and set permisson ( or simply set permission via recovery )
@AmalD
I got robotic voice in call

Categories

Resources