OpenCores
URL https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [rtos/] [ecos-2.0/] [packages/] [services/] [gfx/] [mw/] [v2_0/] [src/] [Configs/] [config.ft] - Blame information for rev 174

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 27 unneback
####################################################################
2
# Microwindows and Nano-X configuration file
3
#
4
# This package can be configured to run on Linux (MIPS, ARM, POWERPC or x86)
5
# UNIX, ELKS, DJGPP, or RTEMS.
6
# On Linux, we've got drivers for Linux 2.x framebuffers, X11, or,
7
# svgalib for VGA hardware.
8
# In addition, a gpm or direct serial mouse driver can be configured.
9
# On ELKS, the bios screen driver and serial mouse driver are always used.
10
#
11
# Either Microwindows and/or Nano-X can be built.
12
# Microwindows and Nano-X have several demos.
13
#
14
# For MSDOS makes, see mcmwin.mak and mcnanox.mak
15
####################################################################
16
 
17
####################################################################
18
#
19
# build target platform
20
#
21
# Valid ARCH values are:
22
#
23
# LINUX-NATIVE
24
# LINUX-ARM
25
# LINUX-MIPS
26
# LINUX-POWERPC
27
# LINUX-SH
28
# FREEBSD-X86
29
# SOLARIS
30
# RTEMS
31
# DJGPP
32
# ELKS
33
#
34
# note: ELKS can't build client/server nano-X, nor widget lib
35
#
36
####################################################################
37
ARCH                     = LINUX-NATIVE
38
ARMTOOLSPREFIX           = arm-linux-
39
MIPSTOOLSPREFIX          = mipsel-linux-
40
POWERPCTOOLSPREFIX       = powerpc-linux-
41
SHTOOLSPREFIX            = sh-linux-gnu
42
RTEMSTOOLSPREFIX         = i386-rtemself-
43
 
44
####################################################################
45
#
46
# Compiling options
47
#
48
####################################################################
49
OPTIMIZE                 = Y
50
DEBUG                    = N
51
VERBOSE                  = N
52
 
53
####################################################################
54
#
55
# Libraries to build: microwin, nano-X, nanowidget, object frameworks
56
#
57
####################################################################
58
MICROWIN                 = Y
59
NANOX                    = Y
60
SHAREDLIBS               = N
61
OBJFRAMEWORK             = N
62
 
63
 
64
####################################################################
65
#
66
# Demos to build
67
#
68
####################################################################
69
MICROWINDEMO             = Y
70
NANOXDEMO                = Y
71
 
72
####################################################################
73
#
74
# Applications to build
75
#
76
####################################################################
77
NANOWM                   = Y
78
 
79
####################################################################
80
#
81
# The pixeltype of the native hardware or underlying graphics library.
82
# This definition defines the PIXELVAL to be 32, 16 or 8 bits wide.
83
# If using Linux framebuffer, set to MWPF_TRUECOLOR0888, and use fbset.
84
# It also enables GdArea/GrArea for this particular pixel packing format.
85
#
86
# define MWPF_PALETTE       /* pixel is packed 8 bits 1, 4 or 8 pal index*/
87
# define MWPF_TRUECOLOR0888 /* pixel is packed 32 bits 8/8/8 truecolor*/
88
# define MWPF_TRUECOLOR888  /* pixel is packed 24 bits 8/8/8 truecolor*/
89
# define MWPF_TRUECOLOR565  /* pixel is packed 16 bits 5/6/5 truecolor*/
90
# define MWPF_TRUECOLOR555  /* pixel is packed 16 bits 5/5/5 truecolor*/
91
# define MWPF_TRUECOLOR332  /* pixel is packed 8 bits 3/3/2 truecolor*/
92
#
93
####################################################################
94
SCREEN_PIXTYPE           = MWPF_TRUECOLOR0888
95
 
96
####################################################################
97
#
98
# NanoX: Put Y to the following line to link the nano-X application
99
# with the server.  This is required for ELKS, if no network is present,
100
# or for speed or debugging.  This affects the nano-X server only.
101
#
102
####################################################################
103
LINK_APP_INTO_SERVER     = N
104
 
105
####################################################################
106
#
107
# File I/O support
108
# Supporting either below drags in libc stdio, which may not be wanted
109
#
110
####################################################################
111
HAVE_FILEIO              = Y
112
 
113
####################################################################
114
# BMP, GIF reading support
115
####################################################################
116
HAVE_BMP_SUPPORT         = Y
117
HAVE_GIF_SUPPORT         = Y
118
HAVE_PNM_SUPPORT         = Y
119
HAVE_XPM_SUPPORT         = Y
120
 
121
####################################################################
122
# JPEG support through libjpeg, see README.txt in contrib/jpeg
123
####################################################################
124
HAVE_JPEG_SUPPORT        = N
125
INCJPEG                  = .
126
LIBJPEG                  = /usr/lib/libjpeg.a
127
 
128
####################################################################
129
# PNG support via libpng and libz
130
####################################################################
131
HAVE_PNG_SUPPORT         = N
132
INCPNG                   = .
133
LIBPNG                   = /usr/lib/libpng.a
134
LIBZ                     = /usr/lib/libz.a
135
 
136
####################################################################
137
# T1 adobe type1 font support thru t1lib
138
####################################################################
139
HAVE_T1LIB_SUPPORT       = N
140
INCT1LIB                 = /usr/include
141
LIBT1LIB                 = /usr/lib/libt1.a
142
 
