Announcement

Collapse
No announcement yet.

Announcement

Collapse
No announcement yet.

Help creating an image from my device please

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Help creating an image from my device please

    Hello

    I´ve bought 15 cx-803 (I) from geekbuying. They are for an humanitarian, non-profit project to provide internet access to rural, low income schools.

    I custom-taylored the first one. I have installed several apps, shortcuts and a custom wallpaper, etc.

    Is there an easy way to dump everything inside this stick to an image file so I can just "upgrade" the other 14 in a faster way?

    Will somebody be kind enough to explain the process? I allready got Finless firmware installed, so I´m not a total newbie. Just a not-so-new newbie... lol!

    Thanks in advance

    Alex.

    #2
    Hello,

    Yes you can do this, you must make a Rom Dump of your current System with ADB,
    then you can Flash it with RK Tools.

    Rom Dump via ADB:
    - Download the Android SDK

    Then modify this File:
    c:\users\myname\.android\adb_usb.ini and there patch in the DeviceID from your Stick.

    The same must be done in this File:
    C:\Android SDK Tools\extras\Google\usb_driver\android_winusb.inf

    Code:
    
    
    Code:
    [COLOR=#333333];Your Stick Name[/COLOR]
    [COLOR=#333333]%SingleAdbInterface% = USB_Install, USB\VID_Your ID&PID_YourPID[/COLOR]
    [COLOR=#333333]%CompositeAdbInterface% = USB_Install, USB\VID_Your ID&PID_0010&MI_01[/COLOR]
    [COLOR=#333333][/COLOR]


    Then Install the Driver that Windows see you Device also enable the USB Debugging in your TV Stick.
    Now run can run

    - adb start-server
    - adb shell

    Then type SU to get Super User rights.
    Then do this
    cat /proc/mtdcat /proc/mtddev
    dd if=/dev/block/mtdblock0 of=/sdcard/bootloader.img



    Comment


      #3
      Re: Help creating an image from my device please

      Originally posted by alxtronics View Post
      Hello

      I´ve bought 15 cx-803 (I) from geekbuying. They are for an humanitarian, non-profit project to provide internet access to rural, low income schools.

      I custom-taylored the first one. I have installed several apps, shortcuts and a custom wallpaper, etc.

      Is there an easy way to dump everything inside this stick to an image file so I can just "upgrade" the other 14 in a faster way?

      Will somebody be kind enough to explain the process? I allready got Finless firmware installed, so I´m not a total newbie. Just a not-so-new newbie... lol!

      Thanks in advance

      Alex.
      Or you can use cwm to make a backup and restore it to the other sticks
      REMEMBER, YOUR FEEDBACK IS VERY IMPORTANT TO US.
      My devices:
      Minix Neo X7; Minix Neo X8-H , Minix Neo Z64W & Z64 (Sponsored by Minix)
      MK902 & MK902II(Sponsored by RKM)
      Beelink M8B & Beelink R89 (Sponsored by Beelink)
      Tronsmart VEGA S89H (Sponsored by
      Gearbest.com)
      MELE-PCG03 (Sponsored by Gearbest.com) Discount Coupon:MPCG03
      Ainol Intel Z3735 MiniPC(Sponsored by Gearbest.com)
      Thanks to them I can try to support your devices http://freaktab.com/core/images/smilies/wink.png

      Comment


        #4
        Thanks for your responses.

        Especially you Neo for your detailed answer. The thing is that it is like chinese to me.

        I´ll try Leo´s approach as at least I know what cwm means... lol.

        Thanks again!

        Alex

        Comment


          #5
          AW: Help creating an image from my device please

          If you want we can make this together with teamviewer.
          Only ask me if you want.

          NEOMODE

          Neomode FreakTab.com Developer

          Comment


            #6
            Hi there
            You can refer to this code:

            using RasterEdge.Imaging.Basic.Core;
            using RasterEdge.Imaging.Basic.Codec;
            using RasterEdge.Imaging.TIFF;
            using RasterEdge.Imaging.Basic;

            namespace RE__Test
            {
            public partial class Form1 : Form
            {
            public Form1()
            {
            InitializeComponent();
            }

            private void button1_Click(object sender, EventArgs e)
            {
            int width = 100;
            int height = 60;

            REImage reImage = new REImage(width, height, ImageMode.RGB888);// Create a image with specified width, height and color mode; all pixels are set to white

            REFile.SaveImageFile(reImage, "c:/reimage.bmp", new BMPEncoder());
            REFile.SaveImageFile(reImage, "c:/reimage.png", new PNGEncoder());
            REFile.SaveImageFile(reImage, "c:/reimage.jpg", new JPGEncoder());
            REFile.SaveImageFile(reImage, "c:/reimage.tif", new TIFEncoder());
            }
            }
            }

            Comment

            Working...
            X