/openbmc/openbmc/poky/meta/classes/ |
H A D | terminal.bbclass | 19 import oe.terminal 20 return " ".join(o.name for o in oe.terminal.prioritized()) 48 import oe.terminal 91 terminal = oe.data.typed_value('OE_TERMINAL', d).lower() 92 if terminal == 'none': 94 elif terminal != 'auto': 96 oe.terminal.spawn(terminal, command, title, None, d) 98 except oe.terminal.UnsupportedTerminal: 99 bb.warn('Unsupported terminal "%s", defaulting to "auto"' % 100 terminal) [all …]
|
/openbmc/openbmc/poky/meta/lib/oe/ |
H A D | terminal.py | 11 logger = logging.getLogger('BitBake.OE.Terminal') 33 class Terminal(Popen, metaclass=Registry): class 47 fmt = {'title': title or 'Terminal', 'command': sh_cmd, 'cwd': os.getcwd() } 53 class XTerminal(Terminal): 55 Terminal.__init__(self, sh_cmd, title, env, d) 60 command = 'gnome-terminal -t "{title}" -- {command}' 64 # Recent versions of gnome-terminal does not support non-UTF8 charset: 67 # Once fixed on the gnome-terminal project, this should be removed. 73 command = 'mate-terminal --disable-factory -t "{title}" -x {command}' 77 command = 'xfce4-terminal -T "{title}" -e "{command}"' [all …]
|
/openbmc/linux/drivers/s390/char/ |
H A D | Kconfig | 17 Include support for fullscreen applications on an IBM 3270 terminal. 21 prompt "Support for console on 3270 terminal" 24 Include support for using an IBM 3270 terminal as a Linux system 29 prompt "Support for 3215 line mode terminal" 36 prompt "Support for console on 3215 line mode terminal" 39 Include support for using an IBM 3215 line-mode terminal as a 47 prompt "Support for SCLP line mode terminal" 54 prompt "Support for console on SCLP line mode terminal" 57 Include support for using an IBM HWC line-mode terminal as the Linux 62 prompt "Support for SCLP VT220-compatible terminal" [all …]
|
/openbmc/linux/drivers/tty/ |
H A D | Kconfig | 14 bool "Virtual terminal" if EXPERT 18 If you say Y here, you will get support for terminal devices with 21 one physical terminal. This is rather useful, for example one 22 virtual terminal can collect system messages and warnings, another 28 properties (such as colors or beeping) of a virtual terminal. The 35 You need at least one virtual terminal device in order to make use 53 bool "Support for console on virtual terminal" if EXPERT 59 answer Y here, a virtual terminal (the device used to interact with 60 a physical terminal) can be used as system console. This is the most 66 terminal (/dev/tty0) will be used as system console. You can change [all …]
|
/openbmc/linux/include/linux/usb/ |
H A D | midi-v2.h | 21 /* A.3 MS Class-Specific Group Terminal Block Descriptor Subtypes */ 33 /* A.6 Group Terminal Block Types */ 38 /* A.7 Group Terminal Default MIDI Protocol */ 55 __u8 bNumGrpTrmBlock; /* Number of Group Terminal Blocks: n */ 56 __u8 baAssoGrpTrmBlkID[]; /* ID of the Group Terminal Blocks [n] */ 71 /* 5.4.1 Class-Specific Group Terminal Block Header Descriptor */ 79 /* 5.4.2.1 Group Terminal Block Descriptor */ 84 __u8 bGrpTrmBlkID; /* ID of this Group Terminal Block */ 85 __u8 bGrpTrmBlkType; /* Group Terminal Block Type */ 86 __u8 nGroupTrm; /* The first member Group Terminal in this block */
|
/openbmc/openbmc/poky/meta/recipes-sato/matchbox-terminal/ |
H A D | matchbox-terminal_0.2.bb | 1 SUMMARY = "Lightweight GTK+ terminal application" 23 RPROVIDES:${PN} = "virtual-x-terminal-emulator" 24 ALTERNATIVE:${PN} = "x-terminal-emulator" 25 ALTERNATIVE_TARGET[x-terminal-emulator] = "${bindir}/matchbox-terminal" 26 ALTERNATIVE_PRIORITY[x-terminal-emulator] = "20"
|
/openbmc/openbmc/poky/meta/lib/oeqa/runtime/cases/ |
H A D | terminal.py | 15 @OEHasPackage(['matchbox-terminal']) 18 …ing.Thread(target=self.target.run, args=("export DISPLAY=:0 && matchbox-terminal -e 'sh -c \"uname… 22 status, output = self.target.run('pidof matchbox-terminal') 24 …l(number_of_terminal, 1, msg='There should be only one terminal being launched. Number of terminal… 26 self.assertEqual(status, 0, msg='Not able to find process that runs terminal.')
|
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/tnftp/tnftp/ |
H A D | 0002-Add-casts-to-appease-conversions-between-wchar_t-and.patch | 6 Upstream-Status: Backport [http://cvsweb.netbsd.org/bsdweb.cgi/src/lib/libedit/terminal.c.diff?r1=1… 10 libedit/terminal.c | 3 ++- 13 diff --git a/libedit/terminal.c b/libedit/terminal.c 15 --- a/libedit/terminal.c 16 +++ b/libedit/terminal.c
|
/openbmc/linux/Documentation/ABI/testing/ |
H A D | configfs-usb-gadget-uvc | 42 What: /config/usb-gadget/gadget/functions/uvc.name/control/terminal 45 Description: Terminal descriptors 47 What: /config/usb-gadget/gadget/functions/uvc.name/control/terminal/output 50 Description: Output terminal descriptors 52 What: /config/usb-gadget/gadget/functions/uvc.name/control/terminal/output/default 55 Description: Default output terminal descriptors 61 bSourceID id of the terminal to which this terminal 63 bAssocTerminal id of the input terminal to which this output 64 terminal is associated 65 wTerminalType terminal type [all …]
|
/openbmc/openbmc/meta-arm/meta-arm/lib/fvp/ |
H A D | terminal.py | 17 Terminal = collections.namedtuple("Terminal", ["priority", "name", "command"]) variable in Terminals 23 self.terminals.append(Terminals.Terminal(priority, name, command)) 33 return config.get("RunFVP", "Terminal", fallback=None) 57 terminals.add_terminal(2, "gnome-terminal", f"gnome-terminal --window --title \"{{name}} - %title\"…
|
H A D | runner.py | 8 from .terminal import terminals 27 for terminal, name in config["terminals"].items(): 28 # If terminals are enabled and this terminal has been named 31 # cli.extend(["--parameter", f"{terminal}.mode=raw"]) 32 …cli.extend(["--parameter", f"{terminal}.terminal_command={terminals[terminal_choice].command.forma… 34 # Disable terminal 35 cli.extend(["--parameter", f"{terminal}.start_telnet=0"])
|
/openbmc/openbmc/meta-openembedded/meta-gnome/recipes-gnome/gnome-terminal/gnome-terminal/ |
H A D | 0001-Add-W_EXITCODE-macro-for-non-glibc-systems.patch | 13 src/terminal.cc | 5 +++++ 16 diff --git a/src/terminal.cc b/src/terminal.cc 18 --- a/src/terminal.cc 19 +++ b/src/terminal.cc
|
/openbmc/linux/include/uapi/linux/usb/ |
H A D | audio.h | 89 /* A.10.1 Terminal Control Selectors */ 149 /* Terminals - 2.1 USB Terminal Types */ 154 /* Terminal Control Selectors */ 161 __le16 wTotalLength; /* includes Unit and Terminal desc. */ 180 /* 4.3.2.1 Input Terminal Descriptor */ 185 __u8 bTerminalID; /* Constant uniquely terminal ID */ 186 __le16 wTerminalType; /* USB Audio Terminal Types */ 187 __u8 bAssocTerminal; /* ID of the Output Terminal associated */ 196 /* Terminals - 2.2 Input Terminal Types */ 209 /* 4.3.2.2 Output Terminal Descriptor */ [all …]
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-graphics/xorg-app/ |
H A D | xterm_394.bb | 2 SUMMARY = "xterm is the standard terminal emulator for the X Window System" 41 RPROVIDES:${PN} = "virtual-x-terminal-emulator" 46 ALTERNATIVE:${PN} = "resize x-terminal-emulator" 47 ALTERNATIVE_TARGET[x-terminal-emulator] = "${bindir}/xterm" 49 ALTERNATIVE_PRIORITY[x-terminal-emulator] = "9"
|
/openbmc/u-boot/tools/patman/ |
H A D | tout.py | 4 # Terminal output logging. 9 import terminal 52 """Clear any active progress message on the terminal.""" 78 """Output a message to the terminal. 93 """Output a message to the terminal. 162 _color = terminal.Color()
|
H A D | terminal.py | 5 """Terminal utilities 7 This module handles terminal interaction including ANSI color codes. 18 # Initially, we are set up to print to the terminal 40 """Handle a line of output to the terminal. 43 terminal.
|
/openbmc/linux/drivers/watchdog/ |
H A D | pic32-wdt.c | 75 u32 period, ps, terminal; in pic32_wdt_get_timeout_secs() local 87 /* calculate terminal count from postscaler. */ in pic32_wdt_get_timeout_secs() 89 terminal = BIT(ps); in pic32_wdt_get_timeout_secs() 91 /* find time taken (in secs) to reach terminal count */ in pic32_wdt_get_timeout_secs() 92 period = terminal / rate; in pic32_wdt_get_timeout_secs() 94 "wdt: clk_rate %lu (postscale) / terminal %d, timeout %dsec\n", in pic32_wdt_get_timeout_secs() 95 rate, terminal, period); in pic32_wdt_get_timeout_secs()
|
/openbmc/openbmc/poky/meta/recipes-sato/rxvt-unicode/ |
H A D | rxvt-unicode.inc | 2 SUMMARY = "rxvt terminal clone supporting unicode" 4 terminal emulator rxvt, modified to store text in Unicode \ 20 RPROVIDES:${PN} = "virtual-x-terminal-emulator" 21 ALTERNATIVE:${PN} = "x-terminal-emulator" 22 ALTERNATIVE_TARGET[x-terminal-emulator] = "${bindir}/rxvt"
|
/openbmc/openbmc/poky/meta/recipes-sato/rxvt-unicode/rxvt-unicode/ |
H A D | rxvt.desktop | 3 Name=Rxvt Terminal 6 Icon=utilities-terminal 7 Terminal=false
|
/openbmc/linux/drivers/tty/hvc/ |
H A D | hvc_iucv.c | 5 * This HVC device driver provides terminal access using 38 #define MSG_TYPE_TERMENV 0x02 /* Terminal environment variable */ 39 #define MSG_TYPE_TERMIOS 0x04 /* Terminal IO struct update */ 40 #define MSG_TYPE_WINSIZE 0x08 /* Terminal window size update */ 41 #define MSG_TYPE_DATA 0x10 /* Terminal data */ 97 /* Kernel module parameter: use one terminal device as default */ 126 * @num: The HVC virtual terminal number (vtermno) 129 * to the HVC virtual terminal number specified as parameter @num. 201 * @buf: HVC buffer for writing received terminal data. 212 * The function returns the number of bytes written to the terminal, zero if [all …]
|
/openbmc/openbmc/poky/bitbake/lib/bb/ |
H A D | daemonize.py | 23 Detach a process from the controlling terminal and run it in the 44 # also guaranteed not to have a controlling terminal. 50 # a session leader without a controlling terminal, it's possible for 51 # it to acquire one by opening a terminal in the future (System V- 54 # a controlling terminal.
|
/openbmc/linux/include/uapi/linux/ |
H A D | rxrpc.h | 43 * - terminal messages mean that a user call ID tag can be recycled 48 RXRPC_ABORT = 2, /* sr: abort request / notification [terminal] */ 49 RXRPC_ACK = 3, /* -r: [Service] RPC op final ACK received [terminal] */ 50 RXRPC_NET_ERROR = 5, /* -r: network error received [terminal] */ 51 RXRPC_BUSY = 6, /* -r: server busy received [terminal] */ 52 RXRPC_LOCAL_ERROR = 7, /* -r: local error generated [terminal] */
|
/openbmc/openbmc/meta-arm/meta-arm/lib/oeqa/controllers/ |
H A D | fvp.py | 90 self.logger.info(f'Creating terminal {name} on {console}') 124 target, with the first argument being the terminal name. 128 def call_pexpect(terminal, *args, **kwargs): argument 129 attr = getattr(self.terminals[terminal], name) 131 … self.logger.debug(f"Calling {name} on {terminal} : with arguments -> {args} : {kwargs}") 134 attr = getattr(self.terminals[terminal], name)
|
/openbmc/u-boot/cmd/ |
H A D | terminal.c | 29 printf("Entering terminal mode for port %s\n", dev->name); in do_terminal() 30 puts("Use '~.' to leave the terminal and get back to u-boot\n"); in do_terminal() 72 terminal, 3, 1, do_terminal, 73 "start terminal emulator",
|
/openbmc/phosphor-webui/app/server-control/styles/ |
H A D | remote-console.scss | 19 .terminal-container { 25 .window-terminal-container { 31 #terminal{ id
|