version.lua 354 B

123456789101112131415
  1. local pcall, dofile, _G = pcall, dofile, _G
  2. module "luci.version"
  3. if pcall(dofile, "/etc/openwrt_release") and _G.DISTRIB_DESCRIPTION then
  4. distname = ""
  5. distversion = _G.DISTRIB_DESCRIPTION
  6. else
  7. distname = "OpenWrt"
  8. distversion = "Development Snapshot"
  9. end
  10. luciname = "LuCI 15.05-283"
  11. luciversion = "4b80adb"