commit | a6c8f5d778eb7d2e14e85b6be6e4d5fc71a1d9a3 | [log] [tgz] |
---|---|---|
author | Mohammed Javith Akthar M <mohammedjavitham@ami.com> | Wed Jul 26 18:50:28 2023 +0545 |
committer | Mohammed Javith Akthar M <mohammedjavitham@ami.com> | Wed Jul 26 19:07:16 2023 +0545 |
tree | cc231b5711dcf32cf768dee15be29f36f58cc0a6 | |
parent | 12b2380a6b7efb8b2d33ea33e12e5870f19988ed [diff] |
create_usbhid.sh: update english product string Current product string value for english locale is configured as "virtual_input". Updated string value to "Virtual Keyboard and Mouse" for better readability. Tested: 1. Verified using AST2600EVB + Ubuntu server 20.04 as BMC host os 2. Launch KVM and execute following command inside host > sudo evtest /dev/input/event3 | head 3. Observe the "Input device name" field in the command output Before changes: Input driver version is 1.0.1 Input device ID: bus 0x3 vendor 0x1d6b product 0x104 version 0x101 Input device name: "OpenBMC virtual_input" Supported events: Event type 0 (EV_SYN) Event type 1 (EV_KEY) Event code 1 (KEY_ESC) Event code 2 (KEY_1) Event code 3 (KEY_2) Event code 4 (KEY_3) After changes: Input driver version is 1.0.1 Input device ID: bus 0x3 vendor 0x1d6b product 0x104 version 0x101 Input device name: "OpenBMC Virtual Keyboard and Mouse" Supported events: Event type 0 (EV_SYN) Event type 1 (EV_KEY) Event code 1 (KEY_ESC) Event code 2 (KEY_1) Event code 3 (KEY_2) Event code 4 (KEY_3) Change-Id: If1ea31fb5d7d2d1bac021e05272d7ba2f0f65130 Signed-off-by: Mohammed Javith Akthar M <mohammedjavitham@ami.com>
The obmc-ikvm application is a VNC server that provides access to the host graphics output. The application interfaces with the video device on the BMC that captures the host graphics, and then serves that video data on the RFB (remote framebuffer, also known as VNC) protocol. The application also interfaces with the BMC USB gadget device to pass HID events from the BMC to the host, allowing the user to interact with the host system.
Once the host is running and an appropriate HID gadget device is instantiated on the BMC, the application can be started with the following command: obmc-ikvm -v <video device path> -i <HID gadget device path>
For example:
obmc-ikvm -v /dev/video0 -i /dev/hidg0