diff options
author | Felix Fietkau <nbd@openwrt.org> | 2014-07-29 13:30:23 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2014-07-29 13:30:23 +0000 |
commit | d5653558ac0044824974c7e73d349e4b2747e3ab (patch) | |
tree | d21e3225d3c667afe726dd2c24592acd58ece1a0 /package | |
parent | dbb77e39a07a86b18ecc4ce27bb2841e0a099c9d (diff) | |
download | upstream-d5653558ac0044824974c7e73d349e4b2747e3ab.tar.gz upstream-d5653558ac0044824974c7e73d349e4b2747e3ab.tar.bz2 upstream-d5653558ac0044824974c7e73d349e4b2747e3ab.zip |
base-files: properly escape strings for version info
Make sure they don't break the sed command, and also make device_info
and openwrt_release more robust for parsing by scripts
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 41885
Diffstat (limited to 'package')
-rw-r--r-- | package/base-files/Makefile | 4 | ||||
-rw-r--r-- | package/base-files/files/etc/device_info | 6 | ||||
-rw-r--r-- | package/base-files/files/etc/openwrt_release | 14 |
3 files changed, 13 insertions, 11 deletions
diff --git a/package/base-files/Makefile b/package/base-files/Makefile index 76a4dabe0e..10724b3eac 100644 --- a/package/base-files/Makefile +++ b/package/base-files/Makefile @@ -110,7 +110,9 @@ define Package/base-files/install $(VERSION_SED) \ $(1)/etc/banner \ - $(1)/etc/openwrt_version \ + $(1)/etc/openwrt_version + + $(VERSION_SED_SCRIPT) \ $(1)/etc/openwrt_release \ $(1)/etc/device_info diff --git a/package/base-files/files/etc/device_info b/package/base-files/files/etc/device_info index da2c4a3b9d..2962cd7fd5 100644 --- a/package/base-files/files/etc/device_info +++ b/package/base-files/files/etc/device_info @@ -1,3 +1,3 @@ -DEVICE_MANUFACTURER="%M" -DEVICE_PRODUCT="%P" -DEVICE_REVISION="%h" +DEVICE_MANUFACTURER='%M' +DEVICE_PRODUCT='%P' +DEVICE_REVISION='%h' diff --git a/package/base-files/files/etc/openwrt_release b/package/base-files/files/etc/openwrt_release index 384386a1fc..9b2a40c820 100644 --- a/package/base-files/files/etc/openwrt_release +++ b/package/base-files/files/etc/openwrt_release @@ -1,7 +1,7 @@ -DISTRIB_ID="%D" -DISTRIB_RELEASE="%C" -DISTRIB_REVISION="%R" -DISTRIB_CODENAME="%n" -DISTRIB_TARGET="%S" -DISTRIB_DESCRIPTION="%D %N %V" -DISTRIB_TAINTS="%t" +DISTRIB_ID='%D' +DISTRIB_RELEASE='%C' +DISTRIB_REVISION='%R' +DISTRIB_CODENAME='%n' +DISTRIB_TARGET='%S' +DISTRIB_DESCRIPTION='%D %N %V' +DISTRIB_TAINTS='%t' |