How to flash a rom:
I'm going to cover the more safer but more technical way of flashing the rom. You can use ClockworkMod app to flash this ROM (the the OP), but I do not trust this way, I still like doing it the old school way, and it is not that hard, promise! For my tutorial to work you will need android-sdk and once you have downloaded this, start it up and install android-platform-tools.
If you really do not know how to do this, read this:
http://www.androidauthority.com/how-to-install-android-sdk-software-development-kit-21137/
Everything is explained there.
First you need to install the drivers for your tablet on windows and Linux users need to update their udev rules. Linux users, put this in /etc/udev/rules.d/91-android.rules:
Code:
# Ideos S7 Slim
SUBSYSTEMS=="usb", ATTRS{idVendor}=="0x12d1", MODE="0666"
SUBSYSTEMS=="usb", ATTRS{idVendor}=="0x18d1", MODE="0666"
You should be set to use adb and fastboot now!
You need to install a recovery image to allow you to flash the ROM onto the tablet. There are three available recovery "options" from the download section linked in the OP, but I'm going to cover the most widely used Clockwork Mod Recovery.
Download the recovery.img (
http://goo.im/devs/asturel/recovery.img ) and download the ROM you want to flash, in my case I just took the latest available for CM10 (
http://goo.im/devs/asturel/cm-10-20121108-EXPERIMENTAL-s7-asturel.zip). Download gapps (Google Apps) zip also (
http://goo.im/gapps/gapps-jb-20121011-signed.zip)
Copy the ROM and the gapps zip to the tablet - as is,
do not extract!
All the preparations is now complete, now to start flashing:
We now need to enter fastboot to flash the recovery image, there are two ways of doing this.
1.) Power off device completely (I even had to remove the battery from mine) - Press volume up + power button until you see some text stating that you are now in "fastboot" mode.
2.) If you have android-platform-tools installed: adb reboot fastboot
Change directory on the PC where you extracted android-sdk, go to the platfom-tools directory, inside will be adb and fastboot. Copy the recovery.img into this folder, once finished you can delete it later. Open a terminal there and connect your device to USB if it is not connected already.
In fastboot:
Code:
fastboot devices <-- Your device should show, even if it is only ???????????????? there should be something or you need to install your drivers or update your udev rules in Linux
fastboot flash recovery recovery.img
fastboot boot recovery.img
You do not need the last "fastboot recovery recovery.img", but I could not get into recovery mode any other way, in theory, once you flashed the recovery.img and rebooted the device, you should be able to enter recovery with:
Now we are in recovery mode. To navigate, use the volume up and down, to select use the "settings" touch button (touch button in the middle).
* Flash from sd-card -> browse to rom on SD-card and flash. Once rom is finished, flash gapps.
Go back, wipe data/factory reset and wipe cache parition.
Reboot and you should be done.
If you want to use the app method (again which I do not recommend) you will need to read the link in the OP, it is explained there, but by the time you finished reading the link you could have been done by following this method.
