Changeset a635535 in mainline
- Timestamp:
- 2023-11-30T20:29:05Z (14 months ago)
- Branches:
- master, topic/simplify-dev-export
- Children:
- 1be9ee0
- Parents:
- cad7b7e
- Location:
- uspace
- Files:
-
- 35 edited
- 6 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/mkbd/meson.build
rcad7b7e ra635535 27 27 # 28 28 29 deps = [ 'usb', 'usbdev', 'usbhid', 'drv' ]29 deps = [ 'usb', 'usbdev', 'usbhid', 'drv', 'console' ] 30 30 src = files('main.c') -
uspace/app/modplay/meson.build
rcad7b7e ra635535 27 27 # 28 28 29 deps = [ 'trackmod', 'hound', 'pcm' ]29 deps = [ 'trackmod', 'hound', 'pcm', 'console' ] 30 30 src = files('modplay.c') 31 31 -
uspace/app/netecho/meson.build
rcad7b7e ra635535 27 27 # 28 28 29 deps = [ 'inet' ]29 deps = [ 'inet', 'console' ] 30 30 src = files('comm.c', 'netecho.c') -
uspace/app/nterm/meson.build
rcad7b7e ra635535 27 27 # 28 28 29 deps = [ 'inet' ]29 deps = [ 'inet', 'console' ] 30 30 src = files('conn.c', 'nterm.c') -
uspace/app/ping/meson.build
rcad7b7e ra635535 27 27 # 28 28 29 deps = [ 'inet' ]29 deps = [ 'inet', 'console' ] 30 30 src = files('ping.c') -
uspace/app/tester/meson.build
rcad7b7e ra635535 29 29 # 30 30 31 deps = [ 'block', 'codepage', 'drv', 'math', 'ipctest' ]31 deps = [ 'block', 'codepage', 'drv', 'math', 'ipctest', 'console' ] 32 32 src = files( 33 33 'tester.c', -
uspace/app/tetris/meson.build
rcad7b7e ra635535 28 28 # 29 29 30 deps = [ 'console' ] 30 31 src = files( 31 32 'shapes.c', -
uspace/app/top/meson.build
rcad7b7e ra635535 28 28 # 29 29 30 deps = [ 'console' ] 30 31 src = files( 31 32 'top.c', -
uspace/app/trace/meson.build
rcad7b7e ra635535 28 28 # 29 29 30 deps = [ 'console' ] 30 31 src = files( 31 32 'trace.c', -
uspace/drv/hid/adb-kbd/adb-kbd.c
rcad7b7e ra635535 34 34 #include <ddf/log.h> 35 35 #include <errno.h> 36 #include <io/ console.h>36 #include <io/kbd_event.h> 37 37 #include <ipc/adb.h> 38 38 #include <ipc/kbdev.h> -
uspace/drv/hid/adb-kbd/ctl.c
rcad7b7e ra635535 33 33 34 34 #include <errno.h> 35 #include <io/ console.h>35 #include <io/kbd_event.h> 36 36 #include <io/keycode.h> 37 37 -
uspace/drv/hid/atkbd/atkbd.c
rcad7b7e ra635535 38 38 #include <errno.h> 39 39 #include <ddf/log.h> 40 #include <io/kbd_event.h> 40 41 #include <io/keycode.h> 41 42 #include <io/chardev.h> 42 #include <io/console.h>43 43 #include <ipc/kbdev.h> 44 44 #include <abi/ipc/methods.h> -
uspace/drv/hid/ps2mouse/ps2mouse.c
rcad7b7e ra635535 40 40 #include <io/keycode.h> 41 41 #include <io/chardev.h> 42 #include <io/console.h>43 42 #include <ipc/mouseev.h> 44 43 #include <abi/ipc/methods.h> -
uspace/drv/hid/usbhid/kbd/kbddev.c
rcad7b7e ra635535 41 41 42 42 #include <io/keycode.h> 43 #include <io/ console.h>43 #include <io/kbd_event.h> 44 44 #include <abi/ipc/methods.h> 45 45 #include <ipc/kbdev.h> -
uspace/drv/hid/usbhid/kbd/kbdrepeat.c
rcad7b7e ra635535 36 36 37 37 #include <fibril_synch.h> 38 #include <io/kbd_event.h> 38 39 #include <io/keycode.h> 39 #include <io/console.h>40 40 #include <errno.h> 41 41 -
uspace/drv/hid/usbhid/mouse/mousedev.c
rcad7b7e ra635535 46 46 #include <str_error.h> 47 47 #include <ipc/mouseev.h> 48 #include <io/console.h>49 48 50 49 #include <ipc/kbdev.h> -
uspace/drv/hid/usbhid/multimedia/multimedia.c
rcad7b7e ra635535 51 51 52 52 #include <ipc/kbdev.h> 53 #include <io/ console.h>53 #include <io/kbd_event.h> 54 54 55 55 #define NAME "multimedia-keys" -
uspace/drv/hid/xtkbd/xtkbd.c
rcad7b7e ra635535 39 39 #include <io/keycode.h> 40 40 #include <io/chardev.h> 41 #include <io/ console.h>41 #include <io/kbd_event.h> 42 42 #include <ipc/kbdev.h> 43 43 #include <abi/ipc/methods.h> -
uspace/lib/c/generic/io/chargrid.c
rcad7b7e ra635535 27 27 */ 28 28 29 /** @addtogroup libc 29 /** @addtogroup libconsole 30 30 * @{ 31 31 */ -
uspace/lib/c/include/io/charfield.h
rcad7b7e ra635535 28 28 */ 29 29 30 /** @addtogroup libc 30 /** @addtogroup libconsole 31 31 * @{ 32 32 */ … … 34 34 */ 35 35 36 #ifndef _LIBC _IO_CHARFIELD_H_37 #define _LIBC _IO_CHARFIELD_H_36 #ifndef _LIBCONSOLE_IO_CHARFIELD_H_ 37 #define _LIBCONSOLE_IO_CHARFIELD_H_ 38 38 39 39 #include <stdbool.h> -
uspace/lib/c/include/io/chargrid.h
rcad7b7e ra635535 27 27 */ 28 28 29 /** @addtogroup libc 29 /** @addtogroup libconsole 30 30 * @{ 31 31 */ … … 34 34 */ 35 35 36 #ifndef _LIBC _IO_CHARGRID_H_37 #define _LIBC _IO_CHARGRID_H_36 #ifndef _LIBCONSOLE_IO_CHARGRID_H_ 37 #define _LIBCONSOLE_IO_CHARGRID_H_ 38 38 39 39 #include <io/charfield.h> -
uspace/lib/c/include/io/color.h
rcad7b7e ra635535 1 1 /* 2 * Copyright (c) 20 08Jiri Svoboda2 * Copyright (c) 2023 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 27 27 */ 28 28 29 /** @addtogroup libc 29 /** @addtogroup libconsole 30 30 * @{ 31 31 */ … … 33 33 */ 34 34 35 #ifndef _LIBC _IO_COLOR_H_36 #define _LIBC _IO_COLOR_H_35 #ifndef _LIBCONSOLE_IO_COLOR_H_ 36 #define _LIBCONSOLE_IO_COLOR_H_ 37 37 38 38 typedef enum { -
uspace/lib/c/include/io/concaps.h
rcad7b7e ra635535 1 1 /* 2 * Copyright (c) 20 12Jiri Svoboda2 * Copyright (c) 2023 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 27 27 */ 28 28 29 /** @addtogroup libc ipc29 /** @addtogroup libconsole 30 30 * @{ 31 31 */ … … 33 33 */ 34 34 35 #ifndef _LIBC _IO_CONCAPS_H_36 #define _LIBC _IO_CONCAPS_H_35 #ifndef _LIBCONSOLE_IO_CONCAPS_H_ 36 #define _LIBCONSOLE_IO_CONCAPS_H_ 37 37 38 38 typedef enum { -
uspace/lib/c/include/io/output.h
rcad7b7e ra635535 38 38 #include <ipc/output.h> 39 39 #include <io/chargrid.h> 40 #include <io/console.h> 40 #include <io/concaps.h> 41 #include <io/style.h> 41 42 42 43 extern errno_t output_yield(async_sess_t *); -
uspace/lib/c/meson.build
rcad7b7e ra635535 115 115 'generic/io/vprintf.c', 116 116 'generic/io/vsnprintf.c', 117 'generic/io/con_srv.c',118 'generic/io/console.c',119 117 'generic/io/table.c', 120 118 'generic/irq.c', -
uspace/lib/clui/meson.build
rcad7b7e ra635535 27 27 # 28 28 29 deps = [ 'clipboard' ]29 deps = [ 'clipboard', 'console' ] 30 30 src = files( 31 31 'nchoice.c', -
uspace/lib/congfx/meson.build
rcad7b7e ra635535 27 27 # 28 28 29 deps = [ 'gfx' ]29 deps = [ 'gfx', 'console' ] 30 30 src = files( 31 31 'src/console.c', -
uspace/lib/console/include/io/con_srv.h
rcad7b7e ra635535 1 1 /* 2 * Copyright (c) 202 1Jiri Svoboda2 * Copyright (c) 2023 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 27 27 */ 28 28 29 /** @addtogroup libc 29 /** @addtogroup libconsole 30 30 * @{ 31 31 */ … … 33 33 */ 34 34 35 #ifndef _LIBC _CON_SRV_H_36 #define _LIBC _CON_SRV_H_35 #ifndef _LIBCONSOLE_IO_CON_SRV_H_ 36 #define _LIBCONSOLE_IO_CON_SRV_H_ 37 37 38 38 #include <adt/list.h> -
uspace/lib/console/include/io/cons_event.h
rcad7b7e ra635535 1 1 /* 2 * Copyright (c) 20 13 Jiri Svoboda2 * Copyright (c) 2023 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 27 27 */ 28 28 29 /** @addtogroup libc 29 /** @addtogroup libconsole 30 30 * @{ 31 31 */ … … 33 33 */ 34 34 35 #ifndef _LIBC _IO_CONS_EVENT_H_36 #define _LIBC _IO_CONS_EVENT_H_35 #ifndef _LIBCONSOLE_IO_CONS_EVENT_H_ 36 #define _LIBCONSOLE_IO_CONS_EVENT_H_ 37 37 38 38 #include <adt/list.h> -
uspace/lib/console/include/io/console.h
rcad7b7e ra635535 1 1 /* 2 * Copyright (c) 202 1Jiri Svoboda2 * Copyright (c) 2023 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 27 27 */ 28 28 29 /** @addtogroup libc 29 /** @addtogroup libconsole 30 30 * @{ 31 31 */ … … 33 33 */ 34 34 35 #ifndef _LIBC _IO_CONSOLE_H_36 #define _LIBC _IO_CONSOLE_H_35 #ifndef _LIBCONSOLE_IO_CONSOLE_H_ 36 #define _LIBCONSOLE_IO_CONSOLE_H_ 37 37 38 38 #include <time.h> -
uspace/lib/console/include/ipc/console.h
rcad7b7e ra635535 1 1 /* 2 * Copyright (c) 202 1Jiri Svoboda2 * Copyright (c) 2023 Jiri Svoboda 3 3 * Copyright (c) 2006 Josef Cejka 4 4 * All rights reserved. … … 28 28 */ 29 29 30 /** @addtogroup libc ipc30 /** @addtogroup libconsole 31 31 * @{ 32 32 */ … … 34 34 */ 35 35 36 #ifndef _LIBC _IPC_CONSOLE_H_37 #define _LIBC _IPC_CONSOLE_H_36 #ifndef _LIBCONSOLE_IPC_CONSOLE_H_ 37 #define _LIBCONSOLE_IPC_CONSOLE_H_ 38 38 39 39 #include <ipc/vfs.h> -
uspace/lib/console/src/con_srv.c
rcad7b7e ra635535 27 27 */ 28 28 29 /** @addtogroup libc 29 /** @addtogroup libconsole 30 30 * @{ 31 31 */ -
uspace/lib/console/src/console.c
rcad7b7e ra635535 29 29 */ 30 30 31 /** @addtogroup libc 31 /** @addtogroup libconsole 32 32 * @{ 33 33 */ -
uspace/lib/fmtutil/meson.build
rcad7b7e ra635535 27 27 # 28 28 29 deps = [ 'console' ] 29 30 src = files('fmtutil.c') -
uspace/lib/meson.build
rcad7b7e ra635535 53 53 'inet', 54 54 55 'console', 55 56 'device', 56 57 -
uspace/srv/hid/console/console.c
rcad7b7e ra635535 37 37 #include <stdio.h> 38 38 #include <adt/prodcons.h> 39 #include <io/console.h> 39 40 #include <io/input.h> 40 41 #include <ipc/vfs.h> -
uspace/srv/hid/console/meson.build
rcad7b7e ra635535 28 28 # 29 29 30 deps = [ 'console' ] 30 31 src = files('console.c') -
uspace/srv/hid/input/meson.build
rcad7b7e ra635535 28 28 # 29 29 30 deps = [ 'drv' ]30 deps = [ 'drv', 'console' ] 31 31 src = files( 32 32 'layout/cz.c', -
uspace/srv/hid/output/meson.build
rcad7b7e ra635535 28 28 # 29 29 30 deps = [ 'codepage', ' drv', 'fbfont', 'pixconv', 'ddev' ]30 deps = [ 'codepage', 'console', 'drv', 'fbfont', 'pixconv', 'ddev' ] 31 31 src = files( 32 32 'ctl/serial.c', -
uspace/srv/hid/remcons/meson.build
rcad7b7e ra635535 28 28 # 29 29 30 deps = [ 'inet' ]30 deps = [ 'inet', 'console' ] 31 31 src = files('remcons.c', 'user.c') -
uspace/srv/hid/s3c24xx_ts/s3c24xx_ts.c
rcad7b7e ra635535 39 39 #include <ddi.h> 40 40 #include <loc.h> 41 #include <io/console.h>42 41 #include <vfs/vfs.h> 43 42 #include <ipc/mouseev.h>
Note:
See TracChangeset
for help on using the changeset viewer.