views:

67

answers:

1

i'm trying to get android running on a gumstix overo system. since i'm not planning to use the final "product" as a phone, i asked my self if it is possible to exclude applications like the phone/dialer-app from the kernel build-process (any config parameter probably?)

thanks for any advice in advance :-)

+1  A: 

Just remove (or comment) these lines:

<project path="packages/apps/Phone" name="platform/packages/apps/Phone" /> <project path="packages/apps/VoiceDialer" name="platform/packages/apps/VoiceDialer" />
(and others if needed) from the platform manifest (default.xml) :

http://android.git.kernel.org/?p=platform/manifest.git;a=blob;f=default.xml;h=d2339d0f945f3d8143236614a867f7702a1358d8;hb=HEAD

Aissen
thanks a lot :)
manu