xorg, work on driver

ulab-next
Jay Sorg 11 years ago
parent e2b4f8cf7e
commit bca7e7a023

@ -5,7 +5,7 @@ rdpPolyRectangle.o rdpPolyArc.o rdpFillPolygon.o rdpPolyFillRect.o \
rdpPolyFillArc.o rdpPolyText8.o rdpPolyText16.o rdpImageText8.o \ rdpPolyFillArc.o rdpPolyText8.o rdpPolyText16.o rdpImageText8.o \
rdpImageText16.o rdpImageGlyphBlt.o rdpPolyGlyphBlt.o rdpPushPixels.o rdpImageText16.o rdpImageGlyphBlt.o rdpPolyGlyphBlt.o rdpPushPixels.o
CFLAGS = -O2 -Wall -I/usr/include/xorg -I/usr/include/pixman-1 CFLAGS = -O2 -Wall -fPIC -I/usr/include/xorg -I/usr/include/pixman-1
LDFLAGS = LDFLAGS =

@ -7,5 +7,5 @@ to run it
create /etc/X11/xrdp create /etc/X11/xrdp
copy xorg.conf into it copy xorg.conf into it
Xorg -config xrdp/xorg.conf -logfile /tmp/Xjay.log :10 Xorg -config xrdp/xorg.conf -logfile /tmp/Xjay.log -novtswitch -sharevts -noreset :10

@ -1,7 +1,7 @@
OBJS = xrdpdev.o OBJS = xrdpdev.o
CFLAGS = -O2 -Wall -I/usr/include/xorg -I/usr/include/pixman-1 -I../module CFLAGS = -O2 -Wall -fPIC -I/usr/include/xorg -I/usr/include/pixman-1 -I../module
LDFLAGS = LDFLAGS =
@ -14,4 +14,3 @@ xrdpdev_drv.so: $(OBJS) Makefile
clean: clean:
rm -f $(OBJS) xrdpdev_drv.so rm -f $(OBJS) xrdpdev_drv.so

@ -6,9 +6,9 @@ Section "ServerLayout"
InputDevice "xrdpKeyboard" "CoreKeyboard" InputDevice "xrdpKeyboard" "CoreKeyboard"
EndSection EndSection
Section "ServerFlags" #Section "ServerFlags"
Option "DontVTSwitch" "on" # Option "DontVTSwitch" "on"
EndSection #EndSection
Section "Files" Section "Files"
FontPath "/usr/X11R6/lib/X11/fonts/misc/:unscaled" FontPath "/usr/X11R6/lib/X11/fonts/misc/:unscaled"
@ -51,7 +51,7 @@ Section "Monitor"
EndSection EndSection
Section "Device" Section "Device"
Identifier "Video Card (xrdpdev)" Identifier "Video Card (xrdpdev)"
Driver "xrdpdev" Driver "xrdpdev"
EndSection EndSection

Loading…
Cancel
Save