143
####################################################################
144
# TrueType font support thru FreeType
145
####################################################################
146
HAVE_FREETYPE_SUPPORT    = Y
147
INCFTLIB                 = /usr/include
148
LIBFTLIB                 = /usr/lib/libttf.so
149
FREETYPE_FONT_DIR        = "/usr/local/microwin/fonts"
150
 
151
####################################################################
152
# Shared memory support for Nano-X client/server protocol speedup
153
####################################################################
154
HAVE_SHAREDMEM_SUPPORT   = N
155
 
156
####################################################################
157
# Chinese Han Zi Ku font support
158
####################################################################
159
HAVE_HZK_SUPPORT         = N
160
HZK_FONT_DIR             = "fonts/chinese"
161
 
162
####################################################################
163
# Chinese BIG5 compiled in font support (big5font.c)
164
####################################################################
165
HAVE_BIG5_SUPPORT        = N
166
 
167
####################################################################
168
# Chinese GB2312 compiled in font support (gb2312font.c)
169
####################################################################
170
HAVE_GB2312_SUPPORT      = N
171
 
172
####################################################################
173
# Generate screen driver interface only with no fonts or clipping
174
####################################################################
175
NOFONTSORCLIPPING        = N
176
 
177
####################################################################
178
#
179
# Window move algorithms for Microwindows
180
# Change for tradeoff between cpu speed and looks
181
# ERASEMOVE repaints only backgrounds while window dragging, quicker.
182
# Otherwise an XOR redraw is used for window moves only after button up,
183
# quickest (should set for ELKS)
184
# UPDATEREGIONS paints in update clipping region only for better look and feel
185
#
186
####################################################################
187
ERASEMOVE                = Y
188
UPDATEREGIONS            = Y
189
 
190
####################################################################
191
#
192
# Use MS fonts (default no)
193
#
194
####################################################################
195
HAVEMSFONTS              = N
196
 
197
####################################################################
198
#
199
# Link with Gray Palette (valid only for 4bpp modes)
200
#
201
####################################################################
202
GRAYPALETTE              = N
203
 
204
####################################################################
205
#
206
# If the platform is running UNIX, Linux or RTEMS...
207
#
208
####################################################################
209
ifneq ($(ARCH), ELKS)
210
 
211
# X Window screen, mouse and kbd drivers
212
X11                      = N
213
 
214
ifeq ($(X11), Y)
215
# predefined model or select screen width, height, depth(palette mode only)
216
SCREEN_E15               = N
217
SCREEN_WIDTH             = 640
218
SCREEN_HEIGHT            = 480
219
SCREEN_DEPTH             = 4
220
 
221
# You may want to turn this on for XFree86 4.x or if your backing store
222
# isn't functioning properly
223
USE_EXPOSURE             = N
224
 
225
else
226
 
227
# framebuffer screen driver (linear and/or vga 4 planes)
228
# set VTSWITCH to include virtual terminal switch code
229
# set FBREVERSE to reverse bit orders in 1,2,4 bpp
230
# set FBVGA=N for all systems without VGA hardware (for MIPS must=N)
231
FRAMEBUFFER              = Y
232
FBVGA                    = Y
233
VTSWITCH                 = Y
234
FBREVERSE                = N
235
 
236
# svgalib screen driver
237
VGALIB                   = N
238
 
239
# direct VGA hardware access screen driver
240
HWVGA                    = N
241
 
242
####################################################################
243
# Mouse or touch screen driver
244
# TPMOUSE for Linux-VR and Embedded Planet
245
# TPHELIO for VTech Helio
246
# ADSMOUSE for ADS Graphics Client
247
# IPAQMOUSE for Compaq iPAQ,Intel Assabet, ARM ucb1200 (/dev/h3600_ts 11,0)
248
# HARRIERMOUSE for NEC Harrier
249
# PSIONMOUSE for the Psion 5
250
####################################################################
251
GPMMOUSE                 = Y
252
SERMOUSE                 = N
253
TPMOUSE                  = N
254
TPHELIO                  = N
255
ADSMOUSE                 = N
256
IPAQMOUSE                = N
257
HARRIERMOUSE             = N
258
PSIONMOUSE               = N
259
NOMOUSE                  = N
260
 
261
# keyboard or null kbd driver
262
TTYKBD                   = N
263
SCANKBD                  = Y
264
PIPEKBD                  = N
265
NOKBD                    = N
266
 
267
endif
268
 
269
####################################################################
270
# Screen driver specific configuration
271
# SA1100_LCD_LTLEND 4bpp driver with arm SA1100 LCD controller
272
# INVERT4BPP 4bpp inverted pixel driver for VTech Helio
273
####################################################################
274
SA1100_LCD_LTLEND        = N
275
INVERT4BPP               = N
276
 
277
####################################################################
278
#
279
# If the platform is a RTEMS box ....
280
#
281
####################################################################
282
ifeq ($(ARCH), RTEMS)
283
 
284
# Location & BSP information of the RTEMS build
285
RTEMS_BUILD              = /tools/build-i386-elf-rtems
286
RTEMS_BSP                = pc386
287
LINK_APP_INTO_SERVER     = Y
288
 
289
endif
290
 
291
endif
292
 
293
####################################################################
294
#
295
# If the platform is an ELKS box ...
296
#
297
####################################################################
298
ifeq ($(ARCH), ELKS)
299
 
300
# Higher speed asm driver, c driver of hercules screen driver
301
ASMVGADRIVER             = Y
302
CVGADRIVER               = N
303
HERCDRIVER               = N
304
DBGDRIVER                = N
305
 
306
# Mouse support
307
SERMOUSE                 = Y
308
 
309
endif

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.