Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | Today | - | ||||
subprojects/ | H | 01-May-2024 | - | 31 | 22 | |
.clang-format | H A D | 04-Sep-2024 | 3.7 KiB | 137 | 135 | |
.gitignore | H A D | 01-May-2024 | 107 | 6 | 5 | |
LICENSE | H A D | 07-Mar-2021 | 17.7 KiB | 341 | 281 | |
OWNERS | H A D | 20-Sep-2024 | 1.6 KiB | 49 | 44 | |
README.md | H A D | 07-Dec-2022 | 741 | 19 | 13 | |
create_usbhid.sh | H A D | 22-Aug-2023 | 6.2 KiB | 163 | 64 | |
ikvm_args.cpp | H A D | 04-Sep-2024 | 2.5 KiB | 82 | 75 | |
ikvm_args.hpp | H A D | 18-May-2023 | 3.7 KiB | 157 | 68 | |
ikvm_input.cpp | H A D | 04-Sep-2024 | 15.6 KiB | 595 | 531 | |
ikvm_input.hpp | H A D | 08-Mar-2023 | 4.1 KiB | 133 | 62 | |
ikvm_manager.cpp | H A D | 06-Jun-2024 | 1.7 KiB | 101 | 81 | |
ikvm_manager.hpp | H A D | 22-Aug-2023 | 2 KiB | 75 | 35 | |
ikvm_server.cpp | H A D | 04-Sep-2024 | 6.8 KiB | 271 | 212 | |
ikvm_server.hpp | H A D | 04-Sep-2024 | 5 KiB | 182 | 105 | |
ikvm_video.cpp | H A D | 30-Mar-2023 | 13.7 KiB | 511 | 436 | |
ikvm_video.hpp | H A D | 18-May-2023 | 4.7 KiB | 182 | 86 | |
meson.build | H A D | 20-Sep-2024 | 938 | 48 | 44 | |
obmc-ikvm.cpp | H A D | 07-Mar-2021 | 192 | 13 | 9 | |
obmc-ikvm.service | H A D | 20-Sep-2024 | 271 | 12 | 9 | |
scancodes.hpp | H A D | 07-Mar-2021 | 2.7 KiB | 100 | 98 |
README.md
1# OpenBMC IpKVM Server 2 3The obmc-ikvm application is a VNC server that provides access to the host 4graphics output. The application interfaces with the video device on the BMC 5that captures the host graphics, and then serves that video data on the RFB 6(remote framebuffer, also known as VNC) protocol. The application also 7interfaces with the BMC USB gadget device to pass HID events from the BMC to the 8host, allowing the user to interact with the host system. 9 10## Usage 11 12Once the host is running and an appropriate HID gadget device is instantiated on 13the BMC, the application can be started with the following command: 14`obmc-ikvm -v <video device path> -i <HID gadget device path>` 15 16For example: 17 18`obmc-ikvm -v /dev/video0 -i /dev/hidg0` 19