Lines Matching refs:to
14 relocates itself to RAM, all console drivers are initialized (they
15 will register all detected console devices to the system for further
19 to the 'stdin' file, the first output one to 'stdout' and 'stderr'.
21 You can use the command "coninfo" to see all registered console
23 stdout or stderr) to any device you see in that list simply by
24 assigning its name to the corresponding environment variable. For
30 Do a simple "saveenv" to save the console settings in the environment
36 You can use the following functions to access the console:
39 putc (to put a char to stdout)
40 puts (to put a string to stdout)
41 printf (to format and put a string to stdout)
44 tstc (to test for the presence of a char in stdin)
45 getc (to get a char from stdin)
48 eputc (to put a char to stderr)
49 eputs (to put a string to stderr)
50 eprintf (to format and put a string to stderr)
53 fputc (like putc but redirected to a file)
54 fputs (like puts but redirected to a file)
55 fprintf (like printf but redirected to a file)
56 ftstc (like tstc but redirected to a file)
57 fgetc (like getc but redirected to a file)
65 Use the 'bd_mon_fnc' field of the bd_info structure passed to the
66 application to do everything you want with the console.
74 some parameters like the framebuffer descriptors are passed to the
75 kernel in the high memory area to let the applications (the kernel)
92 lcd (mpc8xx lcd controller; to )