forked from lubing521/ambarella
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathAmbaConfig
177 lines (140 loc) · 3.92 KB
/
AmbaConfig
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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
##
## app/AmbaConfig
##
## History:
## 2008/01/16 - [Anthony Ginger] Create
##
## Copyright (C) 2008-2016, Ambarella, Inc.
##
## All rights reserved. No Part of this file may be reproduced, stored
## in a retrieval system, or transmitted, in any form, or by any means,
## electronic, mechanical, photocopying, recording, or otherwise,
## without the prior consent of Ambarella, Inc.
##
menuconfig BUILD_AMBARELLA_APPLICATION
bool "Ambarella Application Configuration"
default n
help
Build Ambarella Application.
if BUILD_AMBARELLA_APPLICATION
config CONFIG_APP_INSTALL_DIR
string "Install Application"
default "$(FAKEROOT_DIR)/usr/local/bin"
help
Install Application to the defined DIR.
config CONFIG_APP_IPCAM_CONFIG_DIR
string "Install IPCam Configuration"
default "$(FAKEROOT_DIR)/etc/ambaipcam"
help
Install IPCam Configuration files to the defined DIR.
config BUILD_AMBARELLA_APP_DEBUG
bool "Build Ambarella Application with debug info"
default n
help
Build Ambarella Application with debug info
##
## app/AmbaConfig
##
## Following content are generated automatically by
## create_mkcfg: DO NOT EDIT!!
##
##### ipcam
menuconfig BUILD_AMBARELLA_APP_IPCAM
bool "Build IPCAM"
default n
help
Build IPCAM Application Configurations.
if BUILD_AMBARELLA_APP_IPCAM
config BUILD_AMBARELLA_APP_IPCAM_AMFDEMOS
bool "Build AMF Demo Application"
default n
depends on CONFIG_ARCH_A5S
depends on BUILD_AMBARELLA_APP_IPCAM
depends on BUILD_AMBARELLA_MIDDLEWARE_FRAMEWORK
help
Build amf demo applications.
config BUILD_AMBARELLA_APP_CLOUDCAM_UPGRADE
bool "Build Cloud Cam Upgrade Application"
default n
depends on CONFIG_ARCH_A5S
depends on BUILD_AMBARELLA_APP_IPCAM
help
Build Cloud Cam Upgrade Application.
config BUILD_AMBARELLA_APP_IPCAM_MEDIASERVER
bool "Build Media Server"
default n
depends on (CONFIG_ARCH_A5S || CONFIG_ARCH_S2)
depends on BUILD_AMBARELLA_APP_IPCAM
help
Build mediaserver, encode_server, image_server and rtsp_server.
source app/ipcam/mediaserver/AmbaConfig
config BUILD_AMBARELLA_APP_IPCAM_IPTSDEMO
bool "Build IPTS Demo Application"
default n
depends on CONFIG_ARCH_A5S
depends on BUILD_AMBARELLA_APP_IPCAM
help
Build IPTS demo application.
config BUILD_AMBARELLA_APP_IPCAM_CTRLSERVER
depends on CONFIG_AMBARELLA_AVAHI_SUPPORT
bool "Build IP Camera Control Center Server"
default n
depends on CONFIG_ARCH_A5S
depends on BUILD_AMBARELLA_APP_IPCAM
help
Build IP Camera Control Center Server.
config BUILD_AMBARELLA_APP_IPCAM_QTAMFDEMO
depends on BUILD_AMBARELLA_QTAMF_IPCAM_PACKAGE
depends on CONFIG_AMBARELLA_QT_SUPPORT
bool "Build QtAmf Demo Application"
default n
depends on CONFIG_ARCH_A5S
depends on BUILD_AMBARELLA_APP_IPCAM
help
Build QtAmf Demo Application.
config BUILD_AMBARELLA_APP_IPCAM_WEBCGI
bool "Build Web CGI Application"
default n
depends on (CONFIG_ARCH_A5S || CONFIG_ARCH_S2)
depends on BUILD_AMBARELLA_APP_IPCAM
help
choice
prompt "Build Web CGI"
depends on CONFIG_AMBARELLA_WEB_SERVICE_SUPPORT
depends on BUILD_AMBARELLA_APP_IPCAM_WEBCGI
default BUILD_AMBARELLA_APP_IPCAM_WEB_CGI_CS
config BUILD_AMBARELLA_APP_IPCAM_WEB_CGI_C
bool "CGI in C"
help
Build Web CGI with C
config BUILD_AMBARELLA_APP_IPCAM_WEB_CGI_CS
bool "CGI in Clearsilver"
help
Build Web CGI with Clearsilver
endchoice
config BUILD_AMBARELLA_APP_IPCAM_WEB_CGI_PARTNER_Y
bool "Build Web CGI in Partner Y"
depends on CONFIG_ARCH_A5S
default n
help
Build Web CGI with Partner Y
config BUILD_AMBARELLA_APP_IPCAM_WEB_CGI_PARTNER_Y_V2
bool "Build Web CGI in Partner Y V2 "
depends on CONFIG_ARCH_A5S
depends on BUILD_AMBARELLA_APP_IPCAM_WEB_CGI_PARTNER_Y
default n
help
Build Web CGI with Partner Y and V2
source app/ipcam/rtsp/AmbaConfig
endif
##### utility
menuconfig BUILD_AMBAREALLA_APP_UTILITY
bool "Build Utilities"
default n
---help---
Build Utilities APP
if BUILD_AMBAREALLA_APP_UTILITY
source app/utility/jpg_enc/AmbaConfig
endif
## The end of AmbaConfig file
endif