mirror of
https://github.com/openwrt/luci.git
synced 2026-02-04 12:06:01 +08:00
build: get version from /etc/openwrt_release if applicable
This commit is contained in:
@@ -11,10 +11,17 @@ else
|
||||
fi
|
||||
|
||||
cat <<EOF > $1
|
||||
local pcall, dofile, _G = pcall, dofile, _G
|
||||
|
||||
module "luci.version"
|
||||
|
||||
distname = "${2:-OpenWrt}"
|
||||
distversion = "${3:-Development Snapshot}"
|
||||
if pcall(dofile, "/etc/openwrt_release") and _G.DISTRIB_DESCRIPTION then
|
||||
distname = ""
|
||||
distversion = _G.DISTRIB_DESCRIPTION
|
||||
else
|
||||
distname = "${2:-OpenWrt}"
|
||||
distversion = "${3:-Development Snapshot}"
|
||||
end
|
||||
|
||||
luciname = "$variant"
|
||||
luciversion = "${5:-svn}"
|
||||
|
||||
Reference in New Issue
Block a user