[android-kernel] Re: Qualcomm 7630 fastboot issue

2011-01-09 Thread mike digioia
fastboot is android. If you work on the kernel then you use fastboot. if not no need for it On Thu, Jan 6, 2011 at 6:53 PM, mpd mpd...@gmail.com wrote: Hi, Fastboot not working! Don't these come with fastboot installed? I am using Qualcomm's Snapdragon 8x55 mobile development platform

Re: [android-kernel] Little Kernel bootloader and fastboot

2011-01-12 Thread mike digioia
On Sun, Jan 9, 2011 at 9:59 PM, Luo Chunbo lu...@paragonfmc.com wrote: On 01/10/2011 01:25 AM, Earlence wrote: 1. What is the Little Kernel bootloader? and where can I find more information about it. Maybe You can refer following :

Re: [android-kernel] ADB

2011-02-28 Thread mike digioia
Modica mod...@small-tree.com wrote: yeah. I believe fastboot breaks ADB. (you also break it if you replace the android gadget) You can use adb connect IP over TCP or use SSH or something. On Feb 28, 2011, at 9:06 PM, mike digioia wrote: Hi I have been successful using adb to debug my

Re: [android-kernel] Re: ADB

2011-03-02 Thread mike digioia
start-server and after several tries, it succeed (sometimes I had to reconnect unplug/plug the USB cable few times in order to detect my device) Hope that this would help :-) p.s: I'm using adb drivers for WindowsXP On Mar 1, 3:06 am, mike digioia mpd...@gmail.com wrote: Hi I have been

Re: [android-kernel] android Device Portability Test (Porting Verification)

2011-03-02 Thread mike digioia
Well this is quite complex, since these devices have so much functionality. Functional regression test would do this for all the features. If this is not what you are looking to do then just try and use it on the network in the major areas like camera, wifi, 3g, voice, etc... On Mar 2, 2011 5:59

Re: [android-kernel] Fastboot and the Verizon Xoom

2011-03-02 Thread mike digioia
Steve, From the first email seems like you can do everything. But now you say you can't boot the new kernel you flash. So how can you test the new kernel if you can't boot it? I understand you can test that you are successful with the fastboot flash command line response. But if it does not boot

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

2011-03-03 Thread mike digioia
bootloader is locked On Tue, Mar 1, 2011 at 11:54 PM, perumal316 perumal...@gmail.com wrote: Is yours a developer phone? If you have rooted the phone yourself, the bootloader may have additional restrictions that can prevent you from flashing in the images. Just a guess. You may want to

[android-kernel] linux udev interface for adb issues

2011-03-14 Thread mike digioia
hi Has anyone looked into ADB code to know what to expect when the USB device does not register any serialNo as shown from the udevadm info on the development machine? My Ubuntu system now has rules for my devices based on its VID and PID numbers that show up using lsusb for my devices. I am

[android-kernel] Build errors with Gingerbread on openSUSE

2011-03-23 Thread mike digioia
Hi, Anyone see these errors before: make -f /home/mdigioix/gingerbread/hardware/intel/linux-2.6/scripts/Makefile.build obj=fs/ext3 target StaticLib: libintelcommon (out/target/product/mfld_cdk/obj/STATIC_LIBRARIES/libintelcommon_intermediates/libintelcommon.a) target thumb C++: libintelutils =

[android-kernel] kernel debug capability for ADB

2011-04-06 Thread mike digioia
Hi I have developed new drivers for my ADB enabled phone device. But I am not able to debug the kernel changes since my printk messages are not included in the message log. So the new driver's device may not be on the bus or some other problem i need to debug. However, ADB does not allow me to

Re: [android-kernel] Re: kernel debug capability for ADB

2011-04-11 Thread mike digioia
of the ndk toolchain and pushing them to a location where the files will have execute permission on a file system that does not have execution masked. The sdcard probably will not work, unless you have a unix-like filesystem inside of it. On Apr 6, 4:48 pm, mike digioia mpd...@gmail.com wrote: Hi

[android-kernel] fastboot on pandaboard

2011-04-19 Thread mike digioia
Hi Anyone working on Android on Pandaboard? My board goes into fastboot mode (I removed the timeout) automatically. But does not respond to fastboot devices. Anyone have this same problem? /mpd -- unsubscribe: android-kernel+unsubscr...@googlegroups.com website:

[android-kernel] Re: fastboot on pandaboard

2011-04-19 Thread mike digioia
Need to use the pandaboard fastboot source and bins for it to work! On Tue, Apr 19, 2011 at 12:30 PM, mike digioia mpd...@gmail.com wrote: Hi Anyone working on Android on Pandaboard? My board goes into fastboot mode (I removed the timeout) automatically. But does not respond to fastboot

