Guest Josh04 Posted May 18, 2010 Report Posted May 18, 2010 ext3 is backwards compatible. You can mount both ext3 and ext4 as ext2 and they will work fine, just without their added features.
Guest masterpfa Posted May 18, 2010 Report Posted May 18, 2010 (edited) Lol, ext3 shouldn't even work! What rom are you using & is a2sd definitely functioning when using ext3? I don't think it was even working with ext2 :) I'm using Update 4, the last one posted, I will check to confirm (I doubt) that A2SD is enabled. ext3 is backwards compatible. You can mount both ext3 and ext4 as ext2 and they will work fine, just without their added features. Cheers ;) Edited May 18, 2010 by masterpfa
Guest starkos Posted May 18, 2010 Report Posted May 18, 2010 ext3 is backwards compatible. You can mount both ext3 and ext4 as ext2 and they will work fine, just without their added features. They haven't been with any of the roms though? I've been using ext3 from the beginning & the only way for the phone to get past the android boot screen was to use ext2. Do you know how to get it so ext3 is compatible then, because that would be very useful?
Guest eckengucker1 Posted May 18, 2010 Report Posted May 18, 2010 (edited) I've changed the build.prop a bit: ro.product.brand=T-Mobile to ro.product.brand=hw (loads hw-files e.g. "system>cust")[/codebox] added [codebox]## ####Added by Eckengucker for MoDaCo ## ##Rington FIX ring.delay=0 ro.telephony.Call_ring.delay=0 ##Time between scans in seconds. Keep it high to minimize battery drain. This only affects the case in which there are remembered access points, but none are in range. wifi.supplicant_scan_interval = 30 ##Multitouch requires driver+"android.hardware.touchscreen.multitouch" in "required_hardware.xml" ro.product.multi_touch_enabled=true ro.product.max_num_touch=2 ##Video resolution set to Pulse screen / fullscreen ##Needs more resources but huge quallity improvement ro.media.enc.hprof.file.format=mp4 ro.media.enc.hprof.codec.vid=h264 ro.media.enc.hprof.codec.aud=aac ro.media.enc.hprof.vid.width=480 ro.media.enc.hprof.vid.height=320 ro.media.enc.hprof.vid.fps=25 ro.media.enc.hprof.vid.bps=3000000 ##Soundquallity hack ro.media.enc.hprof.aud.bps=128000 ro.media.enc.hprof.aud.hz=32000 ro.media.enc.hprof.aud.ch=1 ro.media.enc.hprof.duration=60 ro.media.enc.lprof.file.format=mp4 ro.media.enc.lprof.codec.vid=m4v ro.media.enc.lprof.codec.aud=amrnb ro.media.enc.lprof.vid.width=320 ro.media.enc.lprof.vid.height=240 ro.media.enc.lprof.vid.fps=15 ro.media.enc.lprof.vid.bps=200000 ro.media.enc.lprof.aud.bps=12200 ro.media.enc.lprof.aud.hz=8000 ro.media.enc.lprof.aud.ch=1 ro.media.enc.lprof.duration=30 ro.media.enc.file.format=3gp,mp4 ro.media.enc.vid.codec=h264,m4v,h263 ro.media.enc.aud.codec=aac,amrnb ro.media.enc.vid.h264.width=176,480 ro.media.enc.vid.h264.height=144,320 ro.media.enc.vid.h264.bps=64000,8000000 ro.media.enc.vid.h264.fps=1,30 ro.media.enc.vid.h263.width=176,480 ro.media.enc.vid.h263.height=144,320 ro.media.enc.vid.h263.bps=64000,8000000 ro.media.enc.vid.h263.fps=1,30 ro.media.enc.vid.m4v.width=176,480 ro.media.enc.vid.m4v.height=144,320 ro.media.enc.vid.m4v.bps=64000,8000000 ro.media.enc.vid.m4v.fps=1,30 ro.media.enc.aud.amrnb.bps=5525,12200 ro.media.enc.aud.amrnb.hz=8000,8000 ro.media.enc.aud.amrnb.ch=1,1 ro.media.enc.aud.aac.bps=8192,96000 ro.media.enc.aud.aac.hz=16000,16000 ro.media.enc.aud.aac.ch=1,1 ro.media.dec.aud.wma.enabled=1 ro.media.dec.vid.wmv.enabled=1 Report any problems please :) @Dev: If you need some help compiling/changing system files/settings ect. PM me ;) EDIT: You've deleted "Servo-Search right? So you can delete "searchabledb.conf" from "system/ect" too :Dbuild.prop.zip Edited May 18, 2010 by eckengucker1
Guest masterpfa Posted May 18, 2010 Report Posted May 18, 2010 I've changed the build.prop a bit: Report any problems please :) Hi is this applicable to 2.1 Vanilla based on r6 Update 4 and are these applied by pulling "build.prop.zip" from our phones and replacing with your enclosed "build.prop.zip"?
Guest Daniel Williamson Posted May 18, 2010 Report Posted May 18, 2010 Hi is this applicable to 2.1 Vanilla based on r6 Update 4 and are these applied by pulling "build.prop.zip" from our phones and replacing with your enclosed "build.prop.zip"? This is what i did :) ADB push C:\build.prop /sdcard/build.prop ADB shell $ su # mount -o remount,rw -t yaffs2 /dev/block/mtdblock6 /system # cat /sdcard/build.prop > /system/build.prop # mount -o remount,ro /dev/mtd/mtdblock6 /system # reboot
Guest eckengucker1 Posted May 18, 2010 Report Posted May 18, 2010 (edited) I took the build.prop and made a few changes You can walk to ways (always backup your old one): Way 1. - extract the build.prop - copy it to your sd-card - copy it from where with Root Explorer to /system Way 2. Code: adb push build.prop /tmp/build.prop su mount -o remount,rw -t yaffs2 /dev/block/mtdblock6 /system cp -f /tmp/build.prop /system/build.prop ls -l /system/build.prop -rw-r--r-- root root 4263 2010-01-21 11:01 build.prop chown root.root /system/build.prop chmod 644 /system/build.prop Edited May 18, 2010 by eckengucker1
Guest masterpfa Posted May 18, 2010 Report Posted May 18, 2010 This is what i did :) @eckengucker1 and @Daniel Williamson Thanks
Guest Rizzly Posted May 18, 2010 Report Posted May 18, 2010 I took the build.prop and made a few changes You can walk to ways (always backup your old one): Way 1. - extract the build.prop - copy it to your sd-card - copy it from where with Root Explorer to /system Way 2. Code: adb push build.prop /tmp/build.prop su mount -o remount,rw -t yaffs2 /dev/block/mtdblock6 /system cp -f /tmp/build.prop /system/build.prop ls -l /system/build.prop -rw-r--r-- root root 4263 2010-01-21 11:01 build.prop chown root.root /system/build.prop chmod 644 /system/build.prop So basically you've managed to remove the ringtone delay for calls, upped the wifi-refresh, added (working?) multitouch and improved the sound and video?
Guest Bendolfc Posted May 18, 2010 Report Posted May 18, 2010 Is the ring tone delay the annoying thing where you cant actually answer the phone for the first few seconds of an incoming call?
Guest eckengucker1 Posted May 18, 2010 Report Posted May 18, 2010 So basically you've managed to remove the ringtone delay for calls, upped the wifi-refresh, added (working?) multitouch and improved the sound and video? Yep. But 4 multitouch u've to go deeper into the system. I've got an idea :)
Guest Daniel Williamson Posted May 18, 2010 Report Posted May 18, 2010 I took the build.prop and made a few changes You can walk to ways (always backup your old one): Way 1. - extract the build.prop - copy it to your sd-card - copy it from where with Root Explorer to /system Way 2. Code: adb push build.prop /tmp/build.prop su mount -o remount,rw -t yaffs2 /dev/block/mtdblock6 /system cp -f /tmp/build.prop /system/build.prop ls -l /system/build.prop -rw-r--r-- root root 4263 2010-01-21 11:01 build.prop chown root.root /system/build.prop chmod 644 /system/build.prop The way i posted works too :) and its shorter aha Nice work on the build.prop anyways are there any other files like this in the android image which can easily be changed? Thanks Dan
Guest eckengucker1 Posted May 18, 2010 Report Posted May 18, 2010 The way i posted works too ;) and its shorter aha Nice work on the build.prop anyways are there any other files like this in the android image which can easily be changed? Thanks Dan Basicly you can change any file but you've to do that in bootloader-mode :)
Guest masterpfa Posted May 18, 2010 Report Posted May 18, 2010 OK strange as it seems, I have been running 2.1 Vanilla based on r6 update 4 by Sh4d0w940 for nearly 3hrs now but with ext3 partition and since then, NO FC's or android.process.acore or any problems what so ever!!!! :( I don't know if it was the wipe of everything AGAIN or the re-flashing of this ROM or the ext 3 and I haven't even changed the build.prop as provided by eckengucker1 here, strange. OK Nandroid back up and push build.prop. P.S. Why oh Why do T-Mobile think people would actually like the Pink Theme they add to ALL their phones ;) :) :D
Guest Sh4d0w940 Posted May 18, 2010 Report Posted May 18, 2010 (edited) I've changed the build.prop a bit: *removed the codeboxes here, no need for a huge quote :D* Report any problems please :( @Dev: If you need some help compiling/changing system files/settings ect. PM me :( EDIT: You've deleted "Servo-Search right? So you can delete "searchabledb.conf" from "system/ect" too :D I will include some of your changes in the rom if you dont mind :D And I didn't delete servo search, it isn't in the r6 from Paul and Bobo either. OK strange as it seems, I have been running 2.1 Vanilla based on r6 update 4 by Sh4d0w940 for nearly 3hrs now but with ext3 partition and since then, NO FC's or android.process.acore or any problems what so ever!!!! :( I don't know if it was the wipe of everything AGAIN or the re-flashing of this ROM or the ext 3 and I haven't even changed the build.prop as provided by eckengucker1 here, strange. OK Nandroid back up and push build.prop. P.S. Why oh Why do T-Mobile think people would actually like the Pink Theme they add to ALL their phones ;) :) :D Does A2SD work with your ext3 partition? Because I think it is just disabled like it would without an ext partition, and that's why it's more stable. (A2SD+ is not completely stable) Edited May 18, 2010 by Sh4d0w940
Guest MarcusHenrique Posted May 18, 2010 Report Posted May 18, 2010 I will include some of your changes in the rom if you dont mind :) And I didn't delete servo search, it isn't in the r6 from Paul and Bobo either. When you're going to upload an 5th update with all the changes? I'm just waiting that to change from r6 to your version ;)
Guest Swiftes Posted May 18, 2010 Report Posted May 18, 2010 Been using this all day, works beautifully :)
Guest screwface Posted May 18, 2010 Report Posted May 18, 2010 P.S. Why oh Why do T-Mobile think people would actually like the Pink Theme they add to ALL their phones ;) :) :D T Mobile subsidized the phone thats why they've added it.
Guest MarcusHenrique Posted May 18, 2010 Report Posted May 18, 2010 T Mobile subsidized the phone thats why they've added it. I believe that's not his point =X
Guest Rizzly Posted May 18, 2010 Report Posted May 18, 2010 I believe that's not his point =X Not me either, I think he's more reffering too as to why they choose the color pink, probably because he doesn't like it. I guess I'm the odd man out here, I quite like how they'e mixed pink and black. The two contrasting colors create quite a big impression together, but the again that might just be me being metrosexual :).
Guest masterpfa Posted May 18, 2010 Report Posted May 18, 2010 Not me either, I think he's more reffering too as to why they choose the color pink, probably because he doesn't like it. I guess I'm the odd man out here, I quite like how they'e mixed pink and black. The two contrasting colors create quite a big impression together, but the again that might just be me being metrosexual :). Ha! Ha!! That's exactly what I meant, it's not a neutral colour and for me, anyway, I prefer either the Vanilla theme or something less "Shocking" ;)
Guest MarcusHenrique Posted May 18, 2010 Report Posted May 18, 2010 Not me either, I think he's more reffering too as to why they choose the color pink, probably because he doesn't like it. I guess I'm the odd man out here, I quite like how they'e mixed pink and black. The two contrasting colors create quite a big impression together, but the again that might just be me being metrosexual ;). I'm majoring in advertising and I can say that: at semiotic (don't know the english equivalent :D) point of view Pink on Black refer to Classy High-Tech Product. Altought from my personal point of view it only looks cool for the first 5 minutes, then it's starts looking very annoying :)
Guest masterpfa Posted May 18, 2010 Report Posted May 18, 2010 Does A2SD work with your ext3 partition? Because I think it is just disabled like it would without an ext partition, and that's why it's more stable. (A2SD+ is not completely stable) No A2SD doesn't seem to be present (No SD Secondary in the SD Card & phone storage settings). Having said that I seem to be running OK without A2SD and 30 or so apps installed. OK eagerly awaiting Update 5 now :)
Guest MarcusHenrique Posted May 18, 2010 Report Posted May 18, 2010 No A2SD doesn't seem to be present (No SD Secondary in the SD Card & phone storage settings). Having said that I seem to be running OK without A2SD and 30 or so apps installed. OK eagerly awaiting Update 5 now ;) OK eagerly awaiting Update 5 now [2] :( :( Ps: I sense little game following beyond :) :D
Guest starkos Posted May 18, 2010 Report Posted May 18, 2010 Well, been using my own build for almost 24hrs now without a single FC or reboot & has been running very smoothly, then......3 reboots in the last hour for no reason! :) Wasn't even using the phone the first time, just felt the dreaded vibrate at boot lol! Well at least we know the Pulse is actually capable of running Eclair smoothly, just wish they would hurry up & release a stable final!
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now