Re: [android-kernel] Re: How to compile a kernel and flsh it in a device

2011-07-29 Thread prashant patil
How tranfer from ram data to sd card On Jul 29, 2011 11:04 AM, "Siva kumar Balasubramanian" wrote: > The source code consists of two folders > > 1. GT-P1000_ Kernel.tar.bz2 > 2. GT_P1000_Platform.tar.bz2 > > When i extract the above two folders, there is a Readme file in the > GT-P1000_Kernel fold

Re: [android-kernel] Re: How to compile a kernel and flsh it in a device

2011-07-29 Thread Siva kumar Balasubramanian
The source code consists of two folders 1. GT-P1000_ Kernel.tar.bz2 2. GT_P1000_Platform.tar.bz2 When i extract the above two folders, there is a Readme file in the GT-P1000_Kernel folder 1. How to Build - get Tool

Re: [android-kernel] Re: How to compile a kernel and flsh it in a device

2011-07-28 Thread Yue Zeng
Is the code released by Samsung complete.? On 29 Jul 2011 14:28, "Siva kumar" wrote: > I am trying to compile kernel for samsung tablet p1000. I was able to > compile the kernel and create zImage. But how to create a ramdisk and > cobine it with zImage. > > > On Jul 22, 3:03 pm, jagan <402ja...@gm

Re: [android-kernel] Re: How to compile a kernel and flsh it in a device

2011-07-28 Thread William W.-Y. Liang
About the part for creating the ramdisk, I think you can get it by building the Android source, which will produce the ramdisk, system, and userdata images. William Liang 2011/7/29 Siva kumar > I am trying to compile kernel for samsung tablet p1000. I was able to > compile the kernel and create

[android-kernel] Re: How to compile a kernel and flsh it in a device

2011-07-28 Thread Siva kumar
I am trying to compile kernel for samsung tablet p1000. I was able to compile the kernel and create zImage. But how to create a ramdisk and cobine it with zImage. On Jul 22, 3:03 pm, jagan <402ja...@gmail.com> wrote: > Ok... > I think it may be correct also. > As i worked on targets we always use

Re: [android-kernel] Re: How to compile a kernel and flsh it in a device

2011-07-22 Thread jagan
Ok... I think it may be correct also. As i worked on targets we always used arm-eabi- Regards, Jagan On Fri, Jul 22, 2011 at 3:21 PM, William W.-Y. Liang < wyli...@mail.ntut.edu.tw> wrote: > Ok, thanks. Please just treat my comment as a reference. :) > > I used the pre-built version of GCC in th

Re: [android-kernel] Re: How to compile a kernel and flsh it in a device

2011-07-22 Thread William W.-Y. Liang
Ok, thanks. Please just treat my comment as a reference. :) I used the pre-built version of GCC in the NDK directly, as below, to compile the kernel, and it works. /toolchains/arm-linux-androideabi-4.4.3/prebuilt/linux-x86/bin/arm-linux-androideabi- William Liang 2011/7/22 jagan <402ja...@gmail

Re: [android-kernel] Re: How to compile a kernel and flsh it in a device

2011-07-22 Thread William W.-Y. Liang
A minor update to the previous comment: I think it will be "arm-linux-androideabi-" instead of "arm-eabi-" for 4.4.3. PS. Correct me if anything goes wrong here, plz. Tks. BRs, William Liang 2011/7/22 jagan <402ja...@gmail.com> > Ok. > > Just follow these steps.. > > $ cd kernel > $ make ARCH=

Re: [android-kernel] Re: How to compile a kernel and flsh it in a device

2011-07-22 Thread jagan
But as per as android kernel is concern the tool chain should be arm-eabi- complaint, because Apps need not use full gcc. Regards, Jagan. On Fri, Jul 22, 2011 at 2:52 PM, William W.-Y. Liang < wyli...@mail.ntut.edu.tw> wrote: > A minor update to the previous comment: > > I think it will be "arm-

Re: [android-kernel] Re: How to compile a kernel and flsh it in a device

2011-07-22 Thread jagan
Ok. Just follow these steps.. $ cd kernel $ make ARCH=arm CROSS_COMPILE= /home/jagan/toolchain/arm-eabi-4.4.3/bin/arm-eabi- $ make ARCH=arm CROSS_COMPILE= /home/jagan/toolchain/arm-eabi-4.4.3/bin/arm-eabi- then it will create kernel images enter your toolchain paths Regards, Jagan On Thu, Ju

Re: [android-kernel] Re: How to compile a kernel and flsh it in a device

2011-07-21 Thread Siva kumar Balasubramanian
i have only kernel source released by opensource software.samsung.com Regards sivakumar On Thu, Jul 21, 2011 at 8:56 PM, jagan <402ja...@gmail.com> wrote: > Do you have entire android source along with kernel inside it? > > Regards, > Jagan > > > On Thu, Jul 21, 2011 at 10:44 AM, Siva kumar wro

Re: [android-kernel] Re: How to compile a kernel and flsh it in a device

2011-07-21 Thread jagan
Do you have entire android source along with kernel inside it? Regards, Jagan On Thu, Jul 21, 2011 at 10:44 AM, Siva kumar wrote: > I followed the following steps to compile a kernel and modules > > make > make modules > make modules_install > > The modules were present in /lib/modules. Is this

[android-kernel] Re: How to compile a kernel and flsh it in a device

2011-07-20 Thread Siva kumar
I followed the following steps to compile a kernel and modules make make modules make modules_install The modules were present in /lib/modules. Is this step right to compile the modules . What step i should follow to create a ramdisk for android with drivers and init.rc and combine it with zImage