All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-ivi] [PATCH] node-startup-controller: Fixing conf file while packaging
@ 2013-06-04 10:03 Sujith H
  2013-06-04 10:13 ` sujith h
  0 siblings, 1 reply; 6+ messages in thread
From: Sujith H @ 2013-06-04 10:03 UTC (permalink / raw)
  To: holger.behrens, florin.sarbu; +Cc: yocto, Sujith H

From: Sujith H <Sujith_Haridasan@mentor.com>

Issue found while building foton-image when PACKAGE_CLASSES
set to "package_ipk". This patch will fix the issue.
This patch has to be applied to branch 4.0.

Signed-off-by: Sujith H <Sujith_Haridasan@mentor.com>
---
 .../node-startup-controller/node-startup-controller_1.0.2.bb           | 3 +++
 .../node-startup-controller/node-startup-controller_git.bb             | 3 +++
 2 files changed, 6 insertions(+)

diff --git a/recipes-extended/node-startup-controller/node-startup-controller_1.0.2.bb b/recipes-extended/node-startup-controller/node-startup-controller_1.0.2.bb
index 470bb97..fd3e1c9 100644
--- a/recipes-extended/node-startup-controller/node-startup-controller_1.0.2.bb
+++ b/recipes-extended/node-startup-controller/node-startup-controller_1.0.2.bb
@@ -55,3 +55,6 @@ FILES_${PN}-nsm-dummy = "\
 FILES_${PN}-nsm-dummy-dbg = "\
     ${libdir}/${PN}-1/.debug/nsm-dummy \
     "
+do_install_append() {
+    rm -f ${D}${sysconfdir}/dbus-1/system.d/org.genivi.NodeStateManager.conf
+}
diff --git a/recipes-extended/node-startup-controller/node-startup-controller_git.bb b/recipes-extended/node-startup-controller/node-startup-controller_git.bb
index 0d3b90c..2fec5da 100644
--- a/recipes-extended/node-startup-controller/node-startup-controller_git.bb
+++ b/recipes-extended/node-startup-controller/node-startup-controller_git.bb
@@ -51,3 +51,6 @@ FILES_${PN}-nsm-dummy = "\
 FILES_${PN}-nsm-dummy-dbg = "\
 	${libdir}/${PN}-1/.debug/nsm-dummy \
 	"
+do_install_append() {
+    rm -f ${D}${sysconfdir}/dbus-1/system.d/org.genivi.NodeStateManager.conf
+}
-- 
1.8.1.4



^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [meta-ivi] [PATCH] node-startup-controller: Fixing conf file while packaging
  2013-06-04 10:03 [meta-ivi] [PATCH] node-startup-controller: Fixing conf file while packaging Sujith H
@ 2013-06-04 10:13 ` sujith h
  2013-06-04 13:15   ` Florin Sarbu
  0 siblings, 1 reply; 6+ messages in thread
From: sujith h @ 2013-06-04 10:13 UTC (permalink / raw)
  To: holger.behrens, florin.sarbu; +Cc: yocto, Sujith H

[-- Attachment #1: Type: text/plain, Size: 2495 bytes --]

Hi,

When package_ipk is used, then opkg fails to install node-state-manager
during the do_rootfs phase of foton-image. But this behavior is not seen
when rpm is used. opkg fails to install when
org.genivi.NodeStateManager.conf
is there in etc/dbus-1/dbus-1/system.d/ directory provided by
node-startup-controller.
When rpm packaging is used then node-state-manager's
org.genivi.NodeStateManager.conf
is forcefully installed.

Thanks,

Sujith H

On Tue, Jun 4, 2013 at 3:33 PM, Sujith H <sujith.h@gmail.com> wrote:

> From: Sujith H <Sujith_Haridasan@mentor.com>
>
> Issue found while building foton-image when PACKAGE_CLASSES
> set to "package_ipk". This patch will fix the issue.
> This patch has to be applied to branch 4.0.
>
> Signed-off-by: Sujith H <Sujith_Haridasan@mentor.com>
> ---
>  .../node-startup-controller/node-startup-controller_1.0.2.bb           |
> 3 +++
>  .../node-startup-controller/node-startup-controller_git.bb             |
> 3 +++
>  2 files changed, 6 insertions(+)
>
> diff --git a/recipes-extended/node-startup-controller/
> node-startup-controller_1.0.2.bbb/recipes-extended/node-startup-controller/
> node-startup-controller_1.0.2.bb
> index 470bb97..fd3e1c9 100644
> --- a/recipes-extended/node-startup-controller/
> node-startup-controller_1.0.2.bb
> +++ b/recipes-extended/node-startup-controller/
> node-startup-controller_1.0.2.bb
> @@ -55,3 +55,6 @@ FILES_${PN}-nsm-dummy = "\
>  FILES_${PN}-nsm-dummy-dbg = "\
>      ${libdir}/${PN}-1/.debug/nsm-dummy \
>      "
> +do_install_append() {
> +    rm -f
> ${D}${sysconfdir}/dbus-1/system.d/org.genivi.NodeStateManager.conf
> +}
> diff --git a/recipes-extended/node-startup-controller/
> node-startup-controller_git.bb b/recipes-extended/node-startup-controller/
> node-startup-controller_git.bb
> index 0d3b90c..2fec5da 100644
> --- a/recipes-extended/node-startup-controller/
> node-startup-controller_git.bb
> +++ b/recipes-extended/node-startup-controller/
> node-startup-controller_git.bb
> @@ -51,3 +51,6 @@ FILES_${PN}-nsm-dummy = "\
>  FILES_${PN}-nsm-dummy-dbg = "\
>         ${libdir}/${PN}-1/.debug/nsm-dummy \
>         "
> +do_install_append() {
> +    rm -f
> ${D}${sysconfdir}/dbus-1/system.d/org.genivi.NodeStateManager.conf
> +}
> --
> 1.8.1.4
>
>


-- 
സുജിത് ഹരിദാസന്
Bangalore
<Project>Contributor to KDE project
http://fci.wikia.com/wiki/Anti-DRM-Campaign
<Blog> http://sujithh.info

[-- Attachment #2: Type: text/html, Size: 3912 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [meta-ivi] [PATCH] node-startup-controller: Fixing conf file while packaging
  2013-06-04 10:13 ` sujith h
