Changeset b73c26d in mainline
- Timestamp:
- 2010-01-31T13:50:52Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- ab4bace
- Parents:
- 3a2f8aa
- Files:
-
- 5 added
- 5 edited
- 7 moved
Legend:
- Unmodified
- Added
- Removed
-
boot/arch/amd64/Makefile.inc
r3a2f8aa rb73c26d 33 33 $(USPACEDIR)/srv/hw/char/i8042/i8042 \ 34 34 $(USPACEDIR)/srv/hw/bus/pci/pci \ 35 $(USPACEDIR)/srv/hid/c _mouse/c_mouse35 $(USPACEDIR)/srv/hid/char_mouse/char_ms 36 36 37 37 MODULES := $(notdir $(COMPONENTS)) -
boot/arch/ia64/loader/Makefile.common
r3a2f8aa rb73c26d 49 49 RD_SRVS += \ 50 50 $(USPACEDIR)/srv/hw/char/i8042/i8042 \ 51 $(USPACEDIR)/srv/hid/c _mouse/c_mouse51 $(USPACEDIR)/srv/hid/char_mouse/char_ms 52 52 endif -
boot/arch/ppc32/loader/Makefile.common
r3a2f8aa rb73c26d 44 44 USPACEDIR = ../../../../uspace 45 45 46 RD_SRVS += $(USPACEDIR)/srv/hw/bus/cuda_adb/cuda_adb 46 RD_SRVS += \ 47 $(USPACEDIR)/srv/hid/adb_mouse/adb_ms \ 48 $(USPACEDIR)/srv/hw/bus/cuda_adb/cuda_adb -
uspace/Makefile
r3a2f8aa rb73c26d 59 59 srv/fs/tmpfs \ 60 60 srv/fs/devfs \ 61 srv/hid/adb_mouse \ 61 62 srv/hid/console \ 62 srv/hid/c _mouse \63 srv/hid/char_mouse \ 63 64 srv/hid/fb \ 64 65 srv/hid/kbd \ -
uspace/app/init/init.c
r3a2f8aa rb73c26d 289 289 srv_start("/srv/cuda_adb"); 290 290 srv_start("/srv/i8042"); 291 srv_start("/srv/c_mouse"); 291 srv_start("/srv/adb_ms"); 292 srv_start("/srv/char_ms"); 292 293 293 294 spawn("/srv/fb"); … … 314 315 #endif 315 316 316 getterm("term/vc0", "/app/ klog");317 getterm("term/vc0", "/app/bdsh"); 317 318 getterm("term/vc1", "/app/bdsh"); 318 319 getterm("term/vc2", "/app/bdsh"); … … 320 321 getterm("term/vc4", "/app/bdsh"); 321 322 getterm("term/vc5", "/app/bdsh"); 322 /* getterm("term/vc6", "/app/klog");*/ 323 323 getterm("term/vc6", "/app/klog"); 324 324 325 return 0; 325 326 } -
uspace/srv/hid/char_mouse/Makefile
r3a2f8aa rb73c26d 32 32 EXTRA_CFLAGS = -Iinclude 33 33 34 OUTPUT = c _mouse34 OUTPUT = char_ms 35 35 36 36 SOURCES = \ 37 37 proto/ps2.c \ 38 c _mouse.c \38 char_mouse.c \ 39 39 chardev.c 40 40 -
uspace/srv/hid/char_mouse/char_mouse.c
r3a2f8aa rb73c26d 47 47 #include <devmap.h> 48 48 49 #include <c _mouse.h>49 #include <char_mouse.h> 50 50 #include <mouse_port.h> 51 51 #include <mouse_proto.h> -
uspace/srv/hid/char_mouse/chardev.c
r3a2f8aa rb73c26d 41 41 #include <errno.h> 42 42 43 #include <c _mouse.h>43 #include <char_mouse.h> 44 44 #include <mouse_port.h> 45 45 -
uspace/srv/hid/char_mouse/include/char_mouse.h
r3a2f8aa rb73c26d 34 34 */ 35 35 36 #ifndef C _MOUSE_H_37 #define C _MOUSE_H_36 #ifndef CHAR_MOUSE_H_ 37 #define CHAR_MOUSE_H_ 38 38 39 39 extern void mouse_handle_byte(int); -
uspace/srv/hid/char_mouse/proto/ps2.c
r3a2f8aa rb73c26d 37 37 #include <stdio.h> 38 38 #include <mouse_proto.h> 39 #include <c _mouse.h>39 #include <char_mouse.h> 40 40 41 41 #define BUFSIZE 3
Note:
See TracChangeset
for help on using the changeset viewer.