Re: [android-kernel] Help about android source code

2011-02-23 Thread Soumen Debnath
Hello, everone, when I use the fastboot command to download the ZImage file to my HTC Tattoo mobile , it throws me some error can anyone give me any hints how to solve the problem soumen@soumen-laptop:~/Tattoo_kernel_msm-htc$ fastboot boot /home/soumen/Tattoo_kernel_msm-htc/arch/arm/boot/zIma

Re: [android-kernel] Help about android source code

2011-02-20 Thread samruai793
Okay now I am having an issue, when ever I do repo sync, it goes to my home folder, instead of my directory folder. Now that's an issue I am having. -- unsubscribe: android-kernel+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-kernel

Re: [android-kernel] Help about android source code

2011-02-18 Thread Soumen Debnath
raja, I am totally frustrated, I am not able to do it. I am giving u the description so that u can help me if u can I will start next day again. 1) I have HTC Tattoo. 2) I want to make some changes on the kernel. 3) now my motive is to download the kernel and change it if i need after that i

Re: [android-kernel] Help about android source code

2011-02-18 Thread raja pavan
export PATH= On Fri, Feb 18, 2011 at 5:31 PM, Soumen Debnath wrote: > raja, I am getting problem with this below command: > adb pull /proc/config.gz config.gz > > whenever I run it I am getting a error : > > No command 'adb' found, did you mean: > Command 'cdb' from package 'tinycdb' (main) >

Re: [android-kernel] Help about android source code

2011-02-18 Thread Soumen Debnath
raja, I am getting problem with this below command: adb pull /proc/config.gz config.gz whenever I run it I am getting a error : No command 'adb' found, did you mean: Command 'cdb' from package 'tinycdb' (main) Command 'gdb' from package 'gdb' (main) Command 'aub' from package 'aub' (universe)

Re: [android-kernel] Help about android source code

2011-02-17 Thread raja pavan
(1) these are standard errors, try out in google. (2) BTW why arm is in the picture? ARM is not supposed to be in the picture if you are building for x86. Donot pass ARCH=arm, if you are building for x86. Building kernel is simplest step in android porting to hardware, so stay cool and proceed.

Re: [android-kernel] Help about android source code

2011-02-17 Thread Soumen Debnath
Raja , I am facing the problem : soumen@soumen-laptop:~/Desktop/android_eXPEriMent/kernel_msm-htc$ make -j2 scripts/kconfig/conf -s arch/arm/Kconfig *** Error during update of the kernel configuration. make[2]: *** [silentoldconfig] Error 1 make[1]: *** [silentoldconfig] Error 2 make: *** No rule

Re: [android-kernel] Help about android source code

2011-02-17 Thread raja pavan
Deb!!! No idea. On Thu, Feb 17, 2011 at 2:49 PM, Soumen Debnath wrote: > Sorry raja, for disturbing again , > But there are some issues i have discuss with u. > > when I try to download from the site : > http://www.android-x86.org/getsourcecode > using the command : repo init -u git://git.andr

Re: [android-kernel] Help about android source code

2011-02-17 Thread Soumen Debnath
Sorry raja, for disturbing again , But there are some issues i have discuss with u. when I try to download from the site : http://www.android-x86.org/getsourcecode using the command : repo init -u git://git.android-x86.org/manifest.git -b gingerbread It throw some error : error: revision gingerbre

Re: [android-kernel] Help about android source code

2011-02-16 Thread raja pavan
problem is that I am not able to repeat the steps on my system as I donot have a linux system with me. I never built Android kernel for x86. google using "android for x86" , this is a seperate branch for android x86 development. This site has NDK for x86 , can use this, instead of android ndk fo

Re: [android-kernel] Help about android source code

2011-02-16 Thread Soumen Debnath
Morning raja, I am again stuck with some problems , I am sending u full details how i am doing this. 1) First I had download the kernel code and android-ndk-r5b , it has one folder named Common. I downloaded it using git:// & repo://. 2) In the folder common there is one make file . I edited the C

Re: [android-kernel] Help about android source code

2011-02-16 Thread raja pavan
search for the key word in the .config and you will get clue (which head in make menuconfig list has the setting) then do make menuconfig and uncheck similar for other errors, the feature enabled is not supported by the kernel chosen by you. On Wed, Feb 16, 2011 at 6:21 PM, Soumen Debnath

Re: [android-kernel] Help about android source code

