Re: [android-kernel] if this linux command applicable for android WIFI DIRECT?

2013-03-28 Thread Arun K. Singh
Supplicant related commands should still work though I doubt if iwpriv can work on typical android installations.. best way is to try ;-) On Thu, Mar 21, 2013 at 8:41 AM, Emeric VIGIER wrote: > Have a try. You'll get your answer. > > Emeric > > On Sun, Mar 10, 2013 at 4:34 AM, Hana'a wrote: >

Re: [android-kernel] Enable KGDB for android kernel

2013-03-28 Thread Arun K. Singh
to check where exactly is your kernel failing. Enabling kgdb at this stage may not be helpful especially when you don't know what stage your kernel failed ... Best Regards, Arun K. Singh www.crazydaks.com On Mon, Mar 18, 2013 at 8:03 PM, arnaud gaboury wrote: > Hi all, > > I

Re: [android-kernel] Re: wakelock adaption

2013-03-28 Thread Arun K. Singh
just curios.. why are you not using the mac80211 + nl80211 code that comes from compat-wireless in Android source? That would be the best to upgrade rather a vanilla mac80211 driver ... On Sat, Mar 9, 2013 at 3:12 AM, NIRAV SHAH wrote: > Thanks a lot Mark! I really appreciate the help! > > On

Re: [android-kernel] Re: Ping Bluetooth Device

2011-03-08 Thread Arun K. Singh
On Tue, Mar 8, 2011 at 10:21 PM, Mehmet Yildirim wrote: > Hi, > > I am trying to ping from my android phone to another bt device, which > is a bt headset. I want to ping continuosly the known mac addresses of > several headsets, after that I want to create events within my > application, when some

Re: [android-kernel] Re: Ping Bluetooth Device

2011-03-08 Thread Arun K. Singh
> "l2ping: permission denied" it says > > What should I do to get permission? can you elaborate your end use-case here ...? are you trying to ping from bt enabled android phone to another bt device? l2ping would only ping another bt enabled device over bt transport if that is your real intent. fo

Re: [android-kernel] the bootloader used for the linux kernel

2011-01-27 Thread Arun K. Singh
It has to be u-boot or a proprietary enhancement of same at best... implementing a proprietary boot loader for Linux doesn't make much sense ... Best Regards, Arun K. Singh www.crazydaks.com On Fri, Jan 28, 2011 at 12:38 PM, Earlence wrote: > 1. What bootloader is used for the Linu

Re: [android-kernel] Re: [android-porting] Qestion about Kernel Version Runing at Android2.2

2011-01-20 Thread Arun K. Singh
ld this "close to the version be" .. and what's the logic? Best Regards, Arun K. Singh www.crazydaks.com > On Thu, Jan 20, 2011 at 10:16 AM, Deva R wrote: >> >> is it a generic linux kernel? >> >> android requires mandatory set of features on top of

Re: [android-kernel] interface with the radio processor

2011-01-19 Thread Arun K. Singh
Hello GuoYun, Many BT chips route A2DP voice stream via PCM/I2S lines instead of HCI. Best Regards, Arun K. Singh www.crazydaks.com On Sun, Jan 16, 2011 at 2:49 PM, Guo Yun wrote: > > On Sun, Jan 16, 2011 at 11:58 AM, Arun K. Singh wrote: >> >> Depends which voice strea

Re: [android-kernel] Re: interface with the radio processor

2011-01-17 Thread Arun K. Singh
Hi Earlence, > I guess the voice stream from the cellular network at no point is > accessible by the OS. Yes, I would mostly agree to it with the exception of OS in question being on the Modem DSP[which may know]. for example qDSP that runs on Qualcomm modems dsp's. Best Regards, Ar

Re: [android-kernel] Re: interface with the radio processor

2011-01-17 Thread Arun K. Singh
;s, I dont think it has any clue of this stream... even the WBS codec support etc is implemented on the modem firmware .. Did I misunderstand your question ..? Best Regards, Arun K. Singh www.crazydaks.com On Sun, Jan 16, 2011 at 2:13 PM, Earlence wrote: > the voice stream that goe

Re: [android-kernel] interface with the radio processor

2011-01-15 Thread Arun K. Singh
sor? > 2. Can the voice stream (to the network, from the network) be accessed > from within the kernel? > > Cheers, > Earlence > > -- > unsubscribe: android-kernel+unsubscr...@googlegroups.com > website: http://groups.google.com/group/android-kernel -- Best Regards, A

Re: [android-kernel] Qualcomm 7630 fastboot issue

2011-01-09 Thread Arun K. Singh
to page for this device on installing fastboot? How can I tell > if my current version of FW can support fastboot on this device? Then > how to burn it? > > /mpd > > -- > unsubscribe: android-kernel+unsubscr...@googlegroups.com > website: http://groups.google.com/group/android

Re: [android-kernel] How to add new Library or module in Android 2.2 kernel

2011-01-05 Thread Arun K. Singh
standard kernel path via KDIR against which you want this module to be built and later inserted. Later doing insmod of your test.ko and verifying via lsmod would finish the formality. You may verify your kernel prints via dmesg once your module has been successfully inserted .. Best Regards, Arun K

Re: [android-kernel] Re: booting another linux kernel from a running android system

2011-01-04 Thread Arun K. Singh
On Wed, Jan 5, 2011 at 10:01 AM, Chris Stratton wrote: > On Jan 4, 9:06 pm, Srikant wrote: > > I agree with you, if the requirement is porting to a new h/w platform. > > > > But the requirement here is to just porting to a new Linux Kernel > > version, hence it

Re: [android-kernel] Re: location for insmod scripts

2010-12-17 Thread Arun K. Singh
On Dec 17, 9:31 am, hedwin wrote: > > /system/lib/modules might also be a good location > > > > On Thu, Dec 16, 2010 at 1:15 PM, Arun K. Singh > wrote: > > > > > Perhaps a bit of grepping into past Android discussions helps :-) > anyways > > > init.r

Re: [android-kernel] Re: location for insmod scripts

2010-12-16 Thread Arun K. Singh
Perhaps a bit of grepping into past Android discussions helps :-) anyways init.rc the only and correct place for insmod. add modules in /lib/modules and insmod via init.rc Best Regards, Arun Kumar Singh www.crazydaks.com On Thu, Dec 16, 2010 at 5:25 PM, Earlence wrote: > I added the insmo

Re: [android-kernel] Re: Android CFS Scheduling

2010-12-07 Thread Arun K. Singh
Linux kernel could be more complicated when evaluating priorities and defining "runnable" processes. While "nice" values only impact the base/static priorities of the process, these may not be the actual priorities, "dynamic priorities" as defined and used by scheduler. Further the class of schedu

[android-kernel] Re: implementing custom system calls

2010-11-12 Thread Arun K. Singh
Earlence, Isn't it possible that no one tries to access BT but still BT sockets are created and used? for ex when bluetoothd is launched. Rather shouldnt you tap OFF to ON state of BT adapter or may be undiscoverable to discoverable mode change? Also you can address such question on Bluez forums