X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fluci.git;a=blobdiff_plain;f=build%2Fmkversion.sh;fp=build%2Fmkversion.sh;h=ce6eb836678d7c11f265811d03e4657f71e59871;hp=2361e5f3b9ab19086e8f2b3e855aa2fcf5528ccc;hb=5fa8fd228edef6cba30d637780717576d4057246;hpb=9dbc3a879ba2fd80bf6526c8c848bec18ab64da9 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 < $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}"