@ 2013-06-04 13:15   ` Florin Sarbu
  2013-06-04 13:59     ` sujith h
  0 siblings, 1 reply; 6+ messages in thread
From: Florin Sarbu @ 2013-06-04 13:15 UTC (permalink / raw)
  To: sujith h; +Cc: yocto, Sujith H

[-- Attachment #1: Type: text/plain, Size: 3491 bytes --]

Hi,
please provide a log with the actual error. The attached patch does not 
contain a solution to your problem in my opinion.

Thank you,
Florin

On 06/04/2013 01:13 PM, sujith h wrote:
> Hi,
>
> When package_ipk is used, then opkg fails to install node-state-manager
> during the do_rootfs phase of foton-image. But this behavior is not seen
> when rpm is used. opkg fails to install when 
> org.genivi.NodeStateManager.conf
> is there in etc/dbus-1/dbus-1/system.d/ directory provided by 
> node-startup-controller.
> When rpm packaging is used then node-state-manager's 
> org.genivi.NodeStateManager.conf
> is forcefully installed.
>
> Thanks,
>
> Sujith H
>
> On Tue, Jun 4, 2013 at 3:33 PM, Sujith H <sujith.h@gmail.com 
> <mailto:sujith.h@gmail.com>> wrote:
>
>     From: Sujith H <Sujith_Haridasan@mentor.com
>     <mailto:Sujith_Haridasan@mentor.com>>
>
>     Issue found while building foton-image when PACKAGE_CLASSES
>     set to "package_ipk". This patch will fix the issue.
>     This patch has to be applied to branch 4.0.
>
>     Signed-off-by: Sujith H <Sujith_Haridasan@mentor.com
>     <mailto:Sujith_Haridasan@mentor.com>>
>     ---
>      .../node-startup-controller/node-startup-controller_1.0.2.bb
>     <http://node-startup-controller_1.0.2.bb>   | 3 +++
>      .../node-startup-controller/node-startup-controller_git.bb
>     <http://node-startup-controller_git.bb>             | 3 +++
>      2 files changed, 6 insertions(+)
>
>     diff --git
>     a/recipes-extended/node-startup-controller/node-startup-controller_1.0.2.bb
>     <http://node-startup-controller_1.0.2.bb>
>     b/recipes-extended/node-startup-controller/node-startup-controller_1.0.2.bb
>     <http://node-startup-controller_1.0.2.bb>
>     index 470bb97..fd3e1c9 100644
>     ---
>     a/recipes-extended/node-startup-controller/node-startup-controller_1.0.2.bb
>     <http://node-startup-controller_1.0.2.bb>
>     +++
>     b/recipes-extended/node-startup-controller/node-startup-controller_1.0.2.bb
>     <http://node-startup-controller_1.0.2.bb>
>     @@ -55,3 +55,6 @@ FILES_${PN}-nsm-dummy = "\
>      FILES_${PN}-nsm-dummy-dbg = "\
>          ${libdir}/${PN}-1/.debug/nsm-dummy \
>          "
>     +do_install_append() {
>     +    rm -f
>     ${D}${sysconfdir}/dbus-1/system.d/org.genivi.NodeStateManager.conf
>     +}
>     diff --git
>     a/recipes-extended/node-startup-controller/node-startup-controller_git.bb
>     <http://node-startup-controller_git.bb>
>     b/recipes-extended/node-startup-controller/node-startup-controller_git.bb
>     <http://node-startup-controller_git.bb>
>     index 0d3b90c..2fec5da 100644
>     ---
>     a/recipes-extended/node-startup-controller/node-startup-controller_git.bb
>     <http://node-startup-controller_git.bb>
>     +++
>     b/recipes-extended/node-startup-controller/node-startup-controller_git.bb
>     <http://node-startup-controller_git.bb>
>     @@ -51,3 +51,6 @@ FILES_${PN}-nsm-dummy = "\
>      FILES_${PN}-nsm-dummy-dbg = "\
>             ${libdir}/${PN}-1/.debug/nsm-dummy \
>             "
>     +do_install_append() {
>     +    rm -f
>     ${D}${sysconfdir}/dbus-1/system.d/org.genivi.NodeStateManager.conf
>     +}
>     --
>     1.8.1.4
>
>
>
>
> -- 
> സുജിത് ഹരിദാസന്
> Bangalore
> <Project>Contributor to KDE project
> http://fci.wikia.com/wiki/Anti-DRM-Campaign
> <Blog> http://sujithh.info


[-- Attachment #2: Type: text/html, Size: 5970 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [meta-ivi] [PATCH] node-startup-controller: Fixing conf file while packaging
  2013-06-04 13:15   ` Florin Sarbu
@ 2013-06-04 13:59     ` sujith h
  2013-06-05  6:34       ` Behrens, Holger
  0 siblings, 1 reply; 6+ messages in thread
From: sujith h @ 2013-06-04 13:59 UTC (permalink / raw)
  To: Florin Sarbu; +Cc: yocto, Sujith H

[-- Attachment #1: Type: text/plain, Size: 3978 bytes --]

Hi Florin,

You are right. The error I get is:

Configuring netbase.
Configuring procps.
Configuring packagegroup-core-boot-genivi.
Configuring u-boot-sabre-sd.
Configuring u-boot-sabre-lite.
Configuring run-postinsts.
Configuring u-boot-sabre-aiquad.
Collected errors:
 * check_data_file_clashes: Package node-state-manager wants to
install file /home/sujith/MEL7/foton-upstream/atp-build/tmp/work/mx6q-poky-linux-gnueabi/foton-image/4.0.0-r0/rootfs/etc/dbus-1/system.d/org.genivi.NodeStateManager.conf
        But that file is already provided by package  * node-startup-controller
 * opkg_install_cmd: Cannot install package packagegroup-core-p2.
ERROR: Function failed: do_rootfs (see
/home/sujith/MEL7/foton-upstream/atp-build/tmp/work/mx6q-poky-linux-gnueabi/foton-image/4.0.0-r0/temp/log.do_rootfs.14894
for further information)


This is one solution that came to my mind.

Thanks,

Sujith H


On Tue, Jun 4, 2013 at 6:45 PM, Florin Sarbu <florin.sarbu@windriver.com>wrote:

>  Hi,
> please provide a log with the actual error. The attached patch does not
> contain a solution to your problem in my opinion.
>
> Thank you,
> Florin
>
>
> On 06/04/2013 01:13 PM, sujith h wrote:
>
> Hi,
>
> When package_ipk is used, then opkg fails to install node-state-manager
> during the do_rootfs phase of foton-image. But this behavior is not seen
> when rpm is used. opkg fails to install when
> org.genivi.NodeStateManager.conf
> is there in etc/dbus-1/dbus-1/system.d/ directory provided by
> node-startup-controller.
> When rpm packaging is used then node-state-manager's
> org.genivi.NodeStateManager.conf
> is forcefully installed.
>
> Thanks,
>
> Sujith H
>
> On Tue, Jun 4, 2013 at 3:33 PM, Sujith H <sujith.h@gmail.com> wrote:
>
>> From: Sujith H <Sujith_Haridasan@mentor.com>
>>
>> Issue found while building foton-image when PACKAGE_CLASSES
>> set to "package_ipk". This patch will fix the issue.
>> This patch has to be applied to branch 4.0.
>>
>> Signed-off-by: Sujith H <Sujith_Haridasan@mentor.com>
>> ---
>>  .../node-startup-controller/node-startup-controller_1.0.2.bb
>> | 3 +++
>>  .../node-startup-controller/node-startup-controller_git.bb
>> | 3 +++
>>  2 files changed, 6 insertions(+)
>>
>> diff --git a/recipes-extended/node-startup-controller/
>> node-startup-controller_1.0.2.bbb/recipes-extended/node-startup-controller/
>> node-startup-controller_1.0.2.bb
>> index 470bb97..fd3e1c9 100644
>> --- a/recipes-extended/node-startup-controller/
>> node-startup-controller_1.0.2.bb
>> +++ b/recipes-extended/node-startup-controller/
>> node-startup-controller_1.0.2.bb
>> @@ -55,3 +55,6 @@ FILES_${PN}-nsm-dummy = "\
>>  FILES_${PN}-nsm-dummy-dbg = "\
>>      ${libdir}/${PN}-1/.debug/nsm-dummy \
>>      "
>> +do_install_append() {
>> +    rm -f
>> ${D}${sysconfdir}/dbus-1/system.d/org.genivi.NodeStateManager.conf
>> +}
>> diff --git a/recipes-extended/node-startup-controller/
>> node-startup-controller_git.bbb/recipes-extended/node-startup-controller/
>> node-startup-controller_git.bb
>> index 0d3b90c..2fec5da 100644
>> --- a/recipes-extended/node-startup-controller/
>> node-startup-controller_git.bb
>> +++ b/recipes-extended/node-startup-controller/
>> node-startup-controller_git.bb
>> @@ -51,3 +51,6 @@ FILES_${PN}-nsm-dummy = "\
>>  FILES_${PN}-nsm-dummy-dbg = "\
>>         ${libdir}/${PN}-1/.debug/nsm-dummy \
>>         "
>> +do_install_append() {
>> +    rm -f
>> ${D}${sysconfdir}/dbus-1/system.d/org.genivi.NodeStateManager.conf
>> +}
>> --
>> 1.8.1.4
>>
>>
>
>
> --
> സുജിത് ഹരിദാസന്
> Bangalore
> <Project>Contributor to KDE project
> http://fci.wikia.com/wiki/Anti-DRM-Campaign
> <Blog> http://sujithh.info
>
>
>


-- 
സുജിത് ഹരിദാസന്
Bangalore
<Project>Contributor to KDE project
http://fci.wikia.com/wiki/Anti-DRM-Campaign
<Blog> http://sujithh.info

[-- Attachment #2: Type: text/html, Size: 7075 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [meta-ivi] [PATCH] node-startup-controller: Fixing conf file while packaging
  2013-06-04 13:59     ` sujith h
@ 2013-06-05  6:34       ` Behrens, Holger
  2013-06-05 10:42         ` sujith h
  0 siblings, 1 reply; 6+ messages in thread
From: Behrens, Holger @ 2013-06-05  6:34 UTC (permalink / raw)
  To: Sarbu, Florin-Ionut (Florin), sujith h; +Cc: yocto@yoctoproject.org, Sujith H

Hi,

> Hi Florin,
> 
> You are right. The error I get is:
> 
> Configuring netbase.
> Configuring procps.
> Configuring packagegroup-core-boot-genivi.
> Configuring u-boot-sabre-sd.
> Configuring u-boot-sabre-lite.
> Configuring run-postinsts.
> Configuring u-boot-sabre-aiquad.
> Collected errors:
>  * check_data_file_clashes: Package node-state-manager wants to install file
> /home/sujith/MEL7/foton-upstream/atp-build/tmp/work/mx6q-poky-linux-
> gnueabi/foton-image/4.0.0-r0/rootfs/etc/dbus-
> 1/system.d/org.genivi.NodeStateManager.conf
>         But that file is already provided by package  * node-startup-controller
>  * opkg_install_cmd: Cannot install package packagegroup-core-p2.
> ERROR: Function failed: do_rootfs (see /home/sujith/MEL7/foton-
> upstream/atp-build/tmp/work/mx6q-poky-linux-gnueabi/foton-
> image/4.0.0-r0/temp/log.do_rootfs.14894 for further information)
> 
> This is one solution that came to my mind.

in cases we have both the NSC (P1) and the NSM (P2) in an image, the NSM_dummy which is part of the NSC should not be installed.

Regards,
Holger

> Thanks,
> Sujith H
> 
> 
> 
> On Tue, Jun 4, 2013 at 6:45 PM, Florin Sarbu <florin.sarbu@windriver.com>
> wrote:
> 
> 
> 	Hi,
> 	please provide a log with the actual error. The attached patch does
> not contain a solution to your problem in my opinion.
> 
> 	Thank you,
> 	Florin
> 
> 
> 	On 06/04/2013 01:13 PM, sujith h wrote:
> 
> 
> 		Hi,
> 
> 		When package_ipk is used, then opkg fails to install node-
> state-manager
> 		during the do_rootfs phase of foton-image. But this behavior
> is not seen
> 		when rpm is used. opkg fails to install when
> org.genivi.NodeStateManager.conf
> 		is there in etc/dbus-1/dbus-1/system.d/ directory provided
> by node-startup-controller.
> 		When rpm packaging is used then node-state-manager's
> org.genivi.NodeStateManager.conf
> 		is forcefully installed.
> 
> 		Thanks,
> 
> 		Sujith H
> 
> 
> 		On Tue, Jun 4, 2013 at 3:33 PM, Sujith H
> <sujith.h@gmail.com> wrote:
> 
> 
> 			From: Sujith H <Sujith_Haridasan@mentor.com>
> 
> 			Issue found while building foton-image when
> PACKAGE_CLASSES
> 			set to "package_ipk". This patch will fix the issue.
> 			This patch has to be applied to branch 4.0.
> 
> 			Signed-off-by: Sujith H
> <Sujith_Haridasan@mentor.com>
> 			---
> 			 .../node-startup-controller/node-startup-
> controller_1.0.2.bb           | 3 +++
> 			 .../node-startup-controller/node-startup-
> controller_git.bb             | 3 +++
> 			 2 files changed, 6 insertions(+)
> 
> 			diff --git a/recipes-extended/node-startup-
> controller/node-startup-controller_1.0.2.bb b/recipes-extended/node-
> startup-controller/node-startup-controller_1.0.2.bb
> 			index 470bb97..fd3e1c9 100644
> 			--- a/recipes-extended/node-startup-
> controller/node-startup-controller_1.0.2.bb
> 			+++ b/recipes-extended/node-startup-
> controller/node-startup-controller_1.0.2.bb
> 			@@ -55,3 +55,6 @@ FILES_${PN}-nsm-dummy = "\
> 			 FILES_${PN}-nsm-dummy-dbg = "\
> 			     ${libdir}/${PN}-1/.debug/nsm-dummy \
> 			     "
> 			+do_install_append() {
> 			+    rm -f ${D}${sysconfdir}/dbus-
> 1/system.d/org.genivi.NodeStateManager.conf
> 			+}
> 			diff --git a/recipes-extended/node-startup-
> controller/node-startup-controller_git.bb b/recipes-extended/node-
> startup-controller/node-startup-controller_git.bb
> 			index 0d3b90c..2fec5da 100644
> 			--- a/recipes-extended/node-startup-
> controller/node-startup-controller_git.bb
> 			+++ b/recipes-extended/node-startup-
> controller/node-startup-controller_git.bb
> 			@@ -51,3 +51,6 @@ FILES_${PN}-nsm-dummy = "\
> 			 FILES_${PN}-nsm-dummy-dbg = "\
> 			        ${libdir}/${PN}-1/.debug/nsm-dummy \
> 			        "
> 			+do_install_append() {
> 			+    rm -f ${D}${sysconfdir}/dbus-
> 1/system.d/org.genivi.NodeStateManager.conf
> 			+}
> 			--
> 			1.8.1.4
> 
> 
> 
> 
> 
> 
> 		--
> 		സുജിത് ഹരിദാസന്
> 		Bangalore
> 		<Project>Contributor to KDE project
> 		http://fci.wikia.com/wiki/Anti-DRM-Campaign
> 		<Blog> http://sujithh.info
> 
> 
> 
> 
> 
> 
> --
> സുജിത് ഹരിദാസന്
> Bangalore
> <Project>Contributor to KDE project
> http://fci.wikia.com/wiki/Anti-DRM-Campaign
> <Blog> http://sujithh.info


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [meta-ivi] [PATCH] node-startup-controller: Fixing conf file while packaging
  2013-06-05  6:34       ` Behrens, Holger
@ 2013-06-05 10:42         ` sujith h
  0 siblings, 0 replies; 6+ messages in thread
From: sujith h @ 2013-06-05 10:42 UTC (permalink / raw)
  To: Behrens, Holger; +Cc: yocto@yoctoproject.org, Sujith H

[-- Attachment #1: Type: text/plain, Size: 6035 bytes --]

Hi,

On Wed, Jun 5, 2013 at 12:04 PM, Behrens, Holger <
Holger.Behrens@windriver.com> wrote:

> Hi,
>
> > Hi Florin,
> >
> > You are right. The error I get is:
> >
> > Configuring netbase.
> > Configuring procps.
> > Configuring packagegroup-core-boot-genivi.
> > Configuring u-boot-sabre-sd.
> > Configuring u-boot-sabre-lite.
> > Configuring run-postinsts.
> > Configuring u-boot-sabre-aiquad.
> > Collected errors:
> >  * check_data_file_clashes: Package node-state-manager wants to install
> file
> > /home/sujith/MEL7/foton-upstream/atp-build/tmp/work/mx6q-poky-linux-
> > gnueabi/foton-image/4.0.0-r0/rootfs/etc/dbus-
> > 1/system.d/org.genivi.NodeStateManager.conf
> >         But that file is already provided by package  *
> node-startup-controller
> >  * opkg_install_cmd: Cannot install package packagegroup-core-p2.
> > ERROR: Function failed: do_rootfs (see /home/sujith/MEL7/foton-
> > upstream/atp-build/tmp/work/mx6q-poky-linux-gnueabi/foton-
> > image/4.0.0-r0/temp/log.do_rootfs.14894 for further information)
> >
> > This is one solution that came to my mind.
>
> in cases we have both the NSC (P1) and the NSM (P2) in an image, the
> NSM_dummy which is part of the NSC should not be installed.
>

Well NSM_dummy doesn't provide org.genivi.NodeStateManager.conf . So my
worry is doing so, would it resolve the issue? If you can help me find out
why we need to remove NSM_dummy that would be nice of you.

Thanks,

Sujith H

>
> Regards,
> Holger
>
> > Thanks,
> > Sujith H
> >
> >
> >
> > On Tue, Jun 4, 2013 at 6:45 PM, Florin Sarbu <florin.sarbu@windriver.com
> >
> > wrote:
> >
> >
> >       Hi,
> >       please provide a log with the actual error. The attached patch does
> > not contain a solution to your problem in my opinion.
> >
> >       Thank you,
> >       Florin
> >
> >
> >       On 06/04/2013 01:13 PM, sujith h wrote:
> >
> >
> >               Hi,
> >
> >               When package_ipk is used, then opkg fails to install node-
> > state-manager
> >               during the do_rootfs phase of foton-image. But this
> behavior
> > is not seen
> >               when rpm is used. opkg fails to install when
> > org.genivi.NodeStateManager.conf
> >               is there in etc/dbus-1/dbus-1/system.d/ directory provided
> > by node-startup-controller.
> >               When rpm packaging is used then node-state-manager's
> > org.genivi.NodeStateManager.conf
> >               is forcefully installed.
> >
> >               Thanks,
> >
> >               Sujith H
> >
> >
> >               On Tue, Jun 4, 2013 at 3:33 PM, Sujith H
> > <sujith.h@gmail.com> wrote:
> >
> >
> >                       From: Sujith H <Sujith_Haridasan@mentor.com>
> >
> >                       Issue found while building foton-image when
> > PACKAGE_CLASSES
> >                       set to "package_ipk". This patch will fix the
> issue.
> >                       This patch has to be applied to branch 4.0.
> >
> >                       Signed-off-by: Sujith H
> > <Sujith_Haridasan@mentor.com>
> >                       ---
> >                        .../node-startup-controller/node-startup-
> > controller_1.0.2.bb           | 3 +++
> >                        .../node-startup-controller/node-startup-
> > controller_git.bb             | 3 +++
> >                        2 files changed, 6 insertions(+)
> >
> >                       diff --git a/recipes-extended/node-startup-
> > controller/node-startup-controller_1.0.2.bb b/recipes-extended/node-
> > startup-controller/node-startup-controller_1.0.2.bb
> >                       index 470bb97..fd3e1c9 100644
> >                       --- a/recipes-extended/node-startup-
> > controller/node-startup-controller_1.0.2.bb
> >                       +++ b/recipes-extended/node-startup-
> > controller/node-startup-controller_1.0.2.bb
> >                       @@ -55,3 +55,6 @@ FILES_${PN}-nsm-dummy = "\
> >                        FILES_${PN}-nsm-dummy-dbg = "\
> >                            ${libdir}/${PN}-1/.debug/nsm-dummy \
> >                            "
> >                       +do_install_append() {
> >                       +    rm -f ${D}${sysconfdir}/dbus-
> > 1/system.d/org.genivi.NodeStateManager.conf
> >                       +}
> >                       diff --git a/recipes-extended/node-startup-
> > controller/node-startup-controller_git.bb b/recipes-extended/node-
> > startup-controller/node-startup-controller_git.bb
> >                       index 0d3b90c..2fec5da 100644
> >                       --- a/recipes-extended/node-startup-
> > controller/node-startup-controller_git.bb
> >                       +++ b/recipes-extended/node-startup-
> > controller/node-startup-controller_git.bb
> >                       @@ -51,3 +51,6 @@ FILES_${PN}-nsm-dummy = "\
> >                        FILES_${PN}-nsm-dummy-dbg = "\
> >                               ${libdir}/${PN}-1/.debug/nsm-dummy \
> >                               "
> >                       +do_install_append() {
> >                       +    rm -f ${D}${sysconfdir}/dbus-
> > 1/system.d/org.genivi.NodeStateManager.conf
> >                       +}
> >                       --
> >                       1.8.1.4
> >
> >
> >
> >
> >
> >
> >               --
> >               സുജിത് ഹരിദാസന്
> >               Bangalore
> >               <Project>Contributor to KDE project
> >               http://fci.wikia.com/wiki/Anti-DRM-Campaign
> >               <Blog> http://sujithh.info
> >
> >
> >
> >
> >
> >
> > --
> > സുജിത് ഹരിദാസന്
> > Bangalore
> > <Project>Contributor to KDE project
> > http://fci.wikia.com/wiki/Anti-DRM-Campaign
> > <Blog> http://sujithh.info
>
>


-- 
സുജിത് ഹരിദാസന്
Bangalore
<Project>Contributor to KDE project
http://fci.wikia.com/wiki/Anti-DRM-Campaign
<Blog> http://sujithh.info

[-- Attachment #2: Type: text/html, Size: 9087 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2013-06-05 10:42 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-06-04 10:03 [meta-ivi] [PATCH] node-startup-controller: Fixing conf file while packaging Sujith H
2013-06-04 10:13 ` sujith h
2013-06-04 13:15   ` Florin Sarbu
2013-06-04 13:59     ` sujith h
2013-06-05  6:34       ` Behrens, Holger
2013-06-05 10:42         ` sujith h

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.