Re: [android-kernel] How can I reference functions in .S files

2011-11-01 Thread Zova
try this LOCAL_SRC_FILES += \ dirA/test.c\ dirB/tool.S Regards, Zova On Tue, Nov 1, 2011 at 10:38 AM, guoguo wrote: > Hello every one > > I have a tool.S like this > > .text > .align2 > .global asm_call > asm_call: > mov r0 , #0 > mov r1 , #1 > > > and I wrote

[android-kernel] How can I reference functions in .S files

2011-11-01 Thread guoguo
Hello every one I have a tool.S like this .text .align2 .global asm_call asm_call: mov r0 , #0 mov r1 , #1 and I wrote a test.c like this #include void asm_call(); int main(int argc , char **argv) { asm_call(); } My make file like this LOCAL_PATH :=$(call my-dir) include $(CLEAR_VAR

Re: [android-kernel] alert notification from kernel

2011-11-01 Thread Tiago Maluta
you can create a file [1] as a sysfs entry on your system, create a android service pooling that information and display to user. [1] example: you can create a "notifications" file and put printk content. $ cat /sys/kernel/notifications YOUR MESSAGE --tm On Fri, Oct 28, 2011 at 11:05

[android-kernel] OpenBSD Cryptographic Framework (OCF) Port to android

2011-11-01 Thread tilak
Hi Crypto Friends, I didn't see anyone porting OpenBSD Cryptographic Framework (OCF) to Android. My requirement is a good cryptographic framework for Android.I found out that OCF is the good cryptographic work for generic linux kernel.OCF has good interface for ipsec,openssl,openssh. Inspite of

Re: [android-kernel] Re: Help with tegra2 hardware and early printing

2011-11-01 Thread jagan
But even if earlycon works, you need to enable DEBUG_LL & respective DEBUG_UART & you can pass earlyprintk=1 as a CMDLINE argument Regards, Jagan On Tue, Nov 1, 2011 at 4:14 PM, Sam King wrote: > I did try using the earlycon kernel command line argument, but it did > not work. > > It turns out

[android-kernel] Re: Help with tegra2 hardware and early printing

2011-11-01 Thread Sam King
I did try using the earlycon kernel command line argument, but it did not work. It turns out that the version of fastboot that I am using uses a non- standard (nvidia specific) atag value to pass the bootloader framebuffer to the kernel. With this I can write to the screen. Although I can write

[android-kernel] Re: remove apk in /system/app

2011-11-01 Thread allstars
cool I enlarge the partition size and it works now great thanks On Nov 1, 2:44 pm, "William W.-Y. Liang" wrote: > Is it possible that it was caused by the full-of-file-system problem? > That is, the operation could not be performed normally because the > partition has been out of space? > > BRs,

Re: [android-kernel] Help with tegra2 hardware and early printing

2011-11-01 Thread jagan
For early boot logs, did you enabled required configs Regards, Jagan. On Mon, Oct 31, 2011 at 8:43 PM, Sam King wrote: > Hello, > > I am having trouble getting information out of my tegra2 (ventana) > system early in the boot sequence, which is making debugging some > early boot code I am w