/u-boot/doc/ |
A D | README.iomux | 23 A user can use a comma-separated list of devices to set stdin, stdout 24 and stderr. For example: "setenv stdin serial,nc". NOTE: No spaces 35 stdin nc,nc,serial" will discard the second nc. iomux_doenv() is 36 not able to modify the environment, however, so that "pri stdin" still 47 Thus, a user can type into any device registered for stdin. No effort 48 has been made to demulitplex simultaneous input from multiple stdin 57 example, if stdin=serial,nc and stdout=serial,nc then all output 62 to the 'stdin' file, the first output one to 'stdout' and 'stderr'. 76 work, even when stdin=stdout=stderr=serial. 80 Using nc as a stdin device results in even more overhead because nc_tstc() [all …]
|
A D | README.serial_multi | 20 setenv stdin serial_scc 26 setenv stdin serial_smc 49 setenv stdin serial1 54 setenv stdin serial0
|
A D | README.console | 19 to the 'stdin' file, the first output one to 'stdout' and 'stderr'. 22 devices and their flags. You can assign a standard file (stdin, 27 setenv stdin serial <- To use the serial input 44 tstc (to test for the presence of a char in stdin) 45 getc (to get a char from stdin) 52 * FILE (can be 'stdin', 'stdout', 'stderr'):
|
A D | README.usb | 43 an USB keyboard is assigned as stdin. The stdin
|
A D | README.m54418twr | 167 stdin=serial
|
/u-boot/tools/patman/ |
A D | cros_subprocess.py | 56 def __init__(self, args, stdin=None, stdout=PIPE_PTY, stderr=PIPE_PTY, argument 83 super(Popen, self).__init__(args, stdin=stdin, 162 if self.stdin: 165 self.stdin.flush() 167 write_set.append(self.stdin) 169 self.stdin.close() 190 if self.stdin in wlist: 195 bytes_written = os.write(self.stdin.fileno(), chunk) 198 self.stdin.close() 199 write_set.remove(self.stdin) [all …]
|
/u-boot/common/ |
A D | console.c | 34 console = stdin; in on_console() 173 case stdin: in console_setfile() 188 case stdin: in console_setfile() 557 return fgetc(stdin); in getchar() 577 return ftstc(stdin); in tstc() 920 if (stdio_devices[stdin] == NULL) { in stdio_print_current_devices() 923 printf ("%s\n", stdio_devices[stdin]->name); in stdio_print_current_devices() 975 iomux_err = iomux_doenv(stdin, stdinname); in console_init_r() 1004 console_doenv(stdin, inputdev); in console_init_r() 1081 console_setfile_and_devices(stdin, inputdev); in console_init_r()
|
A D | usb_kbd.c | 563 error = iomux_doenv(stdin, stdinname); 575 error = console_assign(stdin, DEVNAME); 626 if (iomux_replace_device(stdin, DEVNAME, force ? "nulldev" : "")) 669 if (iomux_replace_device(stdin, DEVNAME, "nulldev")) {
|
A D | stdio.c | 34 case stdin: in stdio_file_to_flags()
|
A D | Kconfig | 175 Similarly, stdin can be set to come from serial and keyboard. 178 variables stdout, stdin and stderr will take effect immediately. 194 overwrite_console() returns 1, the stdin, stderr and stdout are 202 The console environment variables (stdout, stdin, stderr) can be 211 Normally U-Boot displays the current settings for stdout, stdin
|
A D | cli_hush.c | 756 fgets(string, sizeof(string), stdin); in builtin_read() 1102 if (i->__promptme && interactive && i->file == stdin) { 3425 input=stdin; 3460 if (argv[optind]==NULL && input==stdin && 3461 isatty(fileno(stdin)) && isatty(fileno(stdout))) { 3476 opt=parse_file_outer(stdin);
|
/u-boot/scripts/kconfig/tests/ |
A D | conftest.py | 66 stdin=subprocess.PIPE, 74 ps.stdin.write(in_keys.encode('utf-8')) 80 ps.stdin.write(b'\n')
|
/u-boot/include/ |
A D | stdio.h | 43 #define stdin 0 macro
|
/u-boot/configs/ |
A D | mx6cuboxi_defconfig | 27 … then usb start; setenv stdin serial,usbkbd; setenv stdout serial,vidconsole; setenv stderr seria…
|
/u-boot/tools/concurrencytest/ |
A D | concurrencytest.py | 77 sys.stdin.close()
|
/u-boot/doc/usage/ |
A D | netconsole.rst | 6 serial and network input/output devices by adjusting the 'stdin' and 25 => setenv nc 'setenv stdout nc;setenv stdin nc'
|
/u-boot/scripts/dtc/ |
A D | srcpos.c | 123 f = stdin; in srcfile_relative_open()
|
/u-boot/scripts/kconfig/ |
A D | conf.c | 110 xfgets(line, sizeof(line), stdin); in conf_askvalue() 304 xfgets(line, sizeof(line), stdin); in conf_choice()
|
/u-boot/test/py/ |
A D | multiplexed_log.py | 138 stdin=None, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
|
/u-boot/drivers/input/ |
A D | input.c | 677 console_assign(stdin, dev->name)) in input_stdio_register()
|
/u-boot/lib/bzip2/ |
A D | bzlib.c | 1449 fp = (writing ? stdout : stdin); in bzopen_or_bzdopen() 1474 if (fp != stdin && fp != stdout) fclose(fp); in bzopen_or_bzdopen() 1555 if(fp!=stdin && fp!=stdout){ in BZ_API()
|
/u-boot/board/freescale/m53017evb/ |
A D | README | 172 stdin=serial
|
/u-boot/cmd/ |
A D | usb.c | 656 console_assign(stdin, "serial");
|
/u-boot/doc/develop/ |
A D | py_testing.rst | 23 involves executing some binary and interacting with its stdin/stdout. You will 60 and interacting with it over stdin/stdout. 234 This script provides access to the U-Boot console. The script's stdin/stdout
|
/u-boot/board/freescale/m52277evb/ |
A D | README | 160 stdin=serial
|