build: get version from /etc/openwrt_release if applicable

This commit is contained in:
Jo-Philipp Wich 2010-04-03 19:30:46 +00:00
parent 9dbc3a879b
commit 5fa8fd228e

View file

@ -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"
if pcall(dofile, "/etc/openwrt_release") and _G.DISTRIB_DESCRIPTION then
distname = ""
distversion = _G.DISTRIB_DESCRIPTION
else
distname = "${2:-OpenWrt}" distname = "${2:-OpenWrt}"
distversion = "${3:-Development Snapshot}" distversion = "${3:-Development Snapshot}"
end
luciname = "$variant" luciname = "$variant"
luciversion = "${5:-svn}" luciversion = "${5:-svn}"