mirror of
https://github.com/sipeed/NanoKVM.git
synced 2026-09-11 09:26:44 -05:00
- H.264 WebRTC: Refactored to significantly reduce video latency - H.264 Direct: Optimized data transmission; data parsing now continues correctly even when the tab is in the background - MJPEG: Refactored to ensure the correct data length is sent Bug Fixes - Fixed an issue where certain keyboard modifier keys were not recognized - Fixed vertical mouse cursor drift when the page is zoomed in or out Optimizations - Optimized HID write logic and updated the HID reset mechanism - Added support for deleting images - Added a Swap Memory option to the Tailscale page - Added a confirmation dialog when uninstalling Tailscale to prevent accidental removal - Improved the logic for updating the web page title - Improved the UI for the Clipboard, Settings, Image Mounting, and App Update pages Security - Added a mandatory delay after failed login attempts to prevent brute-force attacks - Updated dependencies to patch known security vulnerabilities
96 lines
1.7 KiB
Go
96 lines
1.7 KiB
Go
package config
|
|
|
|
import (
|
|
"os"
|
|
"strings"
|
|
|
|
log "github.com/sirupsen/logrus"
|
|
)
|
|
|
|
type HWVersion int
|
|
|
|
const (
|
|
HWVersionAlpha HWVersion = iota
|
|
HWVersionBeta
|
|
HWVersionPcie
|
|
|
|
HWVersionFile = "/etc/kvm/hw"
|
|
)
|
|
|
|
var HWAlpha = Hardware{
|
|
Version: HWVersionAlpha,
|
|
GPIOReset: "/sys/class/gpio/gpio507/value",
|
|
GPIOPower: "/sys/class/gpio/gpio503/value",
|
|
GPIOPowerLED: "/sys/class/gpio/gpio504/value",
|
|
GPIOHDDLed: "/sys/class/gpio/gpio505/value",
|
|
}
|
|
|
|
var HWBeta = Hardware{
|
|
Version: HWVersionBeta,
|
|
GPIOReset: "/sys/class/gpio/gpio505/value",
|
|
GPIOPower: "/sys/class/gpio/gpio503/value",
|
|
GPIOPowerLED: "/sys/class/gpio/gpio504/value",
|
|
GPIOHDDLed: "",
|
|
}
|
|
|
|
var HWPcie = Hardware{
|
|
Version: HWVersionPcie,
|
|
GPIOReset: "/sys/class/gpio/gpio505/value",
|
|
GPIOPower: "/sys/class/gpio/gpio503/value",
|
|
GPIOPowerLED: "/sys/class/gpio/gpio504/value",
|
|
GPIOHDDLed: "",
|
|
}
|
|
|
|
func (h HWVersion) String() string {
|
|
switch h {
|
|
case HWVersionAlpha:
|
|
return "Alpha"
|
|
case HWVersionBeta:
|
|
return "Beta"
|
|
case HWVersionPcie:
|
|
return "PCIE"
|
|
default:
|
|
return "Unknown"
|
|
}
|
|
}
|
|
|
|
func GetHwVersion() HWVersion {
|
|
content, err := os.ReadFile(HWVersionFile)
|
|
if err != nil {
|
|
return HWVersionAlpha
|
|
}
|
|
|
|
version := strings.ReplaceAll(string(content), "\n", "")
|
|
switch version {
|
|
case "alpha":
|
|
return HWVersionAlpha
|
|
case "beta":
|
|
return HWVersionBeta
|
|
case "pcie":
|
|
return HWVersionPcie
|
|
default:
|
|
return HWVersionAlpha
|
|
}
|
|
}
|
|
|
|
func getHardware() (h Hardware) {
|
|
version := GetHwVersion()
|
|
|
|
switch version {
|
|
case HWVersionAlpha:
|
|
h = HWAlpha
|
|
|
|
case HWVersionBeta:
|
|
h = HWBeta
|
|
|
|
case HWVersionPcie:
|
|
h = HWPcie
|
|
|
|
default:
|
|
h = HWAlpha
|
|
log.Errorf("Unsupported hardware version: %s", version)
|
|
}
|
|
|
|
return
|
|
}
|