* [RFC PATCH 0/2] Add /etc/os-release
@ 2013-12-13 14:56 Christopher Larson
2013-12-13 14:56 ` [RFC 1/2] os-release: add new operating system identification recipe Christopher Larson
2013-12-13 14:56 ` [RFC 2/2] systemd: rrecommend os-release Christopher Larson
0 siblings, 2 replies; 12+ messages in thread
From: Christopher Larson @ 2013-12-13 14:56 UTC (permalink / raw)
To: openembedded-core
systemd wants /etc/os-release, and it's useful for other software, and the
user as well. This adds it as a separate recipe which generates the metadata
using our config metadata variables (e.g. DISTRO_*), and rreccomends it from
systemd. I think this is a reasonablea pproach, but I wanted to run it by
folks, and also pursue an answer to my open question on this, should
base-files pull it in instead of systemd, or something else, for non-systemd
images? Do we care if it's missing from those? Thoughts?
The following changes since commit 62849843a4a83b10316bc6cb1e4b3f0622391dea:
gdb-7.6.1: fix cygwin check in configure script (2013-12-12 22:41:13 +0000)
are available in the git repository at:
git@github.com:kergoth/oe-core.git os-release
for you to fetch changes up to b00a526527b3248c9014bc3c0e5c606ef97e0838:
systemd: rrecommend os-release (2013-12-13 07:41:08 -0700)
----------------------------------------------------------------
Christopher Larson (2):
os-release: add new operating system identification recipe
systemd: rrecommend os-release
meta/recipes-core/os-release/os-release.bb | 42 ++++++++++++++++++++++++++++++
meta/recipes-core/systemd/systemd_208.bb | 1 +
2 files changed, 43 insertions(+)
create mode 100644 meta/recipes-core/os-release/os-release.bb
--
1.8.3.4
^ permalink raw reply [flat|nested] 12+ messages in thread
* [RFC 1/2] os-release: add new operating system identification recipe
2013-12-13 14:56 [RFC PATCH 0/2] Add /etc/os-release Christopher Larson
@ 2013-12-13 14:56 ` Christopher Larson
2013-12-13 15:08 ` Martin Jansa
` (3 more replies)
2013-12-13 14:56 ` [RFC 2/2] systemd: rrecommend os-release Christopher Larson
1 sibling, 4 replies; 12+ messages in thread
From: Christopher Larson @ 2013-12-13 14:56 UTC (permalink / raw)
To: openembedded-core; +Cc: Christopher Larson
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.
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}/
+}
--
1.8.3.4
^ permalink raw reply related [flat|nested] 12+ messages in thread* Re: [RFC 1/2] os-release: add new operating system identification recipe
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:56 ` Mark Hatle
` (2 subsequent siblings)
3 siblings, 1 reply; 12+ messages in thread
From: Martin Jansa @ 2013-12-13 15:08 UTC (permalink / raw)
To: Christopher Larson; +Cc: Christopher Larson, openembedded-core
[-- Attachment #1: Type: text/plain, Size: 2452 bytes --]
On Fri, Dec 13, 2013 at 07:56:37AM -0700, 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.
>
> 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}"
Isn't this dependency picked automatically?
> +do_install () {
> + install -d ${D}${sysconfdir}
> + install -m 0644 os-release ${D}${sysconfdir}/
> +}
> --
> 1.8.3.4
>
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core
--
Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread* Re: [RFC 1/2] os-release: add new operating system identification recipe
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
0 siblings, 2 replies; 12+ messages in thread
From: Chris Larson @ 2013-12-13 15:12 UTC (permalink / raw)
To: Martin Jansa; +Cc: Patches and discussions about the oe-core layer
[-- Attachment #1: Type: text/plain, Size: 850 bytes --]
On Fri, Dec 13, 2013 at 8:08 AM, Martin Jansa <martin.jansa@gmail.com>wrote:
> > +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}"
>
> Isn't this dependency picked automatically?
>
No, this is expanded, so this adds the dependency on the variables whose
names are in the OS_RELEASE_FIELDS variable, not just on OS_RELEASE_FIELDS
itself. Due to the use of eval, bitbake doesn’t know we’re using the
iterated values as variable names.
--
Christopher Larson
clarson at kergoth dot com
Founder - BitBake, OpenEmbedded, OpenZaurus
Maintainer - Tslib
Senior Software Engineer, Mentor Graphics
[-- Attachment #2: Type: text/html, Size: 1374 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread* Re: [RFC 1/2] os-release: add new operating system identification recipe
2013-12-13 15:12 ` Chris Larson
@ 2013-12-13 15:18 ` Chris Larson
2013-12-13 16:33 ` Martin Jansa
1 sibling, 0 replies; 12+ messages in thread
From: Chris Larson @ 2013-12-13 15:18 UTC (permalink / raw)
To: Martin Jansa; +Cc: Patches and discussions about the oe-core layer
[-- Attachment #1: Type: text/plain, Size: 1133 bytes --]
On Fri, Dec 13, 2013 at 8:12 AM, Chris Larson <kergoth@gmail.com> wrote:
> On Fri, Dec 13, 2013 at 8:08 AM, Martin Jansa <martin.jansa@gmail.com>wrote:
>
>> > +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}"
>>
>> Isn't this dependency picked automatically?
>>
>
> No, this is expanded, so this adds the dependency on the variables whose
> names are in the OS_RELEASE_FIELDS variable, not just on OS_RELEASE_FIELDS
> itself. Due to the use of eval, bitbake doesn’t know we’re using the
> iterated values as variable names.
To put it perhaps more clearly and succinctly, do_compile[vardeps] +=
“OS_RELEASE_FIELDS” would be unnecessary, do_compile[vardeps] +=
“${OS_RELEASE_FIELDS}” isn’t :)
--
Christopher Larson
clarson at kergoth dot com
Founder - BitBake, OpenEmbedded, OpenZaurus
Maintainer - Tslib
Senior Software Engineer, Mentor Graphics
[-- Attachment #2: Type: text/html, Size: 1851 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread* Re: [RFC 1/2] os-release: add new operating system identification recipe
2013-12-13 15:12 ` Chris Larson
2013-12-13 15:18 ` Chris Larson
@ 2013-12-13 16:33 ` Martin Jansa
1 sibling, 0 replies; 12+ messages in thread
From: Martin Jansa @ 2013-12-13 16:33 UTC (permalink / raw)
To: Chris Larson; +Cc: Patches and discussions about the oe-core layer
[-- Attachment #1: Type: text/plain, Size: 888 bytes --]
On Fri, Dec 13, 2013 at 08:12:51AM -0700, Chris Larson wrote:
> On Fri, Dec 13, 2013 at 8:08 AM, Martin Jansa <martin.jansa@gmail.com>wrote:
>
> > > +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}"
> >
> > Isn't this dependency picked automatically?
> >
>
> No, this is expanded, so this adds the dependency on the variables whose
> names are in the OS_RELEASE_FIELDS variable, not just on OS_RELEASE_FIELDS
> itself. Due to the use of eval, bitbake doesn’t know we’re using the
> iterated values as variable names.
Ah I see, thanks for explanation.
--
Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [RFC 1/2] os-release: add new operating system identification recipe
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:56 ` Mark Hatle
2013-12-13 16:14 ` Chris Larson
2013-12-13 16:27 ` Enrico Scholz
2013-12-13 16:31 ` Koen Kooi
3 siblings, 1 reply; 12+ messages in thread
From: Mark Hatle @ 2013-12-13 15:56 UTC (permalink / raw)
To: openembedded-core
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}/
> +}
>
^ permalink raw reply [flat|nested] 12+ messages in thread* Re: [RFC 1/2] os-release: add new operating system identification recipe
2013-12-13 15:56 ` Mark Hatle
@ 2013-12-13 16:14 ` Chris Larson
2013-12-13 16:30 ` Koen Kooi
0 siblings, 1 reply; 12+ messages in thread
From: Chris Larson @ 2013-12-13 16:14 UTC (permalink / raw)
To: Mark Hatle; +Cc: Patches and discussions about the oe-core layer
[-- Attachment #1: Type: text/plain, Size: 973 bytes --]
On Fri, Dec 13, 2013 at 8:56 AM, Mark Hatle <mark.hatle@windriver.com>wrote:
> 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-...
Yeah, that’s part of why I posted this as an RFC, there’s this question of
whether such things should just get folded into base-files, or stay
separate. I don’t have a very strong opinion on it either way, myself.
--
Christopher Larson
clarson at kergoth dot com
Founder - BitBake, OpenEmbedded, OpenZaurus
Maintainer - Tslib
Senior Software Engineer, Mentor Graphics
[-- Attachment #2: Type: text/html, Size: 1514 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [RFC 1/2] os-release: add new operating system identification recipe
2013-12-13 16:14 ` Chris Larson
@ 2013-12-13 16:30 ` Koen Kooi
0 siblings, 0 replies; 12+ messages in thread
From: Koen Kooi @ 2013-12-13 16:30 UTC (permalink / raw)
To: Chris Larson; +Cc: Patches and discussions about the oe-core layer
Op 13 dec. 2013, om 17:14 heeft Chris Larson <clarson@kergoth.com> het volgende geschreven:
>
> On Fri, Dec 13, 2013 at 8:56 AM, Mark Hatle <mark.hatle@windriver.com> wrote:
> 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-...
>
> Yeah, that’s part of why I posted this as an RFC, there’s this question of whether such things should just get folded into base-files, or stay separate. I don’t have a very strong opinion on it either way, myself.
Angstrom has both lsb_release and os-release in its 'angstrom-release' package. It looks like this release could provide os-release in a more generic way.
regards,
Koen
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [RFC 1/2] os-release: add new operating system identification recipe
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:56 ` Mark Hatle
@ 2013-12-13 16:27 ` Enrico Scholz
2013-12-13 16:31 ` Koen Kooi
3 siblings, 0 replies; 12+ messages in thread
From: Enrico Scholz @ 2013-12-13 16:27 UTC (permalink / raw)
To: openembedded-core
Christopher Larson <kergoth-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
writes:
> + if eval "test -n \"\$$field\""; then
> + eval "printf \"%s=%s\n\" \"\$field\" \"\$$field\""
I think, this can be expressed without the complicated quoting as
eval val=\$$field
if test -n "$val"; then
printf '%s="%s"\n' "$field" "$val"
Enrico
^ permalink raw reply [flat|nested] 12+ messages in thread* Re: [RFC 1/2] os-release: add new operating system identification recipe
2013-12-13 14:56 ` [RFC 1/2] os-release: add new operating system identification recipe Christopher Larson
` (2 preceding siblings ...)
2013-12-13 16:27 ` Enrico Scholz
@ 2013-12-13 16:31 ` Koen Kooi
3 siblings, 0 replies; 12+ messages in thread
From: Koen Kooi @ 2013-12-13 16:31 UTC (permalink / raw)
To: Christopher Larson
Cc: Christopher Larson,
Patches and discussions about the oe-core layer
Op 13 dec. 2013, om 15:56 heeft Christopher Larson <kergoth@gmail.com> het volgende geschreven:
> 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.
>
> 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}"
Is DISTRO_NAME allowed to have spaces and weird characters? In OE-classic is was used as part of the outputnames in various things, but it looks that's safe in OE-core (not in meta-angstrom, though).
regards,
Koen
^ permalink raw reply [flat|nested] 12+ messages in thread
* [RFC 2/2] systemd: rrecommend os-release
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 14:56 ` Christopher Larson
1 sibling, 0 replies; 12+ messages in thread
From: Christopher Larson @ 2013-12-13 14:56 UTC (permalink / raw)
To: openembedded-core; +Cc: Christopher Larson
From: Christopher Larson <chris_larson@mentor.com>
Signed-off-by: Christopher Larson <kergoth@gmail.com>
---
meta/recipes-core/systemd/systemd_208.bb | 1 +
1 file changed, 1 insertion(+)
diff --git a/meta/recipes-core/systemd/systemd_208.bb b/meta/recipes-core/systemd/systemd_208.bb
index c1f8d77..4c2fbc6 100644
--- a/meta/recipes-core/systemd/systemd_208.bb
+++ b/meta/recipes-core/systemd/systemd_208.bb
@@ -223,6 +223,7 @@ RRECOMMENDS_${PN} += "systemd-serialgetty systemd-compat-units \
util-linux-agetty \
util-linux-fsck e2fsprogs-e2fsck \
kernel-module-autofs4 kernel-module-unix kernel-module-ipv6 \
+ os-release \
"
PACKAGES =+ "udev-dbg udev udev-utils udev-hwdb"
--
1.8.3.4
^ permalink raw reply related [flat|nested] 12+ messages in thread
end of thread, other threads:[~2013-12-13 16:33 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
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
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
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox