diff options
author | Daniel Dickinson <lede@daniel.thecshore.com> | 2016-05-18 09:07:30 -0400 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2016-06-24 13:52:53 +0200 |
commit | f954f4337b85bd8d8ad6a589bc63edf48f777ee6 (patch) | |
tree | 8158e3d8584d80f4960da16be581503c6ca07d54 /package/base-files/files/usr | |
parent | 59e98b27c93d282edb62fad756fd1c1e587c067f (diff) | |
download | upstream-f954f4337b85bd8d8ad6a589bc63edf48f777ee6.tar.gz upstream-f954f4337b85bd8d8ad6a589bc63edf48f777ee6.tar.bz2 upstream-f954f4337b85bd8d8ad6a589bc63edf48f777ee6.zip |
base-files: Add standard os-release file
/etc/os-release is the standard distribution release information
file, therefore add it (and image configuration options for
fields not previously present in LEDE). Once it is deemed
reasonable the non-standard openwrt_release, openwrt_version,
and device_info files could be removed (that is with this patch
we consider them deprecated in favour of the standard file).
Signed-off-by: Daniel Dickinson <lede@daniel.thecshore.com>
Diffstat (limited to 'package/base-files/files/usr')
-rw-r--r-- | package/base-files/files/usr/lib/os-release | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/package/base-files/files/usr/lib/os-release b/package/base-files/files/usr/lib/os-release new file mode 100644 index 0000000000..6c829e0670 --- /dev/null +++ b/package/base-files/files/usr/lib/os-release @@ -0,0 +1,17 @@ +NAME="%D" +VERSION="%V, %N" +ID="%d" +ID_LIKE="lede openwrt" +PRETTY_NAME="%D %N %V" +VERSION_ID="%v" +HOME_URL="%m" +BUG_URL="%b" +SUPPORT_URL="%s" +BUILD_ID="%R" +LEDE_BOARD="%S" +LEDE_TAINTS="%t" +LEDE_DEVICE_MANUFACTURER="%M" +LEDE_DEVICE_MANUFACTURER_URL="%m" +LEDE_DEVICE_PRODUCT="%P" +LEDE_DEVICE_REVISION="%h" +LEDE_RELEASE="%C" |