2011-02-16 Thread Soumen Debnath
should I do this by the command "make menuconfig" On Wed, Feb 16, 2011 at 5:46 PM, raja pavan wrote: > "stack protector enabled but no compiler support" > > Also try disabling stack protector in the android kernel configuration, > search for the same in .config of your kernel, > > On Wed, Feb 1

Re: [android-kernel] Help about android source code

2011-02-16 Thread raja pavan
"stack protector enabled but no compiler support" Also try disabling stack protector in the android kernel configuration, search for the same in .config of your kernel, On Wed, Feb 16, 2011 at 5:43 PM, raja pavan wrote: > make alone will not suffice, pass full command line ... > > revert back i

Re: [android-kernel] Help about android source code

2011-02-16 Thread raja pavan
make alone will not suffice, pass full command line ... revert back if any error ... On Wed, Feb 16, 2011 at 5:18 PM, Soumen Debnath wrote: > raja pavan, > > now i get the error is : > root@soumen-laptop:/home/soumen/Desktop/android/common# make > > /home/soumen/Desktop/android/common/arch/x86/

Re: [android-kernel] Help about android source code

2011-02-16 Thread Soumen Debnath
raja pavan, now i get the error is : root@soumen-laptop:/home/soumen/Desktop/android/common# make /home/soumen/Desktop/android/common/arch/x86/Makefile:81: stack protector enabled but no compiler support CHK include/linux/version.h CHK include/generated/utsrelease.h CC kernel/bo

Re: [android-kernel] Help about android source code

2011-02-16 Thread raja pavan
give CROSS_COMPILE=/usr/local/arm/MYTC/bin/arm-linux- (no need to specify full name of the gcc binary) , make -j1 alone will not suffice. MYTC is the root directory of arm tool chain setup. Full command will be like make ARCH=arm CROSS_COMPILE=/usr/local/arm/MYTC/bin/arm-linux- Image -j2 (custom

Re: [android-kernel] Help about android source code

2011-02-16 Thread Soumen Debnath
can any body tell me when we compile kernel at that time what are parameters should be given to the CROSS COMPILER. because when i try to compile the android kernel I get the following errors: soumen@soumen-laptop:~/Desktop/android/common$ make -j2 /home/soumen/Desktop/android/common/scripts/gcc-v

Re: [android-kernel] Help about android source code

2011-02-15 Thread Aldrin Montana
Hey man, So I tried for awhile to compile the custom kernel on ubuntu... 9.04? And here's what I've come up with so far. if you do a checkout of http://android.git.kernel.org/?p=kernel/common.git;a=summary and you checkout either goldfish branch (both are archived) then what you can do is do a mak

Re: [android-kernel] Help about android source code

2011-02-15 Thread raja pavan
If you want to modify the emulator kernel, download from http://android.git.kernel.org/ kernel branches (snapshot) goldfish is the name of branch, for emulator kernel. My earlier response to a similar query has lot of content with regard to this. search for android emulator kernel in the groups.

Re: [android-kernel] Help about android source code

2011-02-15 Thread Soumen Debnath
I want to study the android OS's kernel, and also want to modify it. On that regard send some useful material if u have.. On Mon, Feb 14, 2011 at 2:07 AM, Aldrin Montana wrote: > any particulars as to what your problem was and what procedure you > followed? > > On Wed, Feb 9, 2011 at 3:33 AM, SD

Re: [android-kernel] Help about android source code

2011-02-15 Thread raja pavan
Follow these steps. (1) Download jdk 1.6 from sun jdk archives. locate java inside jdk and export the java-binary loaction to PATH variable. (2) Download GingerBread which happens to be the latest mobile android stack from http://android.git.kernel.org/ mkdir mydroid cd mydroid repo init -u git:

Re: [android-kernel] Help about android source code

2011-02-14 Thread Aldrin Montana
any particulars as to what your problem was and what procedure you followed? On Wed, Feb 9, 2011 at 3:33 AM, SD wrote: > Hello Every Android Lover, > I am new to android . I want to study android operating system very > closely, for that I want to build the whole android OS on my ubantu > 10.04L

[android-kernel] Help about android source code

2011-02-11 Thread SD
Hello Every Android Lover, I am new to android . I want to study android operating system very closely, for that I want to build the whole android OS on my ubantu 10.04LTS. I try to follow the android site. But I am not able to do so. Can any one please help me regarding this. -- unsubscribe: and