summaryrefslogtreecommitdiffhomepage
path: root/build
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2010-04-03 19:30:46 +0000
committerJo-Philipp Wich <jow@openwrt.org>2010-04-03 19:30:46 +0000
commit5fa8fd228edef6cba30d637780717576d4057246 (patch)
treeb6738fc170fb24e0238315c970f4a0ea945a2af5 /build
parent9dbc3a879ba2fd80bf6526c8c848bec18ab64da9 (diff)
build: get version from /etc/openwrt_release if applicable
Diffstat (limited to 'build')
-rwxr-xr-xbuild/mkversion.sh11
1 files changed, 9 insertions, 2 deletions
diff --git a/build/mkversion.sh b/build/mkversion.sh
index 2361e5f3b..ce6eb8366 100755
--- a/build/mkversion.sh
+++ b/build/mkversion.sh
@@ -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}"