Files
luci-app-zt-gateway/root/usr/share/rpcd/ucode/system.uc

25 lines
433 B
Ucode
Raw Normal View History

'use strict';
return {
system: {
board: {
call: function(req) {
return {
hostname: "TestRouter",
model: "OpenWrt x86/64 Container",
board_name: "generic",
release: {
distribution: "OpenWrt",
version: "25.12.4",
revision: "r0-test",
target: "x86/64",
description: "OpenWrt 25.12.4 Testing"
},
kernel: "6.12.0-test",
rootfs_type: "ext4"
};
}
}
}
};