Re: [android-kernel] Re: How to port my device sensor [psensor] into Gingerbread

2011-04-20 Thread mike digioia
I think he is saying to check to see that your JNI and app handle the binary type if you use Binary Attributes in the driver On Wed, Apr 20, 2011 at 8:50 AM, jagan 402ja...@gmail.com wrote: Hi Dan, I didn't get you what you explain. Could you please Elaborate. Jagan. On Wed, Apr 20,

Re: [android-kernel] Developing driver for a chip that requires low latency IRQ handling...

2011-04-20 Thread mike digioia
You may want to use polling if possible with this device in loops less than 10ms. This will require removing the interrupt. The only question is what app or element in the system will use this data in 10ms cycles? So in this case you would need to know when to start your poll (based on the current

Re: [android-kernel] Re: Developing driver for a chip that requires low latency IRQ handling...

2011-04-28 Thread mike digioia
to a crawl in my driver, but I think setting SCHED_FIFO in the kernel configuration might be sufficient (with the appropriate values set in /proc/sys/ kernel/sched_rt_period_us and /proc/sys/kernel/sched_rt_runtime_us). Thank you Rob On Apr 20, 10:19 am, mike digioia mpd

Re: [android-kernel] Re: froyo : ext4 instead of yaffs2

2011-05-10 Thread mike digioia
So what improvements t=do you see with using ext4? On Tue, May 10, 2011 at 2:13 AM, andria andri...@gmail.com wrote: Hi, Thanks for your reply. To enable the support of ext4 I added the following lines to .config if they were not written or if the value was set to n. CONFIG_EXT4_FS=y

Re: [android-kernel] Re: froyo : ext4 instead of yaffs2

2011-05-10 Thread mike digioia
But you don't need anything special on your build computer except the updated tools necessary for 64 bit. Like java 6 etc. My computer I am using for Gingerbread development is an old (7years old) IBM thinkpad. On Tue, May 10, 2011 at 12:18 PM, rarin...@gmail.com wrote: Can you try this out

Re: [android-kernel] Re: how to skip loading drivers at startup and load them all later on?

2011-05-17 Thread mike digioia
, pavan m pavan8...@gmail.com wrote: Initialization of the statically linked modules can be deferred using deferred_module_init(). See the complete article here http://elinux.org/Deferred_Initcalls Regards, Pavan On Tue, May 17, 2011 at 9:01 AM, mike digioia mpd...@gmail.com wrote: Once

Re: [android-kernel] Re: how to skip loading drivers at startup and load them all later on?

2011-05-17 Thread mike digioia
Other issues, currently pppd depends on libutils for logging and many of the other system/ tools have issues like this with libcutils. Has anyone looked into what we want to do moving forward and to allow additional tools like the ones mentiond below? On Tue, May 17, 2011 at 9:32 AM, mike digioia

Re: [android-kernel] Immediate need of Argo developers // Cincinnati,OH // 12-18 month long contract

2011-05-25 Thread mike digioia
This not the place for this announcment! please respect email rules for this group On Wed, May 25, 2011 at 6:42 AM, Emraaz khan emraazkha...@gmail.com wrote: Dear Professional, Hope you are doing well. I am a technical recruiter with Panzer Solutions LLC Software Implementing and IT

Re: [android-kernel] Re: how to skip loading drivers at startup and load them all later on?

2011-05-31 Thread mike digioia
27, 2011 at 1:22 AM, akanksha maggo akanksha.ju...@gmail.comwrote: Hi, I guess there such a syntax error comes when there is some mismatch between ur toolchain. So try once with gnu toolchain and then check. It should work. Regards, Akanksha On Tue, May 17, 2011 at 10:37 PM, mike digioia

Re: [android-kernel] Fwd: error in drivers/rtc/alarm.c

2011-08-25 Thread mike digioia
Where can I find the android 3.0 branch for pandaboard. The working group established seems to not have updated any of its online docs in a while. http://pandaboard.org/content/pandacomb-project-page-website On Fri, Aug 19, 2011 at 6:01 AM, naga raj vimal.e...@gmail.com wrote: --

Re: [android-kernel] ADB removed from Android Linux kernel 3.0

2011-08-31 Thread mike digioia
Where are you able to see the 3.0 source? On Tue, Aug 30, 2011 at 5:49 PM, Behnam behnam.rashid...@gmail.com wrote: I am currently moving to Android Kernel 3.0 for my development and I realized that adb no longer works in 3.0 kernel. I did a bit of digging and came across a commit that

Re: [android-kernel] ADB removed from Android Linux kernel 3.0

2011-08-31 Thread mike digioia
... Not the Android 3.0... For all I know Android 3.0 uses 2.6.36 kernel... On Wed, Aug 31, 2011 at 1:37 PM, mike digioia mpd...@gmail.com wrote: Where are you able to see the 3.0 source? On Tue, Aug 30, 2011 at 5:49 PM, Behnam behnam.rashid...@gmail.comwrote: I am currently moving to Android Kernel

Re: [android-kernel] Re: How does MSM based phone sense battery voltage and current

2012-01-07 Thread mike digioia
Yes correct. Msm is private and most will not be public. But I can tell you that all the new devices have changed to a secret chipset that interfaces to the host processor. On Jan 3, 2012 11:46 PM, WANG Pei uraj...@gmail.com wrote: Thank you for the information. The source code is informative,

Re: [android-kernel] rcu_barrier stall

2012-02-03 Thread mike digioia
Maybe RCU_BARRIER is waiting for all RCU callback to complete but one or more don't exists, since the module was unloaded. On Fri, Feb 3, 2012 at 11:48 AM, Robert Beckett robert.beck...@ziilabs.comwrote: Hello, Does anyone reading this list know much about the rcu subsystem? I have been

Re: [android-kernel] Downloading Android kernel for emulator

2012-04-13 Thread mike digioia
looks like your ip is being rejected for some reason. did you setup ssh? On Fri, Apr 13, 2012 at 1:36 AM, Ninja Turtle ps.niranj...@googlemail.comwrote: Hi, I am trying to download the kernel sources of android for emulator so that I can run iptables nat commands and play around. I got the

[android-kernel] Anyone working on the FriendlyARM Platform.

2012-06-21 Thread mike digioia
Hi Just received this platform without any docs. Should get the package today and what ever docs that comes with it or Identification of which one this is. But the board does not have the serial console port enabled, since nothing is being displayed as it boots (using the normal hyperterm setting

[android-kernel] BT sockets

2012-06-28 Thread mike digioia
Hi Looked at the archives but hard to see anything on my issues with using the bluetooth adapter on my android device. The problem is that the standard socket call for RFCOMM keeps failing with an error code of 1. Iti is as if the adapter is not initialized. Socket handle does not return a real

Re: [android-kernel] Getting Started with Driver Development

2012-08-06 Thread mike digioia
What makes any one believe this site is some tutor center for the blind? On Sat, Aug 4, 2012 at 10:36 PM, Selva Kumar gang.of.convi...@gmail.com wrote: Wat is the procedure for developing drivers android platform. for instance i'm going to use gingerbread. I use ubuntu in my PC with linux

Re: [android-kernel] PandaBoard ES REV B3

2014-09-08 Thread mike digioia
So much has changed between these releases. I once attempted this but gave up after couple days. Keep us posted if your are successful. On Mon, Sep 8, 2014 at 8:58 AM, Daniel Lopez danesteb7...@gmail.com wrote: At the moment I have a PandaBoard ES REV B3 but it isn't working with my Android

Re: [android-kernel] Re: What does ION stand for?

2015-09-25 Thread mike digioia
Yes it is a component used on Android development for Camera On Fri, Sep 25, 2015 at 1:09 AM, JJ wrote: > Have you read this article on Linux Weekly News: > https://lwn.net/Articles/480055/ > > > > On Tuesday, July 21, 2015 at 3:23:19 AM UTC+5:30, QQ wrote: >> >> It is

Re: [android-kernel] Sensors

2015-09-24 Thread mike digioia
is it one from intersil? On Tue, Sep 8, 2015 at 8:35 PM, Raul Piper wrote: > you have to modify the kconfig and the Makefile and the source code to the > directory D.Where D is the directory of any existing proximity sensor > module. > One such location is : Linux

Re: [android-kernel] Re: Issue in hooking system calls on Android 6.0

2016-01-04 Thread mike digioia
What do you see as the error or problem? On Wed, Dec 30, 2015 at 2:32 AM, DHARMENDRA KUMAR < dharmendra.ga...@gmail.com> wrote: > No, You can not hook sys call in android M. From this version, Undefined > symbols has been removed from symbol table entries. > > On Tuesday, 10 November 2015

Re: [android-kernel] Recent CVE related to Qualcomm WiFi Driver

2016-02-08 Thread mike digioia
Hi I worked in San Diego all year for Qualcomm to qualify their Wifi components . Let me know how I can help this company On Sun, Feb 7, 2016 at 8:28 AM, Igor B wrote: > Hi > > Google has published a list of CVE and some of them related to Qualcomm > Wifi Driver and Qualcomm

Re: [android-kernel] Re: Android-ia kernel and modules

2016-10-20 Thread mike digioia
submit me On Thu, Oct 20, 2016 at 6:42 AM, andrew_esh wrote: > Maybe you need to enable basic module support in the kernel. Android > kernels do not usually use modules. > > -- > -- > unsubscribe: android-kernel+unsubscr...@googlegroups.com > website: