- Timestamp:
- 2010-01-31T13:56:23Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2e07f62c
- Parents:
- 89ee7ff (diff), b73c26d (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Location:
- uspace
- Files:
-
- 11 added
- 3 edited
- 7 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/Makefile
r89ee7ff rab4bace 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 \ … … 71 72 ifeq ($(UARCH),ia32) 72 73 DIRS += srv/hw/bus/pci 74 endif 75 76 ifeq ($(UARCH),ppc32) 77 DIRS += srv/hw/bus/cuda_adb 73 78 endif 74 79 -
uspace/app/init/init.c
r89ee7ff rab4bace 287 287 spawn("/srv/fhc"); 288 288 spawn("/srv/obio"); 289 srv_start("/srv/cuda_adb"); 289 290 srv_start("/srv/i8042"); 290 srv_start("/srv/c_mouse"); 291 srv_start("/srv/adb_ms"); 292 srv_start("/srv/char_ms"); 291 293 292 294 spawn("/srv/fb"); … … 320 322 getterm("term/vc5", "/app/bdsh"); 321 323 getterm("term/vc6", "/app/klog"); 322 324 323 325 return 0; 324 326 } -
uspace/srv/hid/char_mouse/Makefile
r89ee7ff rab4bace 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
r89ee7ff rab4bace 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
r89ee7ff rab4bace 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
r89ee7ff rab4bace 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
r89ee7ff rab4bace 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 -
uspace/srv/hid/kbd/Makefile.build
r89ee7ff rab4bace 125 125 ifeq ($(UARCH),ppc32) 126 126 SOURCES += \ 127 port/ dummy.c \128 ctl/ stty.c127 port/adb.c \ 128 ctl/apple.c 129 129 endif 130 130
Note:
See TracChangeset
for help on using the changeset viewer.