Re: [android-kernel] Can't download Kernel source code with "git clone"

2013-07-25 Thread mark gross
try "git branch -av" to show the branches you have in the git repo's you just cloned. The default branch "master simply has no files.try "git checkout experimental/android-3.10" for a good time. On Thu, Jul 25, 2013 at 9:59 AM, Dongwon Kim wrote: > Currently any of these git command doesn't

[android-kernel] Re: Android kernel setting the mac address

2013-07-25 Thread ben . suryn
On Friday, July 26, 2013 9:37:14 AM UTC+10, Matt Reimer wrote: > > Try netcfg eth0 hw 00:11:22:33:44:55. > > Matt > > On Wednesday, July 24, 2013 3:35:27 PM UTC-7, > ben@rnd.designcom.com.auwrote: >> >> Hi, so I'm trying to have the ability to set the mac address after the >> kernel has bee

[android-kernel] Re: Android kernel setting the mac address

2013-07-25 Thread Matt Reimer
Try netcfg eth0 hw 00:11:22:33:44:55. Matt On Wednesday, July 24, 2013 3:35:27 PM UTC-7, ben@rnd.designcom.com.au wrote: > > Hi, so I'm trying to have the ability to set the mac address after the > kernel has been compiled. > I think there are two main ways of doing this. > > 1. In the kern

[android-kernel] Linux Kernel 3.0.6.8 for lg p690

2013-07-25 Thread Dimitar Mutafov
Please help .People with this phone lg p690 have problem with camera.In CM9\CM10\10.1 camera not work.We think problem is very old kernel .Please anybody help or create linux kernel 3.0.6.8 for lg p690 .You can see this http://forum.xda-developers.com/showthread.php?p=40669871 .My Gmail is mitk

[android-kernel] Can't download Kernel source code with "git clone"

2013-07-25 Thread Dongwon Kim
Currently any of these git command doesn't get me Kernel source code. Isn't anyone experiencing the same thing? $ git clone https://android.googlesource.com/kernel/common.git $ git clone https://android.googlesource.com/kernel/exynos.git -- -- unsubscribe: android-kernel+unsubscr...@googlegro

[android-kernel] How to create zImage.integrator to work on virtual beagle board

2013-07-25 Thread venkatesh y
Can we create zImage.integrator in our kernel source I'm using linux-3.10.0 source to build zImage qemu-linaro#./arm-softmmu/qemu-system-arm -kernel /home/Downloads/arm-test/zImage.integrator -initrd /home/Downloads/arm-test/arm_root.img -nographic Thaks for your time, Venkatesh. -- -- unsu

[android-kernel] Android kernel setting the mac address

2013-07-25 Thread ben . suryn
Hi, so I'm trying to have the ability to set the mac address after the kernel has been compiled. I think there are two main ways of doing this. 1. In the kernel read a file and set the mac address accordingly. 2. Put a script in init that reads a file and sets the mac address. My progress so far