\system\core\include\arch\linux-arm

AndroidConfig.h

* ===========================================================================
* !!! IMPORTANT !!!
* ===========================================================================
*
* This file is included by ALL C/C++ source files. Don't put anything in
* here unless you are absolutely certain it can't go anywhere else.
*
* Any C++ stuff must be wrapped with "#ifdef __cplusplus". Do not use "//"
* comments.
*/

/*
* Define if we have Linux's inotify in <sys/inotify.h>.
*/
#define HAVE_INOTIFY 1

--------------------------------------------------------

#if HAVE_INOTIFY
// readNotify() will modify mFDs and mFDCount, so this must be done after
// processing all other events.
if(mFDs[0].revents & POLLIN) {
readNotify(mFDs[0].fd);
mFDs[0].revents = 0;
continue; // report added or removed devices immediately
}
#endif

==============================

ifeq ($(BOARD_USES_HDMI),true)
LOCAL_C_INCLUDES += \
device/samsung/proprietary/libhdmi

LOCAL_SHARED_LIBRARIES += libhdmiservice

LOCAL_CFLAGS += -DBOARD_USES_HDMI
endif

-------------

\device\samsung\smdkv210\BoardConfig.mk

BOARD_USES_HDMI :=true

BOARD_KERNEL_BASE := 0x30000000
BOARD_KERNEL_PAGESIZE := 4096
BOARD_KERNEL_CMDLINE := console=ttyFIQ0 no_console_suspend

更多相关文章

  1. 代码中设置drawableleft
  2. android 3.0 隐藏 系统标题栏
  3. Android开发中activity切换动画的实现
  4. Android(安卓)学习 笔记_05. 文件下载
  5. Android中直播视频技术探究之—摄像头Camera视频源数据采集解析
  6. 技术博客汇总
  7. android 2.3 wifi (一)
  8. AndRoid Notification的清空和修改
  9. Android中的Chronometer

随机推荐

  1. 深入理解 Android Activity的生命周期
  2. android学习笔记之十二进程通信(IPC)
  3. android 相对定位布局方向详解
  4. 编译android源码出现的问题解析
  5. android直接利用opencv打开摄像头失败原
  6. android基础知识15:获得android系统信息03
  7. android:scrollbarStyle属性及滚动条和分
  8. android 设置透明效果
  9. android ethernet
  10. 「抄底 Android 内存优化 2」 —— Linux