]> git.kernelconcepts.de Git - karo-tx-redboot.git/blob - packages/services/gfx/mw/v2_0/src/Configs/config.svga
Initial revision
[karo-tx-redboot.git] / packages / services / gfx / mw / v2_0 / src / Configs / config.svga
1 ####################################################################
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                     = LINUX-NATIVE
35 ARMTOOLSPREFIX           = arm-linux-
36 MIPSTOOLSPREFIX          = mipsel-linux-
37 RTEMSTOOLSPREFIX         = i386-rtemself-
38
39 ####################################################################
40 #
41 # Compiling options
42 #
43 ####################################################################
44 OPTIMIZE                 = Y
45 DEBUG                    = N
46 VERBOSE                  = N
47
48 ####################################################################
49 #
50 # Libraries to build: microwin, nano-X, nanowidget, object frameworks
51 #
52 ####################################################################
53 MICROWIN                 = Y
54 NANOX                    = Y
55 NWIDGET                  = N
56 OBJFRAMEWORK             = N
57
58
59 ####################################################################
60 #
61 # Demos to build
62 #
63 ####################################################################
64 MICROWINDEMO             = Y
65 NANOXDEMO                = Y
66
67 ####################################################################
68 #
69 # Applications to build
70 #
71 ####################################################################
72 NANOWM                   = Y
73
74 ####################################################################
75 #
76 # The pixeltype of the native hardware or underlying graphics library.
77 # This definition defines the PIXELVAL to be 32, 16 or 8 bits wide.
78 # If using Linux framebuffer, set to MWPF_TRUECOLOR0888, and use fbset.
79 # It also enables GdArea/GrArea for this particular pixel packing format.
80 #
81 # define MWPF_PALETTE       /* pixel is packed 8 bits 1, 4 or 8 pal index*/
82 # define MWPF_TRUECOLOR0888 /* pixel is packed 32 bits 8/8/8 truecolor*/
83 # define MWPF_TRUECOLOR888  /* pixel is packed 24 bits 8/8/8 truecolor*/
84 # define MWPF_TRUECOLOR565  /* pixel is packed 16 bits 5/6/5 truecolor*/
85 # define MWPF_TRUECOLOR332  /* pixel is packed 8 bits 3/3/2 truecolor*/
86 #
87 ####################################################################
88 SCREEN_PIXTYPE           = MWPF_TRUECOLOR0888
89
90 ####################################################################
91 #
92 # NanoX: Put Y to the following line to link the nano-X application
93 # with the server.  This is required for ELKS, if no network is present,
94 # or for speed or debugging.  This affects the nano-X server only.
95 #
96 ####################################################################
97 LINK_APP_INTO_SERVER     = N
98
99 ####################################################################
100 #
101 # File I/O support
102 # Supporting either below drags in libc stdio, which may not be wanted
103 #
104 ####################################################################
105 HAVE_FILEIO              = Y
106
107 ####################################################################
108 # BMP, GIF reading support
109 ####################################################################
110 HAVE_BMP_SUPPORT         = Y
111 HAVE_GIF_SUPPORT         = Y
112 HAVE_PNM_SUPPORT         = Y
113
114 ####################################################################
115 # JPEG support through libjpeg, see README.txt in contrib/jpeg
116 ####################################################################
117 HAVE_JPEG_SUPPORT        = N
118 INCJPEG                  = .
119 LIBJPEG                  = /usr/lib/libjpeg.a
120
121 ####################################################################
122 # PNG support via libpng and libz
123 ####################################################################
124 HAVE_PNG_SUPPORT         = N
125 INCPNG                   = .
126 LIBPNG                   = /usr/lib/libpng.a
127 LIBZ                     = /usr/lib/libz.a
128
129 ####################################################################
130 #
131 # Window move algorithms for Microwindows
132 # Change for tradeoff between cpu speed and looks
133 # ERASEMOVE repaints only backgrounds while window dragging, quicker.
134 # Otherwise an XOR redraw is used for window moves only after button up,
135 # quickest (should set for ELKS)
136 # UPDATEREGIONS paints in update clipping region only for better look and feel
137 #
138 ####################################################################
139 ERASEMOVE                = Y
140 UPDATEREGIONS            = Y
141
142 ####################################################################
143 #
144 # Use MS fonts (default no)
145 #
146 ####################################################################
147 HAVEMSFONTS              = N
148
149 ####################################################################
150 #
151 # Link with Gray Palette (valid only for 4bpp modes)
152 #
153 ####################################################################
154 GRAYPALETTE              = N
155
156 ####################################################################
157 #
158 # If the platform is running UNIX, Linux or RTEMS...
159 #
160 ####################################################################
161 ifneq ($(ARCH), ELKS)
162
163 # X Window screen, mouse and kbd drivers
164 X11                      = N
165
166 ifeq ($(X11), Y)
167 # predefined model or select screen width, height, depth(palette mode only)
168 SCREEN_E15               = N
169 SCREEN_WIDTH             = 640
170 SCREEN_HEIGHT            = 480
171 SCREEN_DEPTH             = 4
172
173 else
174
175 # framebuffer screen driver (linear and/or vga 4 planes)
176 # set VTSWITCH to include virtual terminal switch code
177 FRAMEBUFFER              = N
178 FBVGA                    = Y
179 VTSWITCH                 = N
180 PORTRAIT_MODE            = N
181
182 # svgalib screen driver
183 VGALIB                   = Y
184
185 # direct VGA hardware access screen driver
186 HWVGA                    = N
187
188 ####################################################################
189 # Mouse or touch screen driver
190 # TPMOUSE for Linux-VR and Embedded Planet
191 # ADSMOUSE for ADS Graphics Client
192 # IPAQMOUSE for Compaq iPAQ
193 ####################################################################
194 GPMMOUSE                 = Y
195 SERMOUSE                 = N
196 TPMOUSE                  = N
197 ADSMOUSE                 = N
198 IPAQMOUSE                = N
199 NOMOUSE                  = N
200
201 # keyboard type
202 TTYKBD                   = Y
203
204 endif
205
206 ####################################################################
207 #
208 # If the platform is a LINUX-ARM box ....
209 #
210 ####################################################################
211 ifeq ($(ARCH), LINUX-ARM)
212
213 # If 4bpp driver with arm SA1100 LCD controller is used ...
214 SA1100_LCD_LTLEND        = N
215
216 endif
217
218
219 ####################################################################
220 #
221 # If the platform is a RTEMS box ....
222 #
223 ####################################################################
224 ifeq ($(ARCH), RTEMS)
225
226 # Location & BSP information of the RTEMS build
227 RTEMS_BUILD              = /tools/build-i386-elf-rtems
228 RTEMS_BSP                = pc386
229 LINK_APP_INTO_SERVER     = Y
230
231 endif
232
233 endif
234
235 ####################################################################
236 #
237 # If the platform is an ELKS box ...
238 #
239 ####################################################################
240 ifeq ($(ARCH), ELKS)
241
242 # Higher speed asm driver, c driver of hercules screen driver
243 ASMVGADRIVER             = Y
244 CVGADRIVER               = N
245 HERCDRIVER               = N
246
247 # Mouse support
248 SERMOUSE                 = Y
249
250 endif