[DEV] unofficial CyanogenMod7 port for RK2818/RK2918 tablets - Android Software/Hacking General [Developers Only]

this is a work-in-progress development project for porting CyanogenMod 7 (gingerbread/2.3.7) and ClockworkMod Recovery 5 to RK2818/RK2918 tablets.
there is no support from any makers/vendors. you must agree all risks by installing non-supported files, it may brick your tablet, and you may lose official support/warranty.
* YOU MUST READ CAREFULLY POST#1, #2, AND #3!
* DO NOT USE FILES FOR OTHER TABLETS! IT WILL BRICK YOUR TABLET!
* project page
http://androtab.info/rockchip/cyanogenmod/
* RK2818 tested tablets
mivvy MIDroid A2
Craig CMP738A
RAmos T11AD
ACHO C901 PRO
ARCHOS 7htv2
4G Systems oneTab
Yarvik TAB210
... and more!
* RK2818 current status (2011/11/18)
not work:
3G, HDMI, and many things which you expect to work
work:
accelerometer, audio, gapps, hardware accelerated video, internal NAND flash, SD card, touchscreen with calibration app, USB host/device, USB GPS dongle, wlan
* RK2918 tested tablets
Yuandao N50DT
* RK2918 current status (2011/11/26)
not work:
3G, bluetooth, camera, hardware accelerated video, HDMI, and many things which you expect to work
work:
3D, accelerometer, audio, gapps, internal NAND flash, SD card, touchscreen, USB host/device, vibrator, wlan
* changelog
refer git log
* resources
http://www.cyanogenmod.com/ (What is CyanogenMod?)
http://wiki.cyanogenmod.com/index.php?title=Latest_Version#Google_Apps (Google Apps)
http://wiki.cyanogenmod.com/index.php?title=Building_from_source
http://source.android.com/source/
http://review.cyanogenmod.com/#q,status:merged,n,z (CyanogenMod merged changes)
http://forum.xda-developers.com/showthread.php?t=1286305 (rkflashtool)
https://github.com/naobsd/cm_device_rockchip_rk2818
https://github.com/naobsd/cm_device_rockchip_rk2918
https://github.com/naobsd/cm_external_skia/compare/gingerbread-naobsd (placeholder for patches to cherry-pick)
https://github.com/naobsd/cm_frameworks_base/compare/gingerbread-naobsd (placeholder for patches to cherry-pick)
https://github.com/naobsd/cm_packages_apps_TSCalibration
https://github.com/naobsd/cm_system_vold/compare/gingerbread-naobsd (placeholder for patches to cherry-pick)
https://github.com/naobsd/rkutils
* links
http://www.arctablet.com/blog/archo...se-cm7-android-2-3-market-root-archos-7-htv2/ ARCHOS 7HTv2
http://forum.archosfans.com/viewtopic.php?f=81&t=57534 ARCHOS 7HTv2
http://forum.archosfans.com/viewtopic.php?f=81&t=55132 ARCHOS 7HTv2 (not updated?)
http://forum.archosfans.com/viewtopic.php?f=80&t=57832 Arnova 10
http://www.forotablets.com/showthread.php/2190-New-CyanogenMod-V.7.1 bq Verne Plus
http://gathering.tweakers.net/forum/list_messages/1456249/last Yarvik TAB210

