luci-0.9: merge r6016
This commit is contained in:
parent
82ca74d1b3
commit
119b6d898f
1 changed files with 9 additions and 2 deletions
|
@ -11,10 +11,17 @@ else
|
||||||
fi
|
fi
|
||||||
|
|
||||||
cat <<EOF > $1
|
cat <<EOF > $1
|
||||||
|
local pcall, dofile, _G = pcall, dofile, _G
|
||||||
|
|
||||||
module "luci.version"
|
module "luci.version"
|
||||||
|
|
||||||
distname = "${2:-OpenWrt}"
|
if pcall(dofile, "/etc/openwrt_release") and _G.DISTRIB_DESCRIPTION then
|
||||||
distversion = "${3:-Development Snapshot}"
|
distname = ""
|
||||||
|
distversion = _G.DISTRIB_DESCRIPTION
|
||||||
|
else
|
||||||
|
distname = "${2:-OpenWrt}"
|
||||||
|
distversion = "${3:-Development Snapshot}"
|
||||||
|
end
|
||||||
|
|
||||||
luciname = "$variant"
|
luciname = "$variant"
|
||||||
luciversion = "${5:-svn}"
|
luciversion = "${5:-svn}"
|
||||||
|
|
Loading…
Reference in a new issue