From: Mark Hatle <mark.hatle@windriver.com>
To: <openembedded-core@lists.openembedded.org>
Subject: Re: [RFC 1/2] os-release: add new operating system identification recipe
Date: Fri, 13 Dec 2013 09:56:06 -0600 [thread overview]
Message-ID: <52AB2E16.5070905@windriver.com> (raw)
In-Reply-To: <6122710ad05d4a2c1fa2d42fba3025cae6dab5ed.1386946335.git.kergoth@gmail.com>
On 12/13/13, 8:56 AM, Christopher Larson wrote:
> From: Christopher Larson <chris_larson@mentor.com>
>
> This is needed by systemd, among other useful applications. All fields are
> metadata driven, and initial values come from our DISTRO variables.
I thought there was a part of the lsb-release recipe that did this same thing.
It doesn't set the 'os-release' file, but the 'lsb-release' file. Maybe it
would make sense to consolidate this stuff into a base-file-...
--Mark
> Signed-off-by: Christopher Larson <kergoth@gmail.com>
> ---
> meta/recipes-core/os-release/os-release.bb | 42 ++++++++++++++++++++++++++++++
> 1 file changed, 42 insertions(+)
> create mode 100644 meta/recipes-core/os-release/os-release.bb
>
> diff --git a/meta/recipes-core/os-release/os-release.bb b/meta/recipes-core/os-release/os-release.bb
> new file mode 100644
> index 0000000..0f67597
> --- /dev/null
> +++ b/meta/recipes-core/os-release/os-release.bb
> @@ -0,0 +1,42 @@
> +inherit allarch
> +
> +SUMMARY = "Operating system identification"
> +DESCRIPTION = "The /etc/os-release file contains operating system identification data."
> +LICENSE = "MIT"
> +INHIBIT_DEFAULT_DEPS = "1"
> +
> +do_fetch[noexec] = "1"
> +do_unpack[noexec] = "1"
> +do_patch[noexec] = "1"
> +do_configure[noexec] = "1"
> +
> +# Other valid fields: BUILD_ID ANSI_COLOR CPE_NAME HOME_URL SUPPORT_URL BUG_REPORT_URL
> +OS_RELEASE_FIELDS = "ID ID_LIKE NAME VERSION VERSION_ID PRETTY_NAME"
> +
> +export ID = "${DISTRO}"
> +export NAME = "${DISTRO_NAME}"
> +export VERSION = "${DISTRO_VERSION}${@' (%s)' % DISTRO_CODENAME if 'DISTRO_CODENAME' in d else ''}"
> +export VERSION_ID = "${DISTRO_VERSION}"
> +export PRETTY_NAME = "${DISTRO_NAME} ${VERSION}"
> +
> +export BUILD_ID ?= "${DATETIME}"
> +export ID_LIKE
> +export ANSI_COLOR
> +export CPE_NAME
> +export HOME_URL
> +export SUPPORT_URL
> +export BUG_REPORT_URL
> +
> +do_compile () {
> + for field in ${OS_RELEASE_FIELDS}; do
> + if eval "test -n \"\$$field\""; then
> + eval "printf \"%s=%s\n\" \"\$field\" \"\$$field\""
> + fi
> + done >os-release
> +}
> +do_compile[vardeps] += "${OS_RELEASE_FIELDS}"
> +
> +do_install () {
> + install -d ${D}${sysconfdir}
> + install -m 0644 os-release ${D}${sysconfdir}/
> +}
>
next prev parent reply other threads:[~2013-12-13 15:56 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-12-13 14:56 [RFC PATCH 0/2] Add /etc/os-release Christopher Larson
2013-12-13 14:56 ` [RFC 1/2] os-release: add new operating system identification recipe Christopher Larson
2013-12-13 15:08 ` Martin Jansa
2013-12-13 15:12 ` Chris Larson
2013-12-13 15:18 ` Chris Larson
2013-12-13 16:33 ` Martin Jansa
2013-12-13 15:56 ` Mark Hatle [this message]
2013-12-13 16:14 ` Chris Larson
2013-12-13 16:30 ` Koen Kooi
2013-12-13 16:27 ` Enrico Scholz
2013-12-13 16:31 ` Koen Kooi
2013-12-13 14:56 ` [RFC 2/2] systemd: rrecommend os-release Christopher Larson
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=52AB2E16.5070905@windriver.com \
--to=mark.hatle@windriver.com \
--cc=openembedded-core@lists.openembedded.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox