1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
|
BUILD_IPC-MODEMCTRL := true
DEBUG := true
LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE := libsamsung-ipc
LOCAL_MODULE_TAGS := optional
LOCAL_C_INCLUDES := external/openssl/include
LOCAL_C_INCLUDES += $(LOCAL_PATH)/samsung-ipc/device/xmm6260/
LOCAL_LDFLAGS += -lcrypto
ifeq ($(TARGET_DEVICE),crespo)
LOCAL_CFLAGS += -DDEVICE_IPC_V4
samsung-ipc_device := crespo
endif
ifeq ($(TARGET_DEVICE),galaxys2)
LOCAL_CFLAGS += -DDEVICE_IPC_V4
samsung-ipc_device := galaxys2
endif
ifeq ($(TARGET_DEVICE),galaxysmtd)
LOCAL_CFLAGS += -DDEVICE_IPC_V4
samsung-ipc_device := aries
endif
ifeq ($(TARGET_DEVICE),galaxytab)
LOCAL_CFLAGS += -DDEVICE_IPC_V4
samsung-ipc_device := aries
endif
ifeq ($(TARGET_DEVICE),h1)
LOCAL_CFLAGS += -DDEVICE_H1
endif
ifeq ($(TARGET_DEVICE),maguro)
LOCAL_CFLAGS += -DDEVICE_IPC_V4
samsung-ipc_device := maguro
endif
ifeq ($(DEBUG),true)
LOCAL_CFLAGS += -DDEBUG
LOCAL_CFLAGS += -DLOG_STDOUT
endif
samsung-ipc_files := \
samsung-ipc/ipc.c \
samsung-ipc/ipc_util.c \
samsung-ipc/ipc_devices.c \
samsung-ipc/rfs.c \
samsung-ipc/gen.c \
samsung-ipc/gprs.c \
samsung-ipc/misc.c \
samsung-ipc/net.c \
samsung-ipc/sec.c \
samsung-ipc/wakelock.c \
samsung-ipc/device/h1/h1_ipc.c \
samsung-ipc/device/crespo/crespo_ipc.c \
samsung-ipc/device/aries/aries_ipc.c \
samsung-ipc/device/xmm6260/xmm6260_loader.c \
samsung-ipc/device/xmm6260/xmm6260_modemctl.c \
samsung-ipc/device/xmm6260/xmm6260_ipc.c \
samsung-ipc/device/galaxys2/galaxys2_loader.c \
samsung-ipc/device/galaxys2/galaxys2_ipc.c \
samsung-ipc/device/maguro/maguro_loader.c \
samsung-ipc/device/maguro/maguro_ipc.c
LOCAL_SRC_FILES := $(samsung-ipc_files)
LOCAL_CFLAGS += -DIPC_DEVICE_EXPLICIT=\"$(samsung-ipc_device)\"
LOCAL_SHARED_LIBRARIES := libutils
LOCAL_C_INCLUDES += $(LOCAL_PATH)/include \
$(LOCAL_PATH)/samsung-ipc
include $(BUILD_STATIC_LIBRARY)
ifeq ($(BUILD_IPC-MODEMCTRL),true)
include $(CLEAR_VARS)
LOCAL_MODULE := ipc-modemctrl
LOCAL_MODULE_TAGS := optional
ifeq ($(TARGET_DEVICE),crespo)
LOCAL_CFLAGS += -DDEVICE_IPC_V4
samsung-ipc_device := crespo
endif
ifeq ($(TARGET_DEVICE),galaxys2)
LOCAL_CFLAGS += -DDEVICE_IPC_V4
samsung-ipc_device := galaxys2
endif
ifeq ($(TARGET_DEVICE),galaxysmtd)
LOCAL_CFLAGS += -DDEVICE_IPC_V4
samsung-ipc_device := aries
endif
ifeq ($(TARGET_DEVICE),galaxytab)
LOCAL_CFLAGS += -DDEVICE_IPC_V4
samsung-ipc_device := aries
endif
ifeq ($(TARGET_DEVICE),h1)
LOCAL_CFLAGS += -DDEVICE_H1
endif
ifeq ($(TARGET_DEVICE),maguro)
LOCAL_CFLAGS += -DDEVICE_IPC_V4
samsung-ipc_device := maguro
endif
ifeq ($(DEBUG),true)
LOCAL_CFLAGS += -DDEBUG
LOCAL_CFLAGS += -DLOG_STDOUT
endif
modemctrl_files := tools/modemctrl.c
LOCAL_SRC_FILES := $(modemctrl_files)
LOCAL_STATIC_LIBRARIES := libsamsung-ipc
LOCAL_SHARED_LIBRARIES := libutils
LOCAL_C_INCLUDES += $(LOCAL_PATH)/include
include $(BUILD_EXECUTABLE)
endif
|