* How to dump stock update.img (if you don't have stock update.img)
1. get temporary root
2. dump update.img from backup partition with rkdump for android
* How to make update.img
1. unpack stock update.img for your tablet with AFPTool.exe(Windows) or rkunpack(Unices) (DO NOT USE FILES FOR OTHER TABLETS!)
2. replace boot.img and system.img with files from CM7
3. (if necessary) unpack system.img with fsck.cramfs(RK2818) or loopback mount system.img(RK2918), tweak accelerometer properties in build.prop, add gapps, remove/replace TSCalibration.apk, then repack system.img with mkfs.cramfs
4. repack update.img with AFPTool.exe(Windows) or rkafpack(Unices)
* How to flash update.img
1. use RKAndroidBatchUpgrade.exe(RK2818) or RKBatchTool.exe(RK2918)
(TBD)

* RK2818 issues
some apps get FC
no camera preview
no UI to change USB mode
no USB mass storage mode (mount from PC) under some condition
* RK2818 FAQ
- how to make update.img
http://wiki.archosfans.com/index.php?title=Dump_your_Home_Tablet_rom_and_create_a_custom_rom
- lags on initial boot
please wait several seconds after calibration screen popped
- install failed on some apps (e.g. Angry Birds)
remove SD card before install
- I want to change USB mode host<->device
host mode:
Code:
echo 1 > /sys/bus/platform/drivers/dwc_otg/force_usb_mode
device mode:
Code:
echo 0 > /sys/bus/platform/drivers/dwc_otg/force_usb_mode
or, try this app: http://forum.xda-developers.com/showpost.php?p=19414868&postcount=543
- lags on 3D apps
yes, there is no 3D hardware on RK2818
* RK2918 FAQ
- boot.img in SDK2.0 based ROM
in (some of) SDK2.0 based ROMs, new format is used for boot.img(and recovery.img). it's almost same as standard android boot.img format. it has both kernel and ramdisk.
in general, unpackbootimg/mkbootimg can be used to unpack/repack for this format. but it doesn't work with boot.img for RK2918 tablets. Rockchip uses non-standard way to generate hash value which is stored in header of boot.img. if you flashed repacked boot.img, your tablet will go into recovery mode. it means we can't make customized boot.img(ramdisk).
but there is workaround. we can convert SDK2.0 boot.img into pre-SDK2.0 format.
Code:
$ unpackbootimg -i boot.img
$ rkcrc -k boot.img-zImage kernel.img
$ rkcrc -k boot.img-ramdisk.gz ramdisk.img
then flash kernel.img into kernel partition, and ramdisk.img into boot partition.
- accelerometer tweaks
for Yuandao N50DT
Code:
accelerometer.flip_xy=1
accelerometer.invert_x=1
accelerometer.invert_z=1
* common FAQ
- no gapps
download gapps for CM7 and add files in zip into system.img
- how to use internal NAND flash as SD card?
Settings -> CyanogenMod settings -> Application -> Use internal storage -> On -> reboot
if enabled, internal NAND flash is mounted on /mnt/sdcard and SD card is mounted on /mnt/nand.
- I like portrait / my favorite portrait apps are upside down / accelerometer axes are wrong on some apps
make /data/local.prop with following 3 lines, then reboot.
Code:
accelerometer.hwrotation=270
input.hwrotation=270
ro.sf.hwrotation=270
- I want to do calibration again
delete following files if exist, reboot, run calibration app, then reboot again
Code:
/data/misc/pointercal
/data/misc/idc/*

Fun,
Any chance of a Telechip port?
Cheers

Craig CMP738a boots up and results are identical to your findings.
initial bootup.
the calibration utility hung for a few seconds and asked if it should be killed. waiting allowed the procedure to complete.
started the music app. started playing a song. no audio came from the speakers but audio counter counted up. Headphones did not have sound either.
Tried connecting to wireless, says obtaining IP address... doesnt seem to want to connect to WPA2 network of mine. but it did connect fine to my WEP network.
Trying to view the gallery program for photos is very laggy.
A few videos would play in the video program but they were all like slideshows. A few would not play at all. no audio from the videos obviously.
Phone app and Camera (crashes) app are useless on this device I have.
USB Keyboard works in the usb host port.
FAT32 Flash drive doesnt seem to mount automatic.
SDCARD doesnt seem to be recognized. (nothing in /dev?)
Very cool so far tho.
Edit: since I am using the stock kernel for this device I would think I could get the hardware working... audio... video??? or maybe I need the rockchip support libraries...

fun_ is working on audio support, but video support seems to be hard to add, any help is welcome

Hi,
I have already adapted CM7 to RK2808 on Rocktab resistive screen.
Sound works and video MP4.
If these elements can help you:
http://www.slatedroid.com/topic/14838-experimentale-cyanogen-cm7-080211/
I noticed a lot of files missing .so in the lib in your system.img.
For the sensors you can try to take those CM7 for HTC G1.
http://forum.xda-developers.com/forumdisplay.php?f=448
And rename for RK2818.
This had worked on CM6 on APAD after disabling the rotation parameters in Menu Cyanogen.

@lefeudedieu: Hi and thanks for your reply, I will try it

snipes420 said:
Craig CMP738a boots up and results are identical to your findings.
Click to expand...
Click to collapse
thank you for your report! I added CMP738A to "tested" list.
in general, it should work on most RK2818 tablets. I tested ~20 eclair/froyo firmware(boot/system.img) for other tablets on my mivvy A2, and they worked well. it should be same for my CM7.
snipes420 said:
initial bootup.
the calibration utility hung for a few seconds and asked if it should be killed. waiting allowed the procedure to complete.
Click to expand...
Click to collapse
some process is running in background. please wait several seconds
snipes420 said:
Tried connecting to wireless, says obtaining IP address... doesnt seem to want to connect to WPA2 network of mine. but it did connect fine to my WEP network.
Click to expand...
Click to collapse
hmm. I'm using both WPA and WPA2 enabled APs. I'll try WPA2-only AP.
snipes420 said:
Trying to view the gallery program for photos is very laggy.
A few videos would play in the video program but they were all like slideshows. A few would not play at all. no audio from the videos obviously.
Click to expand...
Click to collapse
no 3D hardware in RK2818.
hardware accelerated video is not supported on my CM7.
snipes420 said:
FAT32 Flash drive doesnt seem to mount automatic.
SDCARD doesnt seem to be recognized. (nothing in /dev?)
Click to expand...
Click to collapse
I didn't test USB drive yet. I have only multi-card-reader, it doesn't work well on android. I'll try it when I get simple USB flash memory stick or something.
SD card should work... please show me detail if you can't investigate it.
snipes420 said:
Edit: since I am using the stock kernel for this device I would think I could get the hardware working... audio... video??? or maybe I need the rockchip support libraries...
Click to expand...
Click to collapse
please use your own bootloader/kernel because there is no source.
audio will work, but I didn't do anything yet.
to support hw video, libstagefrighthw.so for RK28 is needed. if you find it, please tell me.

Flash on my Acho C901 Pro MID ( www.acho.com.cn ), working fine, but when enable Wifi, MID keep restarting and cant open screen anymore.

Thnks on your new image.
Flash on my Acho C901 Pro MID ( www.acho.com.cn ), working fine, smooth. Wifi is working now. Everthing looking ok. Web browser seldom force close. Some application fail to install. So far so good.
Bugs:
Install market: cannot open
Install gmail : cannot open
Install youtube: can hear only sound, no video
Login gmail account in browser: Browser forced close.

aduhai said:
Thnks on your new image.
Flash on my Acho C901 Pro MID ( www.acho.com.cn ), working fine, smooth. Wifi is working now. Everthing looking ok. Web browser seldom force close. Some application fail to install. So far so good.
Bugs:
Install market: cannot open
Install gmail : cannot open
Install youtube: can hear only sound, no video
Login gmail account in browser: Browser forced close.
Click to expand...
Click to collapse
thank you for you report.
try to remove SD card for app install failure.
I can't understand "Install market/gmail: cannot open". do you know how to add files into cramfs system.img?
market is working for me. I can see non HQ video on youtube. (poor frame rate, of course)
it seems bit unstable (app died silently) than before.

fun_ said:
thank you for you report.
try to remove SD card for app install failure.
I can't understand "Install market/gmail: cannot open". do you know how to add files into cramfs system.img?
market is working for me. I can see non HQ video on youtube. (poor frame rate, of course)
it seems bit unstable (app died silently) than before.
Click to expand...
Click to collapse
Yes remove SD can resolve problem.
Ok, I dint know how to install gapps-gb-20110307signed.zip. I just unziped the file, and copy all file under app folder to my sd card. I double click the file and its install. When I tried to run the market and gmail, it just open in white screen and immediate close.
The other bug is, I cant login to google account in browser, It just hang and force close.

aduhai said:
The other bug is, I cant login to google account in browser, It just hang and force close.
Click to expand...
Click to collapse
try 2011/5/19 image. it should fix crash on google account sign in page.

fun_ said:
try 2011/5/19 image. it should fix crash on google account sign in page.
Click to expand...
Click to collapse
downloading..... and report it later.
Crash on google account sign in page Fixed.
but still cant open market, maybe I installed without a proper way. Got to try more.

realy looking forward to a stable release for this.
got an archos 7 ht v2 wich is not realy slow.
also have a HTC Kaiser wich runs on Cyanogenmod 6. and runs realy smooth.. lot better then my tablet.

Is there any clockwork mod for RK2818 , or can use any compatible clockwork mod ?

aduhai said:
Is there any clockwork mod for RK2818 , or can use any compatible clockwork mod ?
Click to expand...
Click to collapse
No, there's no recovery, only standart

One more bug,
this rom drain my batteries fast.

aduhai said:
Is there any clockwork mod for RK2818 , or can use any compatible clockwork mod ?
Click to expand...
Click to collapse
"install zip", and backup/restore on kernel/boot/system are difficult.
if you are OKay only backup/restore/wipe on data/cache, I'll try to make it.

Related

[ROM] CorvusVegaRom_0.5 (based in Vegan-Tab from Gojimi)

Cleaning post and new version 0.5
CorvusVegaRom with this features:
ROM Based in Vegan-Tab done by Gojimi for Viewsonic Gpad
NTFS, CIFS, and some other kernel tweaks
New kernel based in Buzz
Patched against last malware (search xda for info)
CWM recovery added directly in the installation, and app to access it too.
Full Market working
Automount of FAT and NTFS devices
CIFS/NFS support (download cifs manager or Mount Manager from market)
VPN support (tun.ko module in /system/lib/module)
Sqlite3 exec for modify app databases
gps.conf updated for better fixing
apns-conf.xml updated for 3G dongles
Reboot option added to shutdown menu
Fix BSOD when reboot, no more black screens...
Multitouch for Google Maps
Ads blocked using host file. (If you have any problem with this go to /system/etc/hosts and delete any problematic line).
Performance fix, now in smartbech 2011 we get +3000/+2000 points !!!
Screen calibration app added.
Added a script to know if we are in host or slave mode, and GscriptLite that is needed.
Fixed problem with sd card and usb pens in host mode.
Some apps moved to /data to free space in /system
Updated Gallery3d
Added VTL.launcher
Added Wfi Ad-Hoc support, so now can connect to ad-hoc networks.
Added Notion Ink Keyboard. (not tested)
BEFORE MAKE ANYTHING, PLEASE READ THIS FULL POST AND DO A NANDROID BACKUP (WITH CWM). I WILL NOT TAKE ANY RESPONSABILITY IN ANY WAY IF YOU BRICK, EAT, OR SIT YOUR TABLET
NOTES
For enter usb host mode:
Press power button, once display get power (you will see the diference), press back button and hold until finish booting.
For know usb mode:
In Gscript Lite, we only need to create a new script and use "cat /data/var/mode" without quotes and with "Needs SU?" marked. It will return in what mode are we, slave or host.
For 3g Dongle:
Start in host mode (back button pressed until vega boots) with 3g dongle inserted.
Once started, extract and put back 3G dongle. If you have PIN it will ask for it.
Test dongle (mine green is working, light blue is detected, but not connected, dark blue is connected). If it stalls in light blue, you have a problem with apns, edit /system/etc/apns-conf.xml or pm me.
For Launcher:
In first boot you can chose default android launcher or default Gojimis's VTL.launcher. Set as default the one you like, or install another one.
For Links2SD:
In Links2SD you get an error first time you start it... reboot tablet and works ok.
SEMI-UPDATE (DO A BACKUP):
For the people with game problems, try this: http://vegantab.gojimi.com/download/patch....ove.Gsensor.zip (Yes i know it says that is for the opossite thing... try it)
I test it with Raginf Thuder and works, but sometimes it goes crazy.
AS ALWAYS DO A NANDROID BACKUP BEFORE DO ANYTHING WITH YOUR TABLET.
Installation:
Using CWM (RECOMENDED).
Do a Full Wipe before flashing the rom.
Copy CorvusVegaRom.zip to sdcard and update like any other update.
Dont do a wipe after or the apps included in this rom in /data will be deleted.
Not using CWM. (NOT RECOMENDED)
If you ave CWM, use the other way, if not, use this.
Unzip the file and use install-x where x is your operating system. If windows doesnt recognize the tablet use the usb drivers that are into the zip. This is the way that Modaco ROM is installed so if you have problem, please go to its post to see how to resolve.
Once booted, go to Recovery Boot and do a full wipe. Once done, install the apps that are included in the second zip (data_apps.zip)
CorvusVegaRom 0.5 : http://www.multiupload.com/D9V2VWM243
data_apps.zip : http://www.multiupload.com/CPUZOLTLHO
Thanks to:
Gojimi for Vegan-Tab, VTL.launcher and the info shared to everyone
BumbleBee by his kernel and help
Paul by his scripts that speed this a lot
Koush by scripts for installing kernels
All users from #tegratab in freenode for helping me.
I think dont forgot anyone...
Corvus.
Hi with CWM i get the msg
assert failed : write_raw_image ("/tmp/boot.img", "boot")
E:error in /sdcard/corvusvegarom.zip
(status 7)
installation aborded
It boots and installs for me thru clockwork
dkampo said:
Hi with CWM i get the msg
assert failed : write_raw_image ("/tmp/boot.img", "boot")
E:error in /sdcard/corvusvegarom.zip
(status 7)
installation aborded
Click to expand...
Click to collapse
disable script asserts in cwm
Enable or disable same result but is working i reboot and everything is fine. Is going to be a problem if i use it?
I forgot to say a big thanks is fast and smooth
dkampo said:
Enable or disable same result but is working i reboot and everything is fine. Is going to be a problem if i use it?
I forgot to say a big thanks is fast and smooth
Click to expand...
Click to collapse
should't think so if its in the temp folder run it for a while and see how it goes
small taskbar would be nice
I cant install twitter i get error message missing shared library
Link has been disabled
It's really fast and stable. Thank you very much.
when you say market working like xoom - is that the tablet market youve got working? or the normal market thats the same on phones, just in landscape? as the market on the xoom is different than to the ones that are on our phones.?
up because updates
my battery is really really good, but it gets hours to fully charge...
-
thank you again, your rom is far faster and more stable then cm7, for me...
-
should I wipe, or is it only update?
makokoko said:
my battery is really really good, but it gets hours to fully charge...
-
thank you again, your rom is far faster and more stable then cm7, for me...
-
should I wipe, or is it only update?
Click to expand...
Click to collapse
Update must work...
Corvus.
corvus said:
Update must work...
Corvus.
Click to expand...
Click to collapse
Thank you for your fast work. Is the shared library files for twitter fixed?
I've just tried it and, sadly, it isn't fixed. Other Twitter clients work fine, though.
Coul someone put what is the exact error? what is the name of the shared library?
Thanks.
Corvus.
corvus said:
Coul someone put what is the exact error? what is the name of the shared library?
Thanks.
Corvus.
Click to expand...
Click to collapse
It doesnt say but when trying to install twitter and tweetdeck (plume is ok) it fails and it gives reason: missing shared librarys? It doesnt say more. But i know Apache14 has the same issue in his new Vega rom found on Modaco BuzzVega rom
I dont know if its any help but in the buzzvega rom thread on Modaco they also says it effects F1 app and weatherbug elite app maybe it somewhat clearer what lib files it is.
corvus said:
Coul someone put what is the exact error? what is the name of the shared library?
Thanks.
Corvus.
Click to expand...
Click to collapse
Here you have the logcat output:
Code:
D/PackageManager( 966): Scanning package com.twitter.android
E/PackageManager( 966): Package com.twitter.android requires unavailable shared library com.google.android.maps; failing!
W/PackageManager( 966): Package couldn't be installed in /data/app/com.twitter.android-1.apk
D/dalvikvm( 966): GC_EXPLICIT freed 28146 objects / 1258048 bytes in 56ms
D/vending ( 1582): [7] LocalAssetDatabase.notifyListener(): 4216953293088615273 / INSTALL_FAILED
D/vending ( 1582): [7] VendingNotificationManager.showNotification(): Showing notification: [AssetID=4216953293088615273, NotificationID=1122387948, Title=Twitter, Message=No se ha podido instalar la aplicación.]
I/vending ( 1582): [7] MyPackageInstallObserver.packageInstalled(): Package install from content://downloads/download/39 failed: Falta una biblioteca compartida.

[ROM] (Flytouch 2, SuperPad, WWE10) Froyo

This thread is for the custom Froyo rom for the Flytouch 2. It is a port of the first Flytouch 3/Superpad 2 Froyo rom, adapted to run on the flytouch 2. I will update this post whenever a new version has been released.
This rom will only run on tablets which display a version number in the bottom-right "Infotmic" screen when first turned on.. If yours doesn't display a number there, you will need to flash firmware v2852 first, see below in FLASHING V2852
INSTALLATION
Installation is slightly different from normal releases because it requires flashing in 2 steps. Luckily, it's really easy:
1. Download bootable SD-card image and unzip. Pick an image from the RELEASES section at the end of this post.
2. Write image to an SD-card that's at least 1GB in size using Win32DiskImager:
Get Win32DiskImager here: https://launchpad.net/win32-image-writer
In Win32DiskImager: When you open it, there is a button to browse the .img file and after that, at the right of this button there is a selector for the SD-card. Select it, then click write and it's done.
When finished, take out the card.
In linux, you just unzip the file and use dd to write it to the sd-card:
Code:
dd if=/path/to/sdcard.img of=/dev/sdX # (where sdX is your scsi disk device, check dmesg)
3. Turn off tablet and put sd-card in TOP slot (between the 2 usb ports).
4. Turn on tablet. It will report that it is booting off the sd-card, and that it's flashing kernel + filesystems.
5. Take out the sd-card when the tablet asks you to do so (takes less than a minute). Put it in the OTHER sd-card slot (bottom one), and reboot the tablet by holding down the power for 10 seconds to turn it off, then press it again to turn it on.
6. You will now see the tablet booting with a *GREEN* screen. The screen will flash twice to indicate it's starting. The flashing itself will take longer than in the previous step, a few minutes. If succesful, it will automatically reboot, after which you're done and you're booting the new firmware! You'll see a different boot screen (equalizer on a black background)
7. After it has booted and you have unlocked the screen, reboot the tablet first thing! First boots in android always tend to be behave erratically. This is unrelated to this firmware and applies to all Android setups.
If step 6 fails (which is very unlikely), it will stay on the green screen and it will keep on flashing the screen. In that case, you'll have to turn it off. Most likely problem for this is a corrupt SD-card. See troubleshooting below.
Make sure to never put that sd-card back in the top-slot without erasing it first, as it will reflash your tablet!
TROUBLESHOOTING
The 'green screen' keeps flashing!
The installer will dump a text file on the root of the sd-card which you can inspect. The file is called fail_reason.txt. If no such file exists, things are seriously wrong and the tablet couldn't even properly write to the sd-card. If using another SD-card, or rewriting the SD-card doesn't help, please upload the fail_reason.txt file here.
Flashing was succesful, but the system freezes at the android animation!
For this firmware to work, you need to have a recent version of u-boot. You can tell if you have this by looking at the INFOTMIC bootscreen you see when you turn on the tablet. If the bottom right corner does not show a version number, then you don't have it.See instructions below.
FLASHING V2852
You need to flash this firmware to install a new version of u-boot. To flash this firmware, you will need to connect your tablet to your PC using an USB A-A cable, OR create a bootable SD-card.
Download firmware V2852: http://www.mediafire.com/download.php?3bkklw36b1414nd
Download and unpack IUW: http://www.mediafire.com/download.php?3572bd7zfjo0r0y
Start IUW
If you use an USB cable: Click 'Link USB' on the left, select 'easy burn' from USB Mode pulldown in the right. Connect tablet to PC with the tablet turned offf, then turn it on by pressing & holding the menu+home buttons, then pressing the power button until it turns on. Release the menu+home buttons after a few seconds. Windows should now detect a new USB device. Install the drivers that are in the iuw1.1/otg_driver directory.
If you create a bootable SD-card, Click 'boot disk' on the left instead. Select sd-card to flash on the right
Select the IUS file form the v2852 firmware under 'Choose a wrapped image'
Click 'burn' to flash the tablet or create the sd-card. If you created an sd-card, boot the tablet with the sd-card in the top-slot, between the 2 USB connections.
TODO
How to enable 3G support for USB dongles?
(**) Tested:
wifi, ethernet port
battery status works, g-sensor works
touchscreen works, including calibration
HD video playback works (I recommend Meridian player)
Market works (full), Youtube works
angry birds works ( thought I'd mention it )
The firmware has already been rooted! You can connect using adb over wifi, and type 'su' to become root. Find your IP address using the Android System Info app.
GPS confirmed
VIDEO
Video demonstrating how to flash the tablet after having created the bootable SD-card: http://www.youtube.com/watch?v=47kf4-Vbba8#t=3
RELEASES
April 24th 2011, V5: http://www.mediafire.com/?1ka7ngpi82grmfm
Added older version of YouTube (1.6.21) which works
Fix touchscreen calibration
Added LauncherPro as alternative launcher
March 2011, V4: http://www.mediafire.com/?oc1bwnq71smb09k
verandi said:
Hi everyone.
I just made a personal version of system.tar.gz, and I thought it could be usefull for someone.
Most considerable changes:
Calendar and contacts synchronization now working again.
Simple stock froyo keyboard, without chinese characters.
Replaced youtube with the old working version.
Market updated to last version (no paid apps, though.).
Default launcher replaced with launcher pro, which is considerably faster.
Removed phone and telephony settings (see below)
Other changes:
Removed stock browser, replaced with dolphin browser HD.
Removed default file explorer, replaced with File expert (first free file explorer with working root that I found).
Changed alarm clock.
Changed calculator (but has wrong visualization).
Changed music player with music mod.
Added facebook, maps (+ navigation + latitude +places), chrome to phone, google search, google reader, terminal emulator, Titanium backup, voice search. adobe reader.
Maybe I deleted some other stupid flytouch stock apps, but actually I don't remember.
Warning, notes etc...:
All apps are free apps from market.
Phone apps (Phone.apk, TelephonySettings.apk) removed for test, due to suspected battery drain (Someone said so...), so:
Phone settings don't work (gives you force close when you tap on mobile settings menu)
Don't install if you use 3g adapters, as I think you won't be able to use them.
Maybe some future workarounds for paid apps on market won't work.
App2sd doesn't work. (Didn't even work before. I think there's some problem in the kernel with device mapper and crypto). I'll try to implement the fake app2sd that uses an ext partition on sd.
This is just a personal versionof stargulus' system files with apps I'm used to have on my phone, so maybe it won't fit you.
How to install:
First important step: boot in recovery mode (back + home +power until you get in recovery menu), and wipe cache and data. This must be done. It also helps to have stragulus' calibration file installed correctly.
Prepare the sd as described in the first post of this thread using the last Stragulus' sdcard image (v4, See link in this post).
Go to "stage2" directory and replace system.tar.gz and system.tar.gz.md5 with the downloaded ones.
Flash.
The first boot will be quite long, but it's normal.
While using the flytouch for the first time, it will probably lag and hang. Just reboot and it won't happen anymore.
File link: http://www.multiupload.com/Z9CONJVPQO
I hope this will be usefull. Advices are welcome.
Click to expand...
Click to collapse
Cheers! I welcome custom mods of the base rom. I'm willing to add them as alternatives to the first post by linking to the introductory posts. In this case, it looks like parts of it are suitable for integrating into the base froyo rom (e.g. calendar & contact sync fix). What exactly did you do to fix those?
Wonderful, downloading now at 7.8K/sec (why sooooo slow?)
Is Google Sync fixed?
Thanks,
Barak
Later:
Well, if I add Verandi's MOD I get sync but I loose calibration option.
Still, I prefer the MOD with sync.
Thank you guys. Amazing Job !!!
1-5-2011
Please note that verandi has created a V5 mod that adds sync option without eliminating calibration.
http://forum.xda-developers.com/showpost.php?p=13343444&postcount=54
Good luck.
Your uboot - 0.6.1.2 (587) http://www.mediafire.com/?4hx8xt38vnhh22b
My uboot - 0.6.1.5 (587) http://www.mediafire.com/?bv4ixzeq34q5bi7
what's the latest?
which should I use?
EDIT:
If possible enable a swap partition to optimize tablet in ROM? (we have little RAM)
Camera have a problem. Green image in V5 (24/04/2011)
@ Stragulus
I've been waiting for
Thank you for your work
Market will not dowload
Well once again my hats off to you Straguls for a job well done I installed the version 5 rom with no issues however the Android Market still only displays the free apps and will not download and install any of the apps it states download unsuccessful any help with this matter would be greatly appreciated.
Thanks
Steve
stragulus said:
This rom will only run on tablets which display a version number in the bottom-right "Infotmic" screen when first turned on.
Click to expand...
Click to collapse
In my case loader version number is missing. But u0 is 0.6.1.2_1.4.587_OV2655 and u-boot from 2852. And all work fine.
Probably condition is flashing firmware 2852 in the tablet instead of only u0?
IMHO.
Because the firmware is full image and contained u-boot and u0. Flashing u0 need only if camera don't work with 2852 from full image. Of course, if the tablet has not been purchased already with firmware 2852 and above. Without this step you will get many reports of "fre-e-e-ezing" or "stop in android on screen" like in the previous thread.
hello
I have stitched from card Froyo V5
The tablet is loaded and asks calibration, but it does not work: (
Was 3245, but it has ceased to be loaded and I have updated on Froyo
I do not know what at me uboot how it to look? Probably to update it with sd?
jp08 said:
загружатся
Click to expand...
Click to collapse
По русски спроси. Я tuzzz c форума china-iphone.ru.
Ask question in Russian. I tuzzz from the forum china-iphone.ru.
Вообщем поставил Froyo (v5)
после прошивки при первом запуске появляется калибровка экрана, но на нажатия никак не реагирует
поставил назад 3245, на ней все нормально
Возможно ли это из-за загрузчика uboot, как можно посмотреть его версию и возможно ли обновить его с SD, т.к. возможности с ПК нету?
google translate:
In general set Froyo (v5)
after flashing at the first startup, a calibration screen, but clicking does not react
put back 3245, her everything is ok
Is this possible because of the boot uboot, as you can see its version and whether it is possible to update it with SD, because capabilities with a PC no?
Answer on russian forum.
Also read from here and below.
_barsuk_ said:
In my case loader version number is missing. But u0 is 0.6.1.2_1.4.587_OV2655 and u-boot from 2852. And all work fine.
Probably condition is flashing firmware 2852 in the tablet instead of only u0?
IMHO.
Because the firmware is full image and contained u-boot and u0. Flashing u0 need only if camera don't work with 2852 from full image. Of course, if the tablet has not been purchased already with firmware 2852 and above. Without this step you will get many reports of "fre-e-e-ezing" or "stop in android on screen" like in the previous thread.
Click to expand...
Click to collapse
That could be true indeed! I thought those who fixed their problem only flashed U0, but maybe all of them actually tried to flash all of v2852 with the IUW tool. Upshot here is that it should be possible to flash the entire firmware using a bootable SD-card, e.g. not requiring an USB cable.
Can anyone confirm that creating the bootable SD-card for FW2852 using IUW as described in the first post fixed their install of the froyo setup?
If you create a bootable SD-card, Click 'boot disk' on the left instead. Select sd-card to flash on the right
Select the IUS file form the v2852 firmware under 'Choose a wrapped image'
Click to expand...
Click to collapse
After Burn a card sd the empty
This way does not work
Used Win7 x64 and virtual WinXP x86
Excellent Work
Many thanks stragulus!!!!!!!
Now I once again have a usable Pad - the Calibration works perfecly!!!
My route to Froyo was from 3245 to v4. I HAD to flash U-Boot-Nand FIRST. This gave me the Infotm code in the bottom R.H.corner. The only problem was with the calibration.
Again MANY THANKS. Please continue to develop for the Pad.
jp08 said:
After Burn a card sd the empty
This way does not work
Used Win7 x64 and virtual WinXP x86
Click to expand...
Click to collapse
Hmm. I do now recall that someone tried all those methods before to no avail. When I flashed this firmware, I think I did:
* Flash all of FW2852 (over USB)
* Found out that it didn't work 100% as it still booted an older ramdisk
* So after that, flashed U0 with u-boot-nand.bin. That triggered the 2-minute tablet going crazy on first boot.
* Then flashed all of FW2852 again, and now it worked.
Soo.. I think bottomline is, if you haven't seen the tablet go crazy for 2 minutes, it probably didn't work. Question is, is just flashing U0 once with u-boot-nand.bin enough..? It appears this does not work for everyone!?
stragulus said:
Cheers! I welcome custom mods of the base rom. I'm willing to add them as alternatives to the first post by linking to the introductory posts. In this case, it looks like parts of it are suitable for integrating into the base froyo rom (e.g. calendar & contact sync fix). What exactly did you do to fix those?
Click to expand...
Click to collapse
Hi!
I replaced GoogleContactsSyncAdapter.apk and GoogleCalendarSyncadapter.apk with the ones from my phone. I am 98% sure I replaced only these two, because I didn't note down the names.
Now I'm trying to solve the next problem I have in the list: I can't leave the pad in standby, as it drains the battery like it was awake.
Yesterday I had a look at proc/wakelocks file to see which processes are requesting wakelocks.
Comparing this file to others around the net and the one of my phone, I found out that some processes were active during standby (they had 0 value in sleep_time row).
Now I haven't here my flytouch, so I can't be precise (I'll edit this lines next days), but I remember that some processes and powermanager were never sleeping (in all other wakelocks files, powemanager was sleeping on standby but main process not, so I think powermanager is faulty and main process not.).
Powermanager is a class contained in system/framework/services.jar so I tried replacing this file with my phone's one. It worked as the wakelocks file was showing that powermanager began to sleep on standby, but I had no improvement in battery life on standby, as, I'm quite sure, the other processes prevent the full sleep of the device.
To you and everyone who reads this: can you give me a help?
Can you fully recharge the flytouch, then disconnect the power supply, note down the start time, live it in sleep mode and then measure how long it takes to get discharged?
It tried myself today: unplugged at 16.30, left it in standby, died at around 19:20 ---> 2h50m of battery power on standby.
(If you also can tell me how long it stays on when you use it, and what kind of use you made, I would really appreciate too! )
Hail to Stragulus.. unlocking the beast!!!!
stragulus,
as usual.. I am riding on someone else's brilliance.. thanks for the update..
Will load it up tonight when get home from work..
My only wish is app2sd...
it has made such an improvement to my Evo with ability to load programs in..
So if someone wants to come up with a fix.. I am sure you will make many internally grateful!!!!
Edit after flashing:
Flashed the clean version WITHOUT verandi addons..
the Calibration works perfectly
feels fast and clean..
had problems with launcher pro .. and Titanium backup..
for some reason using Launcher pro it would not allow Titanium to see the sdcard.. thus couldnt restore my backups..
Played round for a while.. upgraded to Titanium 3.6.1.1 same thing..
went in and wiped Dalvik cache.. still no go..
have shut down launcher pro and installed ADWlauncher (almost the same as launcher pro)
walla.. now Titanium is seeing the SDcards and backup.. confirmed that it restored backed programs and data..
Market is working for me.. just wondering if we can port market from Myn’s Warm TwoPointTwo - RLS 5 into this rom..
as this may be the workaround that will get past the only free apps showing.. I am using it on my Evo and in China..
so usually only get to see free apps.. but with MWTPT I am getting all apps.. I do understand there is a app floating round that is suppose to be able to reset Market in to thinking it is in a zone that will allow it to show all apps.. may need it to load in to this Rom..
Will put it through its paces and report back over the coming week..
verandi said:
It tried myself today: unplugged at 16.30, left it in standby, died at around 19:20 ---> 2h50m of battery power on standby.
(If you also can tell me how long it stays on when you use it, and what kind of use you made, I would really appreciate too! )
Click to expand...
Click to collapse
Hmmm. This time is extremely low for standby mode. I use kernel from 3245. With this kernel battery indicator won't work properly but OS works more stable.
Also I removed Phone.apk and TelephonyProvider.apk. I don't need 3g modem. And 3g modem still does not work with this firmware.
With full charged battery I disconnected charger from tablet at 22:00 (in my local time). Now is 5:25 in my local time and tablet has ~4% battery indicator. From my experience tablet shut down after 5-10 minutes. All this time tablet is in standby.
Verandi
Excellent work and thank you for the Google sync fix - it makes my wowpad WOW!!!
Can you please add these files to the V5 version? Without them there's no sync. If I add your V4 files to the V5 rom there's no calibration. I wonder what else is lost !!!
Thanks,
B
stragulus said:
Cheers! I welcome custom mods of the base rom. I'm willing to add them as alternatives to the first post by linking to the introductory posts. In this case, it looks like parts of it are suitable for integrating into the base froyo rom (e.g. calendar & contact sync fix). What exactly did you do to fix those?
Click to expand...
Click to collapse
Great job. Thank you about that. I've a little question.
I've updated my Flytouch with you sdcard V5. Everything works fine, but i can't get the connection with USB 3G dongle. How i can do ?
There's a program to get the connections ?
I've tried with "quick setting" but nothing happens.
I'm looking forward to hearing from you about that.
Best regards

[ROM] (Flytouch 2, SuperPad, WWE10) 2.2 v2.1 #3925

Thanks to kiodo1981 for bringing this to us so quickly
Click to expand...
Click to collapse
THIS ROM MAKES THIS PAD ROCK NOW
For now its back to using IUW to do either one of the versions..
you will also need to have done a U-BOOT-NAND upgrade at some stage.. and need to be showing at least uboot - 0.6.1.5 (587) at bootup at the right hand bottom of our screen.. if you dont have this then you will need to do it..
1: Here's a new link by Smarkies that has a great pictural step by step flash guide
http://forum.xda-developers.com/showthread.php?t=1074251
2: This is the new Flashable via SDcard 2.2 v2.1 thanks to vihtor
Originally Posted by vihtor
Try this one: depositfiles.com/files/dqp3xdrcg
But i am not sure that this ROM compatible with all uboot's.
Click to expand...
Click to collapse
instructions.. thanks to Jiggity Janx
CONFIRMED #3925 2.2 v2.1 bootable sd install. One step process. Great job!
(for those wondering I have 6.1.5 (559) uboot so any at that or later should be allright)
EDIT: IF you have at least 6.1.5 (559[or higher]) showing on the Infotmic screen when booting you should be able to 1) download the .img file at the link above, 2) burn the .img file to an sd card using win32diskimager (or winhex), and 3) insert the sd card into slot between 2 usb ports while booting to update to 2.2 v2.1.
PS Not only does camera still work clearly for me on 559, camcorder records now.
Click to expand...
Click to collapse
3: Ramdisk work around
http://forum.xda-developers.com/showpost.php?p=13974529&postcount=58
read posts from about 55-58 on Smarkies, why it is a good idea to re-flash the ramdisk
other versions if you have no success with the one above....
here's a link to the files you need.. iuw1.1-english
http://www.fileserve.com/file/taD2UBA
plus instructions..
http://www.fileserve.com/file/6Hn9ytR
Use IUW to make a bootable sdcard.. this is first version.. still stable, it is posted for those that dont want to go straight in to flashing a unwrapped image file.. if you use the instructions you should be able to just dump/flash this to your usual bootable sdcard.. stick it in the top slot and it will upgrade to this version.. no usb needed.. (note.. you will still have needed to have upgraded your "u-boot" at some stage... read further down for this..
ROM 2.2 V1_8
http://www.b2cus.com/software/WWE10B_Android_2_2_V1_8_U0M_GT2005.rar
2ND VERSION -
Warning - be slow and sure about what you do here.. you can brick your pad if you burn the wrong files... you have been warned..read the other threads before you do anything.. and have the opened IUW instructions with the pictures if you are unsure...
1st use one of these...
uboot - 0.6.1.5 (587)
Originally Posted by l33tlinuxh4x0r My uboot - 0.6.1.5 (587) http://www.mediafire.com/?bv4ixzeq34q5bi7
Click to expand...
Click to collapse
confirmed working and Roots for me ---- But no Camera for me
or
Uboot - V 0.6.1.2(587)
thanks to veryjo http://www.android-hilfe.de/attachments/apad-gf-10-flytouch-2-forum/31799d1302373904-installationsanleitung-flytouchii-froyo-2-2-stragulus-u-boot-nand.zip.zip
Click to expand...
Click to collapse
Confirmed working, Roots and camera for me working
MAIN ROM FILES
Originally Posted by kiodo1981
2.2 v2.1 #3925 http://www.b2cus.com/software/flash10.1-android2.2.rar
Click to expand...
Click to collapse
Confirmed working and "ROOTED" yeha.
Confirmed that it is 2.2
we need one of the guru's to pack it into a bootable sdcard format now.. for the mases..Urgently so we don't get too many bricked pads
ROOTING
Thanks to Barsuk..
Root with launcher pro only. Into launcher pro adding activity "Development" to desktop and use it then z4root.
Click to expand...
Click to collapse
or
Universal root - seems to work for me
Click to expand...
Click to collapse
Jogor said:
Working and rooted.
I installed #3656 first and skipped the UO file when installing this and everything worked great. I installed the newest UO 0.6.1.5 () too and root seems to work after that too.
What I really like with this release is that swedish language is included (was missing in all updates after 1623) and ofcourse that it's Froyo!
To get Titanium Backup to work you will have to copy your old TitaniumBackup folder from the SD card to the new created when you installed TitaniumBackup, after that TitaniumBackup will find all your backuped apps.
It seems like both Flytouch2 and Flytouch3 are at version #3925, maybe the are compiling new versions for both pads at the same time now, so we can count on a new version when Flytouch3 gets one?
Click to expand...
Click to collapse
NOTE: do not use the update software on the pad even through it says there is an update available.. it will take you back to firmware: 2.1-update1 V1.8#2752
kernel version : 2.6.32.9
reserved
reserved for more info
Bugs so far.. will update as the forum grows so that we have a reference page at the front.. saves a lot of reading later if this grows too much..
Please report your bugs and we can get people to work out fix's for you..
1: Ndrive does not work in this version
2: Small amount of people experience has Wifi connection/dropout problems - yet to find a fix..
Also no confirmed tests on Ethernet connections as yet - will confirm once we get some feed back - I am in Singapore airport and wasn't able to use the the Ethernet plugin for net.. so will check it out over the next few days as I will be in different Hotels so can test connections on the road
3: No apps2sd --- hope some one smarts finds a work around.. it would be killer if we could redirect some of the apps to see the SD1
A note on this...
in 2.2 V1.8 the file structure is sdcard local ram storage.... and ... SD1 - sdcard storage.. and SD2 -
in 2.2 V2.1 file structure is Local ram storage... and SDcard 1 and 2
both are locked in to using the local partitions for program storage and program data storage..
Which is a shame as things like ebooks and heavy graphic programs it would be nice to send the storage to SD1 or 2
This is fixed.. look at Smarkies thread for work around..http://forum.xda-developers.com/showthread.php?t=1074251
4: Synchronization contacts and google calendar - Mixed bag on this one.. some get it some don't...might be a cache thing..
Fix once again provided by Barsuk .. check posts from Capeschae and Barsuk for fix.. they are from posts 121 pg13 - 126 pg 13
5: Paid Market apps - This is because of the China location block from Google more on it http://forum.xda-developers.com/showthread.php?t=551929&page=3
there seems to be a fix thanks to Barsuk..
Problems with market. Not all applications are available. Workaround: clear data for Google Services Framwork then force stop it then reboot tablet.]
Click to expand...
Click to collapse
In this rom i see one bug. I am can't explore my SD card that content two partitions - Linux swap partition and FAT partition. After remove the swap partition, i can see the card in file manager.
I have to thank for this link www.b2cus.com/software isergio
vagros said:
In this rom i see one bug. I am can't explore my SD card that content two partitions - Linux swap partition and FAT partition. After remove the swap partition, i can see the card in file manager.
Click to expand...
Click to collapse
Yes..I had that problem too..as tried to set a cache Linux as well..had a God arwful time with it..I think it is something to do with how they have setup the drives for the internal ram on the pad..
Hopefully one of the guru's will grab this then work out how we can get real apps2sd..then we will be laughing..
Sent from my warm evo using XDA App
Originally Posted by kiodo1981
2.2 v2.1 #3925 http://www.b2cus.com/software/flash10.1-android2.2.rar
Click to expand...
Click to collapse
I installed this official Froyo too. It's very, very fast, more than all the different firmware tested from here!
Some remarks/questions:
- The camera is not working anymore, the preview screen shows green or sometime other colors...
- A lot of apps are pre-installed, meaning that it is impossible to update them (Dolphin Browser, Skype, Facebook etc...)
- Is it possible to install Flash Player on it? Will it work? Does anybody tried?
- Is it possible to overclock the Flytouch2 with this rom? Is the kernel overclockable?
Thanks,
Tuc
Tugdu77 said:
I installed this official Froyo too. It's very, very fast, more than all the different firmware tested from here!
Some remarks/questions:
- The camera is not working anymore, the preview screen shows green or sometime other colors...
- A lot of apps are pre-installed, meaning that it is impossible to update them (Dolphin Browser, Skype, Facebook etc...)
- Is it possible to install Flash Player on it? Will it work? Does anybody tried?
- Is it possible to overclock the Flytouch2 with this rom? Is the kernel overclockable?
Thanks,
Tuc
Click to expand...
Click to collapse
i can help for the camera-problem...
install after installing FW this Uo: http://www.android-hilfe.de/attachm...uchii-froyo-2-2-stragulus-u-boot-nand.zip.zip
now the camera works
how to install this update without usb cable?
more stable
Thank you very much for the firmware much more stable, it does not freeze as V4 and V5 when used continuously.
Help wifi
Hi,
I have installed this new firme and i have a problem with the wifi. You turn off continuously and lasts very little connected. I have configured with fixed ip and wpa encryption.
Does anyone know if there is any way to solve it?
Thank you and a greeting.
Thanks to Isergo
kiodo1981 said:
I have to thank for this link www.b2cus.com/software isergio
Click to expand...
Click to collapse
Yes, I would like to thank "Isergo" too for making this public..
A clean fast Rom forsure..
@veryjo - have you got a version number on this U-boot-nand?
Anyone else confirm it works before I flash it..
@patosoft
I am running Wifi with WPA/WPA2 PSK with Auto i.p.. no problems
been downloading and streaming with it..
@Asiaa -- use IUW to make a bootable SDcard for the 2.2 1_8 version
http://wwe10b_android_2_2_v1_8_u0m_gt2005.rar/
After installed 2.2 v2.1 #3925 I found two bugs
- The camera does not work properly. I fixed the camera by replacing u-boot-nand.bin. Currently I have version 0.6.1.2 (587)
- Failure to sync contacts and calendar.
Market and Google Maps in this version work properly.
dgcruzing said:
@veryjo - have you got a version number on this U-boot-nand?
Anyone else confirm it works before I flash it..
Click to expand...
Click to collapse
the Uo is version 0.6.1.2(587)
perhaps you have memories of the fw 2852. this fw had camera-problem too
not able to root
This verision is awesome, having problems rooting it, have tried z4root and universal android root also, anyone have a solution for this. also having problems with market, not showing alot of apps, mostly Chinese and no google navigation
I used UniversalAndroot-1.6.2-beta5. The first time did not work the second time worked.
Hello,
Thank you for answering me. It is true that by dhcp works perfectly, but prefer to solve the problem and leave it in static. Anyway with this solution, I better to work with the epad and already ire sought a way to fix it.
A greeting and thank you
After trying a few flash websites, I noticed that Flash Player is ON BOARD in this Froyo ROM!
But colors are something between colored and black&white...and crash in fullscreen mode.
The colors issue has been fixed on the new Flytouch (512Mb RAM) - the following quotation from Androidtablets.net explains how to proceed:
Flash Player issues RESOLVED - new flash player .apk
I have tested this on my ft2v2 with TCH rom 0419, and it mostly worked! Flash now played with correct colours and almost no lag once buffered. It did however crash when I attempted to go full screen, so not perfect yet. Opera mini and Maxthon Browser use the youtube app for youtube website if you have it installed. This works excelently. Flash worked well on other flash websites, I tried an emag site and it loaded where it would not before.
Here is the new apk: Adobe flash for flytouch3.rar (Thanks koti)
Password: koti
Install:
1) use Root Explorer to rename file \system\app\install-flash-player.apk to .old
2) Reboot Flytouch
3) Install the above .apk
I tried youtube and also some eMag sites.
NOTE: This is now included in Tim's ROMS 3b and 3c.
NJoy!
Last edited by Chandos; 05-02-2011 at 05:21 PM.
Click to expand...
Click to collapse
I tried to find the file \system\app\install-flash-player.apk but it doesn't exist in our 256Mb Flytouch...so I directly installed the new Flash Player from the link above but nothing changed with the Flash videos colors, even after a restart.
Does anyone know how to properly install this new version of Flash Player???!!!
Tuc
I rectified,
Still failing me the wifi. Automatically I hold a more function, but is still cutting. Before I had the firm 3245 and it worked fine. So I'm going to return to this firm.
"Confirmed that it is 2.2
we need one of the guru's to pack it into a bootable sdcard format now.. for the mases.."
That would be good - waiting patiently
caravanman said:
"Confirmed that it is 2.2
we need one of the guru's to pack it into a bootable sdcard format now.. for the mases.."
That would be good - waiting patiently
Click to expand...
Click to collapse
Try this one: depositfiles.com/files/dqp3xdrcg
But i am not sure that this ROM compatible with all uboot's.

[ROM] HaiPai MTK 6577 X710D BJMOD V2.5G data2.5G CWM Auto update zip Gen(25-10-2012)

*************** Update : HaiPai x710d CWM update zip generator Download ***************
Click Here to download
Hi , everyone.
This tool is for you to make an CWM update zip without pain...
The function of this tool is to help you guys add apks into /system/app and /data/app
You can edit the updater-script to extend the function of this tool . Enjoy
Usage: (Make sure you have java runtime installed already, if not just do so before going further steps)
So simple.
1) Just extract the tool to c:\
2) browse to c:\apk_customized_install\ folder
place apk(s) into /data/app/ or /system/app/ folder, depends on your need
(The difference between these two folder is if you put apks in /system/app/ folder you can't uninstall apks through app manager. you need root uninstaller to do so instead.)
3) run the batch file
4) You have your signed CWM update zip file under c:\apk_customized_install\ folder
5) Copy to sdcard
6) Boot into cwm recovery and flash it
7) laugh ...
*************** Update : HaiPai x710d BJMOD CWM function update Download ***************
Download Here
What's updated about CWM ?
1) Fixed sd-ext mount error , now the name sd-ext has been changed to emmc
2) Add adb support under recovery mode
*************** Update : HaiPai x710d BJMOD battery % Download ***************
Download Here
{
"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"
}
*************** Update : HaiPai x710d BJMOD_V2.5G DATA 2.5G Download ***************
HaiPai x710d BJMOD_V2.5G DATA 2.5G --click Here
This Update package is based on BJMOD_V2 I ,just changed the /data partition from 512MB to 2.5GB , Also swap internel SDcard and External SDcard.
How to use:
I have separated each step with folder name step1 , step2 , misc
1) Flash the rom with USB cable ->folder step1 (Use the flash tool in folder step1. Please refer to readme.png for correct options needed. Notice: You need to install the phone driver before doing step1. ( Method: Unplug battery, connect usb cable to phone -> connect other side of usb cable to your pc while pressing VOL UP -> your pc will request driver for the phone ->browse to driver under step1 -> Done!
2) You must flash update patch in folder step2 with CWM recovery.
3) In misc folder , there are 3 update patch. Choose what you need ..
*************** Update : Official HaiPai x710d Rom release 0902 Download ***************
Download Official HaiPai x710d Rom release 0902 --click Here
*************** Update : Test fix for bluetooth problem***************
Tested and work BT fix (with my MW600)
Guys , sorry that I can't test this fix because i don't have a bluetooth headset currently...SO, Please test and tell me it works or not Thanks..
*************** Update : Solution for losing IMEI ***************
Download FixIMEI Tool Here
Make sure you have your x710d rooted before running this tool
Please unzip the file to c:\ (this is to prevent the script from running with error)
You should have this folder structure
C:\fixIMEI\imei.exe
C:\fixIMEI\fixI MEI.cmd
Ok Now just run the fixI MEI.cmd , and follow the instructions.
Hi everyone, here comes the version 2 of my custom rom for HaiPai MTK 6577 x710d ,I named it "BJMOD V2"
I have deleted all paid apps which were included in version 1 (BJMOD V 1.0)
In this new ROM , I added some useful free apps . Apart from that , I added 2 more new stuffs into the rom
Click Here to Download BJMOD V 2.0
Features Detail as below:
Features in red are new stuffs different from BJMOD V1.0
This ROM is 100% Based on latest release 0902 firmware
however, you will see the same system info : 20120713_e1809c_v77_lx529_x710d2 in system info page
(New official rom may be just added some updates, so the version is not changed)
What's working :
ALL
What's Not working
N/A
if there are Any bugs please tell me...
1) Fully deodexed
2) All Apps were zipaligned
3) Better Wifi signal strength
4) Google DNS applied ( Faster and safer internet experience)
5) Hosts file changed ( to bock ADS)
6) init.d supported
7) HTC Boot LOGO
8) BEAT AUDIO Boot animation
9) 3G speed tweak
10) Wifi speed tweak
11) Battery life get longer
12) Smooth scroll patched
13) Preinstall Awesome BEATS Audio
14) GPU rendering
15) Fast GPS (optimized for Hong Kong area)
16) New BOOTSOUND
17) AutoZipalign on boot apks in /data/app/ folder
18) SD card speed boost
19) Added new ringtones
and may be more but I just forgot ...
How to install the rom:
1) Copy the rom onto your external sdcard
2) Boot into CWM recovery
3) 3 wipe (data / cache partition/ dalvik cache)
4) Install upate from sd-card
5) wipe battery state
6) reboot system ...
Credits:
...Awesome... -------------- Awesome BEATS
AndroidON -------------- Smooth scroll patch
All XDA members
Screen Shots:
Thanks bjdanny. This is an excellent ROM, great improvement over the 0713 firmware.
Wifi is MUCH BETTER - better strength, no problem with WPA2 anymore.
Screen transition is noticeably smoother with no jerky movement, but not by a wide margin. I don't have to use TouchScreenTune anymore. Browser scrolling is still slightly jerky (I use Dolphin).
I still cannot get my BT keyboard to work - just like the 0713 ROM, there is no problem with pairing the device. However, nothing happens when I type on the keyboard. I don't use BT headphone therefore I cannot test.
Just like previous firmwares, the GPS can only pick up 2 satellites here in Canada - I used wifi to assist GPS search, and I use FasterFix to change the NTP server to "North America" but has no effect. I understand that this is a Chinese phone and it had been tuned to Asia.
Front and back cameras work fine.
I use MX player which can play to up 720p H2.64 videos stored in the memory card. MX player has hardware support which seems to work. 1080p videos won't show anything on the screen.
I intend to use the X710D as a mini tablet, therefore web browsing is a major requirement. Browsing of regular webpages is really fast. However, I am not happy about the Flash streaming video performance in the web browser (NOT using YouTube app) - if you use the last Flash version for ICS, it cannot play in full screen. I found an older version for ICS which works OK, but it can only play youtube videos at up to 480p resolution (and it may also stutter with some 480p videos). The audio and video may be out of sync. By comparison, my "old" Galaxy Tab P1000 can play streaming Flash videos in the browser smoothly in at least 720p resolution (even some 1080p), and it has a higher screen resolution (1024x600). I know Flash on Android is always buggy and is on the way out, but it will be some time before html5 is perfected and becomes the norm.
BTW the comment about Flash has nothing to do with bjdanny or his ROM. I think that you did not include Adobe Flash player in your ROM. If anyone needs it, here it is:
http://www.iapktop.com/adobe-flash-player-11-1-111-10-android-4-x.html
---------------------------------------------------------------------------
P.S. I notice that the external SD card has been renamed to "sdcard2". This causes problems in some apps eg. Dolphin browser: when I try to make a download folder there, the app says the folder name has illegal characters. Maybe the future ROMs should call the external sd card something like "extsd"?
----------------------------------------------------------------------------
slim_thumb said:
Thanks bjdanny. This is an excellent ROM, great improvement over the 0713 firmware.
Wifi is MUCH BETTER - better strength, no problem with WPA2 anymore.
Screen transition is noticeably smoother with no jerky movement, but not by a wide margin. I don't have to use TouchScreenTune anymore. Browser scrolling is still slightly jerky (I use Dolphin).
I still cannot get my BT keyboard to work - just like the 0713 ROM, there is no problem with pairing the device. However, nothing happens when I type on the keyboard. I don't use BT headphone therefore I cannot test.
Just like previous firmwares, the GPS can only pick up 2 satellites here in Canada - I used wifi to assist GPS search, and I use FasterFix to change the NTP server to "North America" but has no effect. I understand that this is a Chinese phone and it had been tuned to Asia.
Front and back cameras work fine.
I use MX player which can play to up 720p H2.64 videos stored in the memory card. MX player has hardware support which seems to work. 1080p videos won't show anything on the screen.
I intend to use the X710D as a mini tablet, therefore web browsing is a major requirement. Browsing of regular webpages is really fast. However, I am not happy about the Flash streaming video performance in the web browser (NOT using YouTube app) - if you use the last Flash version for ICS, it cannot play in full screen. I found an older version for ICS which works OK, but it can only play youtube videos at up to 480p resolution (and it may also stutter with some 480p videos). The audio and video may be out of sync. By comparison, my "old" Galaxy Tab P1000 can play streaming Flash videos in the browser smoothly in at least 720p resolution (even some 1080p), and it has a higher screen resolution (1024x600). I know Flash on Android is always buggy and is on the way out, but it will be some time before html5 is perfected and becomes the norm.
BTW the comment about Flash has nothing to do with bjdanny or his ROM. I think that you did not include Adobe Flash player in your ROM. If anyone needs it, here it is:
http://www.iapktop.com/adobe-flash-player-11-1-111-10-android-4-x.html
---------------------------------------------------------------------------
P.S. I notice that the external SD card has been renamed to "sdcard2". This causes problems in some apps eg. Dolphin browser: when I try to make a download folder there, the app says the folder name has illegal characters. Maybe the future ROMs should call the external sd card something like "extsd"?
----------------------------------------------------------------------------
Click to expand...
Click to collapse
Thanks slim_thumb for using my ROM ... I can't fix the booth keyboard problem right now because i don't have one...As for 1080p video playback display black screen .try using mobo player with software rendering ...
I will make a gps fix for North America ..
I have done several test on Flash streaming video and can play very smoothly ... i suggest you try play with home wifi in order to find out wether is problem of the rom or the network speed..
Actually samsung has been doing very well on web browsing optimization, because i have a i9003 before...that's why i know that...
I have tested 1080p video flash stream on youtube with youtube app and stock web browser .The result is quite nice...both through wifi and 3g .
My suggestion for you is to play 1080p videos on youtube with stock browser through wifi at home or somewhere with strong 3g signal...
I will release flash-able update to add flash player onto the rom...soon thanks for remind.
I am now working on 2.5 GB phone storage for my rom now...so most of the problems hopefully will be fixed in coming release...Of course, more tweaks and optimizations are coming up as well ...
I flashed your rom last night and im currently putting it through its paces. So far so good. Very fast and respsonsive
Keep up the good work and keep the updates coming :good:
Thanks for the feedback bjdanny.
The streaming Flash video problem is not network related. I use it at home on wifi (15 Mbps) and I have never use it on 3G because I never intend to use it as a phone.
I know a lot of the "problems" are hardware related and they were there in the previous firmware versions. I am very happy with the improvements you've made.
Thank you for your hard work and looking forward to future versions of your ROM! I posted in another X710D thread here in XDA to let people know you developed a custom ROM.
downloading this now, cant wait!!!
i dont want to sound like a spoilt child, but could you port miui to this phone? it will be perfect for this phone
jaw2floor said:
downloading this now, cant wait!!!
i dont want to sound like a spoilt child, but could you port miui to this phone? it will be perfect for this phone
Click to expand...
Click to collapse
good idea...
im having trouble flashing this zip, id be greatful if you could help me
before flashing zip i flashed the custom recovery (cwm) and currently have the 0713 rom installed
when i go into 'chose zip from internal sdcard' where your rom is, i get an error saying:
E:unknown volume for path [/emmc/]
E:Can't mount /emmc/
what should i do?
thanks
jaw2floor said:
im having trouble flashing this zip, id be greatful if you could help me
before flashing zip i flashed the custom recovery (cwm) and currently have the 0713 rom installed
when i go into 'chose zip from internal sdcard' where your rom is, i get an error saying:
E:unknown volume for path [/emmc/]
E:Can't mount /emmc/
what should i do?
thanks
Click to expand...
Click to collapse
Put the R0M on your external sd card and "choose zip from sd card".
slim_thumb said:
Put the R0M on your external sd card and "choose zip from sd card".
Click to expand...
Click to collapse
when i press ecternal sd card it says 'no files found' which i think is due to the memory card issu
jaw2floor said:
when i press ecternal sd card it says 'no files found' which i think is due to the memory card issu
Click to expand...
Click to collapse
Did you follow the following steps ?
install zip from sdcard -> choose zip from sdcard -> select the rom
bjdanny said:
Did you follow the following steps ?
install zip from sdcard -> choose zip from sdcard -> select the rom
Click to expand...
Click to collapse
when i press 'choose zip from sdcard' i get a error saying 'no files found'
EDIT
i reformatted my sd card and i've installed the rom now! its brilliant! thanks
so far: ffc not working. this isnt much of a problem for me though as i rarely use it
jaw2floor said:
so far: ffc not working. this isnt much of a problem for me though as i rarely use it
Click to expand...
Click to collapse
My front camera has always worked.
If your front camera does not work in every version of firmware you tried, could this be a hardware problem afterall?
Have you tried camera apps such as Vignette?
if the ffc works in official rom but not in my rom then i dont know what the problem is because i have tested without problem and so far no one who use my rom say that you may try use 3 party cam app to test the ffc
Sent from my X710d using xda premium
Now, that my FFC is finally working, i am up to new Roms.
flashed this Rom yesterday and everything seems to be in good condition.
:good::good::good::good::good::good::good::good::good::good::good::good:
Thanks
I flashed your ROM last night, I'm still testing it, but I wanted to know how did you root your phone? I used the root procedure posted by 'jaw2floor' based on the 07/06/2012 at the beginning of the thread but it has the external SD problem, so then I follow the procedure posted by 'Ratzenberger' to get around the SD problem by flashing just the 07/13/2012;
FROM jaw2floor:
http://forum.xda-developers.com/showthread.php?t=1847136
FROM: Ratzenberger
HEY FOLKS! I have great news! After flashing the X810d with this tutorial, it was corrupting the memory card. Then I flashed the original recovery, boot.img + original preloader and original MBR from the original ROM of X710d (20120410_e1108_v73_jbl1). WORKS LIKE A CHARM!!!! Now the device continues WITH root ACCESS and memory card is working perfectly! This will also work with devices X710d too.
The problems i'm having are;
1) Bluetooth to my Plantronics 510 headset works OK when I'm actually talking on it, but if i'm not in a call and the headset is in standby mode it keeps disconnecting and re-connecting every 2 or 3 minutes , driving me crazy!
Bluetooth to my Sennheiser MM450 headset works OK, but 50% of the time when connecting, it won't connect and the phone just shows "Connecting..." and the Bluetooth is gone off into never-never land (BlueTooth will turnoff but won't turn back on) an I have to remove the battery to correct the problem , driving me crazy 2!
2) WiFi won't connect to corporate enterprise wifi use WPA/WPA2 I get "Authentication Problem", or 5GHz networks.
I wonder if what i'm going thru to root is overriding your changes? Do you have a better way to root?
If I can get these two problems fixed the phone would be great, but if not I may have to dump it I really need my Bluetooth, and having to always remove the battery is not cutting it for me! Any help would be appreciated .
brotherman38 said:
I flashed your ROM last night, I'm still testing it, but I wanted to know how did you root your phone? I used the root procedure posted by 'jaw2floor' based on the 07/06/2012 at the beginning of the thread but it has the external SD problem, so then I follow the procedure posted by 'Ratzenberger' to get around the SD problem by flashing just the 07/13/2012;
FROM jaw2floor:
http://forum.xda-developers.com/showthread.php?t=1847136
FROM: Ratzenberger
HEY FOLKS! I have great news! After flashing the X810d with this tutorial, it was corrupting the memory card. Then I flashed the original recovery, boot.img + original preloader and original MBR from the original ROM of X710d (20120410_e1108_v73_jbl1). WORKS LIKE A CHARM!!!! Now the device continues WITH root ACCESS and memory card is working perfectly! This will also work with devices X710d too.
The problems i'm having are;
1) Bluetooth to my Plantronics 510 headset works OK when I'm actually talking on it, but if i'm not in a call and the headset is in standby mode it keeps disconnecting and re-connecting every 2 or 3 minutes , driving me crazy!
Bluetooth to my Sennheiser MM450 headset works OK, but 50% of the time when connecting, it won't connect and the phone just shows "Connecting..." and the Bluetooth is gone off into never-never land (BlueTooth will turnoff but won't turn back on) an I have to remove the battery to correct the problem , driving me crazy 2!
2) WiFi won't connect to corporate enterprise wifi use WPA/WPA2 I get "Authentication Problem", or 5GHz networks.
I wonder if what i'm going thru to root is overriding your changes? Do you have a better way to root?
If I can get these two problems fixed the phone would be great, but if not I may have to dump it I really need my Bluetooth, and having to always remove the battery is not cutting it for me! Any help would be appreciated .
Click to expand...
Click to collapse
I rooted the phone by extracting the rom's boot.img and add su binary & busybox to kernel's bin and xbin folder and put superuser.apk into /system/app
actually you can extract my rom and just flash the boot.img with flashtool i provided on 1st floor to root the phone ...only if you have cwm recovery flashed already
actually using my boot.img not only give you root access right but init.d support and also some dns and sd card tweaks..
i Included some tweaks in my boot.img ...you can check /system/init.rc to check what i have added ...
The best way to solve your problem is either flashing offical rom with my boot.img or simply flash my rom...
Don't ever try to flash rom wasn't built for your phone ...you are always on risks...
If you use my rom ...WPA/WPA2 works perfect. and wifi speed is improved too ..as for the bluetooth problem ....I am currently don't have a booth headset to test with...but i will get one soon...
bjdanny said:
I rooted the phone by extracting the rom's boot.img and add su binary to kernel's bin and xbin folder and put superuser.apk into /system/app
actually you can extract my rom and just flash the boot.img with flashtool i provided on 1st floor to root the phone ...only if you have cwm recovery flashed already
actually using my boot.img not only give you root access right but init.d support and also some dns and sd card tweaks..
i Included some tweaks in my boot.img ...you can check /system/init.rc to check what i have added ...
The best way to solve your problem is either flashing offical rom with my boot.img or simply flash my rom...
Don't ever try to flash rom wasn't built for your phone ...you are always on risks...
If you use my rom ...WPA/WPA2 works perfect. and wifi speed is improved too ..as for the bluetooth problem ....I am currently don't have a booth headset to test with...but i will get one soon...
Click to expand...
Click to collapse
So what about the preloader, MBR, Recovery, and logo? Do I need these also for the flashtool, and if so can I use the ones from the 07/13/2012, Do you have the official 09/02/2012 rom that I can get them from? Appreciate the help.
brotherman38 said:
So what about the preloader, MBR, Recovery, and logo? Do I need these also for the flashtool, and if so can I use the ones from the 07/13/2012, Do you have the official 09/02/2012 rom that I can get them from? Appreciate the help.
Click to expand...
Click to collapse
No need ...
http://www.jajatong.com/Articles.aspx?CategoryId=11
display version is 0902
but downloaded file still 0713
bjdanny said:
No need ...
http://www.jajatong.com/Articles.aspx?CategoryId=11
display version is 0902
but downloaded file still 0713
Click to expand...
Click to collapse
Unfortunately you can no longer download the firmware it says the "The allotted time to download the file has expired and file is no longer available", Can you please uploaded it for people to get?

Lenovo Yoga Tablet 2 (831 and 1051F/L) Dualboot Windows/Android

Description:
Android x86 build for windows Lenovo Yoga Tablet 2. Fixed sound and many other.
Download: Android x86
Installing:
Create a partition (NTFS) for Android, at least 5GB.
Download Android Installer and GRUB2 configuration file.
Open Android installer. Select downloaded Android x86 image. Select partition letter for Android. Select user data size. Install. If can't install first time, try again.
In Android partition open AndroidOS folder and delete system.img.
Downloaded archive grub2.zip unpack to desktop open install.bat with administrator previlegies!
Power off tablet and enter into UEFI (Power button+volume down) AndroidOS select in Boot Menu.
Jack detection not working, so need manually switch sound Speakers<->Headphones. Default sound is enabled for speakers and headphones. It need do in terminal with root (su command for root):
Switch to speakers:
alsa_amixer -Dhw:0 cset name='Headphone Switch' off
alsa_amixer -Dhw:0 cset name='Speaker Digital Switch' on
Switch to headphones:
alsa_amixer -Dhw:0 cset name='Speaker Digital Switch' off
alsa_amixer -Dhw:0 cset name='Headphone Switch' on
Build information:
Build date: 21.12.18
Android version: 7.1.2 (Nougat)
Kernel version: 4.15.18
Architecture: x86-64 (64 bit)
Source code: https://github.com/Kitsune2222
Working:
Wifi
Bluetooth
Sound
Microphone
Autorotate
Sleep (have problems)
Screen backlight power management
Touchscreen (multitouch work)
MicroSD cardreader
Battery information
Not working:
Jack detection
GPS
Light sensor
Hall sensor
Cameras
[21.12.18]
Android source code update.
Linux kernel 4.15.18.
Update OpenGAPPS fixed Google Play services error.
Updates in WM5102 driver, fixed clock OPCLK.
2 launchers, Launcher (default) and TaskBar.
Added Lenovo Yoga Tablet 2 1371 sound support.
Fixed screen orientation Lenovo Yoga Tablet 2 831.
Other improvenents: Graphics i915, ACPI, brcmfmac.
Works quite well!
First I made a 8gb partition put the user data to max of 5gb and the installation failed because the lack of disk space(?!)
Then I tried setting the user data at 2gb and it worked.
Please try to get the GPS working too! :good:
Trevor P said:
First I made a 8gb partition put the user data to max of 5gb and the installation failed because the lack of disk space(?!)
Then I tried setting the user data at 2gb and it worked.
Please try to get the GPS working too! :good:
Click to expand...
Click to collapse
For system required ~4gb. If your partition 8gb, you can use 4-4.5gb for user data, and etc. And will not be errors.
Now i trying fix jack detection it very, very hard. GPS also hard fix, but i will be try fix it also, but later.
Kitsune2222 said:
For system required ~4gb. If your partition 8gb, you can use 4-4.5gb for user data, and etc. And will not be errors.
Now i trying fix jack detection it very, very hard. GPS also hard fix, but i will be try fix it also, but later.
Click to expand...
Click to collapse
Got it, thanks!
Great work, I had this tablet just lying around for 2 years, with win10 it is next to nothing, but now it has a new life. :victory:
Other things I found not working properly:
No mobile data, not have any settings
Chromecast does works on some apps only, direct screen mirroring doesnt work, it tries to connect but gets disconnected instantly, my TV is also Android 7.0 ( I have seen this alot with android devices though)
Google play services crashes a lot
Can not connect the original BCK800 bluetooth keyboard, says the PIN is incorrect.
-M
this is great solution! Other versions do not have sound or does not work normally. Really hoping some updates on jack, camera and gps fix.
some other things that i also noticed.
- google play keeps crashing also on me. No idea why. Everything seems to work even after crash.
- sometimes, when screen is off, it takes few minutes to wake up after pressing power button. Screen lights up but takes some time to get any picture on the screen.
- sometimes after the screen has been off, when you wake it up, the automatic screen rotation stops working. No idea why. But i have solved this with Macdroid by forcing it to needed rotation.
- some apps keep crashing (for example Amazon Kindle). most apps are ok.
- mine BCK800 keyboard does not work also. But this seems to be keyboard issue as Lenovo have different types of keyboards on Android and windows. This specific keyboard works only on windows environment. Can't connect it either on my HTC phone.
Great work!
Google Play crashes, yes, i'm wait when will be fixed open gapps and android x86 project. It no my problem. With rotation and some apps, also, android x86 bugs, i'm don't know how it fix.
Sleep mode not so stable on bay trail, is problems. But work.
Jack detection and BKC800 i'm trying fix. Jackdet is hard more than expected.
Camera, not will be fixed, on 2018 year it impossible.
Hi,
im coming from Lenovo yoga book Android Version, i do love the work you did here, but can you plz make a Android x86 build that Support yoga book, here is the open Source Code: https://pcsupport.lenovo.com/fr/en/products/TABLETS/YOGA-SERIES/YOGA-BOOK/downloads/DS118515
we are couple of devs, if you like you can join us on Telegram so we can disscuss this together:
MOD EDIT: LINK REMOVED
greetings
THE MAXIMUM POWER said:
Hi,
im coming from Lenovo yoga book Android Version, i do love the work you did here, but can you plz make a Android x86 build that Support yoga book, here is the open Source Code: https://pcsupport.lenovo.com/fr/en/products/TABLETS/YOGA-SERIES/YOGA-BOOK/downloads/DS118515
we are couple of devs, if you like you can join us on Telegram so we can disscuss this together:
MOD EDIT: LINK REMOVED
greetings
Click to expand...
Click to collapse
I'm think you easier create tree and try port lineageos, because all will be work, cameras, gps, sensors and etc, on android x86 no this results. Or if you want can try install my build android x86 on your tablet, seems it really, some people doing it, but how i'm don't know, no android version bay trail tablet.
Kitsune2222 said:
I'm think you easier create tree and try port lineageos, because all will be work, cameras, gps, sensors and etc, on android x86 no this results. Or if you want can try install my build android x86 on your tablet, seems it really, some people doing it, but how i'm don't know, no android version bay trail tablet.
Click to expand...
Click to collapse
I tried this build but it resulted the same as orginal Android x86, i didnt delete System.sfs as you menioned above, because how the System can boot without System.omg or System.sfs ?
Also, how did you create a tree for this device
THE MAXIMUM POWER said:
I tried this build but it resulted the same as orginal Android x86, i didnt delete System.sfs as you menioned above, because how the System can boot without System.omg or System.sfs ?
Click to expand...
Click to collapse
Yes, can load system.sfs or system.img. May be in bios need enable function for windows install or similar
THE MAXIMUM POWER said:
I tried this build but it resulted the same as orginal Android x86, i didnt delete System.sfs as you menioned above, because how the System can boot without System.omg or System.sfs ?
Also, how did you create a tree for this device
Click to expand...
Click to collapse
Yes, can load system.sfs or img, may be need enable fuction for windows install or similar in bios settings.
Tree, and other can see from other devices trees on github, and do for your device. This repos for android yoga tablet 2: https://github.com/lenovo-yt2-dev For android x86 project not need tree, here other problems...
Kitsune2222 said:
Yes, can load system.sfs or img, may be need enable fuction for windows install or similar in bios settings.
Tree, and other can see from other devices trees on github, and do for your device. This repos for android yoga tablet 2: https://github.com/lenovo-yt2-dev For android x86 not need tree, that other problems...
Click to expand...
Click to collapse
Can you plz do it for us, as i have only 90gb, which its not enough for recompile tue whole android
THE MAXIMUM POWER said:
Can you plz do it for us, as i have only 90gb, which its not enough for recompile tue whole android
Click to expand...
Click to collapse
No, need more time and need this device. If you not want tree, can try start android x86, but if it start, will be other problems, sound, cameras, etc...
Kitsune2222 said:
No, need more time and need this device. If you not want tree, can try start android x86, but if it start, will be other problems, sound, cameras, etc...
Click to expand...
Click to collapse
Can you only upload yoga book tree on your github site, as i dont know how to upload on github
THE MAXIMUM POWER said:
Can you only upload yoga book tree on your github site, as i dont know how to upload on github
Click to expand...
Click to collapse
Oh, for your device no tree, you need it create, similar it https://github.com/lenovo-yt2-dev/android_device_lenovo_YT2 but for your device. Need experience for rom creation. I'm can't all say.
I'm can't find normal english insructions for rom porting, can watch on russian forum (use google translate) is third variant, i'm think that easy variant http://4pda.ru/forum/index.php?showtopic=701551 not need compile android source code and android x86 project.
Kitsune2222 said:
Oh, for your device no tree, you need it create, similar it https://github.com/lenovo-yt2-dev/android_device_lenovo_YT2 but for your device. Need experience for rom creation. I'm can't all say.
I'm can't find normal english insructions for rom porting, can watch on russian forum (use google translate) is third variant, i'm think that easy variant http://4pda.ru/forum/index.php?showtopic=701551 not need compile android source code and android x86 project.
Click to expand...
Click to collapse
Ohh, thank you, can yo plz moin us on Telegram to Help later, thank you again
THE MAXIMUM POWER said:
Ohh, thank you, can yo plz moin us on Telegram to Help later, thank you again
Click to expand...
Click to collapse
I do not know everything. Use this theme for porting questions. Use google translate, other people help you who made roms for androd baytrail, cherrytrail devices. Previous link, i'm also read and sometimes answer there. http://4pda.ru/forum/index.php?showtopic=701551
Kitsune2222 said:
I do not know everything. Use this theme for porting questions. Use google translate, other people help you who made roms for androd baytrail, cherrytrail devices. Previous link, i'm also read and sometimes answer there. http://4pda.ru/forum/index.php?showtopic=701551
Click to expand...
Click to collapse
I know, i would like you to join us

Categories

Resources