- Timestamp:
- 2012-12-05T21:39:28Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 295732b
- Parents:
- c0a7545
- Location:
- uspace
- Files:
-
- 4 deleted
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/Makefile
rc0a7545 r232cd4f 93 93 srv/bd/sata_bd \ 94 94 srv/bd/file_bd \ 95 srv/bd/gxe_bd \96 95 srv/bd/rd \ 97 96 srv/bd/part/guid_part \ -
uspace/app/init/init.c
rc0a7545 r232cd4f 369 369 #ifdef CONFIG_START_BD 370 370 srv_start("/srv/ata_bd"); 371 srv_start("/srv/gxe_bd");372 371 #endif 373 372 -
uspace/srv/hid/input/Makefile
rc0a7545 r232cd4f 38 38 port/adb_mouse.c \ 39 39 port/chardev.c \ 40 port/gxemul.c \41 40 port/msim.c \ 42 41 port/niagara.c \ … … 47 46 proto/mousedev.c \ 48 47 ctl/apple.c \ 49 ctl/gxe_fb.c \50 48 ctl/kbdev.c \ 51 49 ctl/pc.c \ -
uspace/srv/hid/input/input.c
rc0a7545 r232cd4f 432 432 kbd_add_dev(&msim_port, &stty_ctl); 433 433 #endif 434 #if (defined(MACHINE_lgxemul) || defined(MACHINE_bgxemul)) && defined(CONFIG_FB)435 kbd_add_dev(&gxemul_port, &gxe_fb_ctl);436 #endif437 #if defined(MACHINE_lgxemul) || defined(MACHINE_bgxemul) && !defined(CONFIG_FB)438 kbd_add_dev(&gxemul_port, &stty_ctl);439 #endif440 434 #if defined(UARCH_ppc32) 441 435 kbd_add_dev(&adb_port, &apple_ctl); -
uspace/srv/hid/input/kbd_ctl.h
rc0a7545 r232cd4f 49 49 50 50 extern kbd_ctl_ops_t apple_ctl; 51 extern kbd_ctl_ops_t gxe_fb_ctl;52 51 extern kbd_ctl_ops_t kbdev_ctl; 53 52 extern kbd_ctl_ops_t pc_ctl; -
uspace/srv/hid/input/kbd_port.h
rc0a7545 r232cd4f 51 51 extern kbd_port_ops_t adb_port; 52 52 extern kbd_port_ops_t chardev_port; 53 extern kbd_port_ops_t gxemul_port;54 53 extern kbd_port_ops_t msim_port; 55 54 extern kbd_port_ops_t niagara_port;
Note:
See TracChangeset
for help on using the changeset viewer.