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

Subversion Repositories or1k

[/] [or1k/] [tags/] [MW_0_8_9PRE7/] [mw/] [src/] [Configs/] [config.rtems] - Blame information for rev 674

Go to most recent revision | Details | Compare with Previous | View Log

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

powered by: WebSVN 2.1.0

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