Announcement
Collapse
No announcement yet.
Announcement
Collapse
No announcement yet.
Tronsmart T428 Stock ROM - disccusions on the best ROM
Collapse
X
-
Originally posted by strauzo View Post
-
The time warner apps is crashing due to the SDK level in build.prop. Unfortunatly you cannot edit that in build.prop or bootloop. Time warner needs to update thier APP to handle SDK Level 17.
Bob"Pzebacz im, bo nie wiedzą, co czynią"
"Прости им, они не ведают, что творят"
"Perdona loro perché non sanno quello che fanno"
"Vergib ihnen, denn sie wissen nicht, was sie tun"
"Vergeef hen want ze weten niet wat ze doen"
"Pardonne-leur car ils ne savent pas ce qu'ils font"
"Perdónalos porque no saben que lo que hacen"
"Oprosti im, jer ne znaju što čine"
"Forgive them as they know not what they do"
Comment
-
Originally posted by Finless View PostThe time warner apps is crashing due to the SDK level in build.prop. Unfortunatly you cannot edit that in build.prop or bootloop. Time warner needs to update thier APP to handle SDK Level 17.
Bob
Comment
-
Alright so pretty much I give up at tryna frakenstein things myself lol, using rk29xx image tool I ripped the system.img from the rom on arctablet forums its size is @ 510,976 then i replaced modules and kernel.img from t428 rom and flashed using both the finless flash tool and rkbatch tool but nada but a flash of the picture from the boot.img and bootloops. Prolly would work if I was using linux to do this stuff but im too lazy to install and wubi wont let me dual boot with windows 8 =/
Update: ha, turns out I was using a wrong file. Thats what I get for doing this all while at work, im running it now will do my tests and post results in a bit.
Having issues with this rom even letting me install apks, think it might be overheating? idk but Ive tried 3 times now to install dropbox and each time its resulted in a reboot?Last edited by alwaysbless; 04 June 2013, 00:50.
Comment
-
Welcome to my world of porting ROMs and constantly trying THIS from THAT.... and THAT from THIS... Especially with early devices like this where you are trying to find the best combination!
It takes a freakin long time with much frustration. But hey... I could use the help so have at it!
The Cube ROM will need a crap load of work to satisfy most users as a TV Stick.
By the way I personally do not like the aspect ratio! Sorry... I tried to change it by writing to FB0 and changing internal resolution but it wont change
Bob"Pzebacz im, bo nie wiedzą, co czynią"
"Прости им, они не ведают, что творят"
"Perdona loro perché non sanno quello che fanno"
"Vergib ihnen, denn sie wissen nicht, was sie tun"
"Vergeef hen want ze weten niet wat ze doen"
"Pardonne-leur car ils ne savent pas ce qu'ils font"
"Perdónalos porque no saben que lo que hacen"
"Oprosti im, jer ne znaju što čine"
"Forgive them as they know not what they do"
Comment
-
I actually like how it has the status bar at the top its the first time ive seen an android stick with a status bar like a phone/tablet. With that being said, I still think I screwed something up along the way so I cant really call this a fair test. The whole UI of android is lagging for some reason and using the hwcomposer that was working perfect for me yesterday is now having frame skipping, so until I can get this ui working properly I cant really say how the new 6/1 rom is performing. What could be causing it though? did I screw up on modules or something or does it sound like build.prop thing maybe? Neither of them sound probable to me, but then again idk. lolLast edited by alwaysbless; 04 June 2013, 02:43.
Comment
-
Guest
Originally posted by alwaysbless View PostI actually like how it has the status bar at the top its the first time ive seen an android stick with a status bar like a phone/tablet. With that being said, I still think I screwed something up along the way so I cant really call this a fair test. The whole UI of android is lagging for some reason and using the hwcomposer that was working perfect for me yesterday is now having frame skipping, so until I can get this ui working properly I cant really say how the new 6/1 rom is performing. What could be causing it though? did I screw up on modules or something or does it sound like build.prop thing maybe? Neither of them sound probable to me, but then again idk. lol
The cube rom, for now, have stability and best results not only with videos, with the last hwcomposer of t428.
Disabling only the lock screen, i have all working. The best smoothness on the ui and wifi very stable.
The other hwcpmposer make problems also if you have good videos with some video apps.
Comment
-
Originally posted by strauzo View PostI made 12000 tests
The cube rom, for now, have stability and best results not only with videos, with the last hwcomposer of t428.
Disabling only the lock screen, i have all working. The best smoothness on the ui and wifi very stable.
The other hwcpmposer make problems also if you have good videos with some video apps.
Comment
-
unyaffs? I am surprised that even works. The system.img is nothing more than a EXT4 file system. It is not yaffs file system.
You simply mount this as EXT4 in Linux. I think there is a Windows tool that will mount EXT4 file system images as well.
Bob"Pzebacz im, bo nie wiedzą, co czynią"
"Прости им, они не ведают, что творят"
"Perdona loro perché non sanno quello che fanno"
"Vergib ihnen, denn sie wissen nicht, was sie tun"
"Vergeef hen want ze weten niet wat ze doen"
"Pardonne-leur car ils ne savent pas ce qu'ils font"
"Perdónalos porque no saben que lo que hacen"
"Oprosti im, jer ne znaju što čine"
"Forgive them as they know not what they do"
Comment
-
Originally posted by Finless View Postunyaffs? I am surprised that even works. The system.img is nothing more than a EXT4 file system. It is not yaffs file system.
You simply mount this as EXT4 in Linux. I think there is a Windows tool that will mount EXT4 file system images as well.
Bob
Comment
-
What I do is make a new system.img that is larger using DD.
Then I mount the new system and format it EXT4.
Then I mount the original system and copy everything over to the new system.
Now you have a system that allows you to screw around.
Here is the Linux script I made called mksyslarger.sh
Rename the original system.img to system_orig.img
Then run this script.
The output system will be called systemext4.img
#!/bin/sh
cp -r system_orig.img system.img
mkdir system
mkdir system2
sudo mount -t ext4 -o loop system.img system
dd if=/dev/zero of=systemext4.img count=115000
sudo /sbin/mkfs.ext4 systemext4.img
sudo mount -o loop systemext4.img system2
#copy everything over now!
sudo cp -r --no-dereference --preserve=all system/* system2
read -p ">-->Unmount systems - hit enter"
sudo umount system
sudo umount system2
read -p ">-->Clean up - hit enter"
sudo e2fsck -y -v systemext4.img
#delete the dirs
sudo rm -f -R system
sudo rm -f -R system2
sudo rm -f -R system.img
Bob"Pzebacz im, bo nie wiedzą, co czynią"
"Прости им, они не ведают, что творят"
"Perdona loro perché non sanno quello che fanno"
"Vergib ihnen, denn sie wissen nicht, was sie tun"
"Vergeef hen want ze weten niet wat ze doen"
"Pardonne-leur car ils ne savent pas ce qu'ils font"
"Perdónalos porque no saben que lo que hacen"
"Oprosti im, jer ne znaju što čine"
"Forgive them as they know not what they do"
Comment
-
Originally posted by Finless View PostWhat I do is make a new system.img that is larger using DD.
Then I mount the new system and format it EXT4.
Then I mount the original system and copy everything over to the new system.
Now you have a system that allows you to screw around.
Here is the Linux script I made called mksyslarger.sh
Rename the original system.img to system_orig.img
Then run this script.
The output system will be called systemext4.img
#!/bin/sh
cp -r system_orig.img system.img
mkdir system
mkdir system2
sudo mount -t ext4 -o loop system.img system
dd if=/dev/zero of=systemext4.img count=115000
sudo /sbin/mkfs.ext4 systemext4.img
sudo mount -o loop systemext4.img system2
#copy everything over now!
sudo cp -r --no-dereference --preserve=all system/* system2
read -p ">-->Unmount systems - hit enter"
sudo umount system
sudo umount system2
read -p ">-->Clean up - hit enter"
sudo e2fsck -y -v systemext4.img
#delete the dirs
sudo rm -f -R system
sudo rm -f -R system2
sudo rm -f -R system.img
Bob
Comment
-
Originally posted by alwaysbless View PostOk, so I made the script and changed permissions then executed it and it almost worked lol. Im still getting tons of errors about no space left on device when writing to system2/ and the img it wrote was only 58mb. My hdd has over 590gb of free space according to properties and df -h and df -i is confirming that so im not sure whats going on, maybe screwed something up with partitions while installing?
I have a thread here where I explain all this:
http://www.freaktab.com/showthread.p...cks-by-Finless
So this is getting off topic. Please take the questions about making ROMs to that post. I will answer there.
hint though... the COUNT= value in DD decides how big system2 will be. My example was just that.... the value I give there for sure is probably not large enough! Google Search "Linux DD" and see... there are many ways to set this value.
Bob"Pzebacz im, bo nie wiedzą, co czynią"
"Прости им, они не ведают, что творят"
"Perdona loro perché non sanno quello che fanno"
"Vergib ihnen, denn sie wissen nicht, was sie tun"
"Vergeef hen want ze weten niet wat ze doen"
"Pardonne-leur car ils ne savent pas ce qu'ils font"
"Perdónalos porque no saben que lo que hacen"
"Oprosti im, jer ne znaju što čine"
"Forgive them as they know not what they do"
Comment
-
Originally posted by Diaperman View PostHi, I'm new to this site. Has someone or can someone explain or lead me to an area of this site where it explains how to flash a rom using an apple computer. I have a Tronsmart T428 and want to update to latest 4.2.2 rom.
thanks
Bob"Pzebacz im, bo nie wiedzą, co czynią"
"Прости им, они не ведают, что творят"
"Perdona loro perché non sanno quello che fanno"
"Vergib ihnen, denn sie wissen nicht, was sie tun"
"Vergeef hen want ze weten niet wat ze doen"
"Pardonne-leur car ils ne savent pas ce qu'ils font"
"Perdónalos porque no saben que lo que hacen"
"Oprosti im, jer ne znaju što čine"
"Forgive them as they know not what they do"
Comment
What's Going On
Collapse
There are currently 2490 users online. 1 members and 2489 guests.
Most users ever online was 63,956 at 18:56 on 20 March 2025.
Comment