All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] busybox: don't create /etc/default
@ 2012-02-16  2:08 Andreas Oberritter
  2012-02-16 10:12 ` Otavio Salvador
  2012-02-24  4:17 ` Saul Wold
  0 siblings, 2 replies; 3+ messages in thread
From: Andreas Oberritter @ 2012-02-16  2:08 UTC (permalink / raw)
  To: openembedded-core

* It's not used by the recipe and its creation
  currently depends on CONFIG_HWCLOCK=y.

Signed-off-by: Andreas Oberritter <obi@opendreambox.org>
---
 meta/recipes-core/busybox/busybox.inc       |    1 -
 meta/recipes-core/busybox/busybox_1.19.3.bb |    2 +-
 2 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/meta/recipes-core/busybox/busybox.inc b/meta/recipes-core/busybox/busybox.inc
index 5fb436e..fc69d65 100644
--- a/meta/recipes-core/busybox/busybox.inc
+++ b/meta/recipes-core/busybox/busybox.inc
@@ -179,7 +179,6 @@ do_install () {
 		install -m 0755 ${WORKDIR}/busybox-udhcpd ${D}${sysconfdir}/init.d/
 	fi
 	if grep "CONFIG_HWCLOCK=y" ${WORKDIR}/defconfig; then
-		install -d ${D}${sysconfdir}/default
 		install -m 0755 ${WORKDIR}/hwclock.sh ${D}${sysconfdir}/init.d/
 	fi
 	if grep "CONFIG_UDHCPC=y" ${WORKDIR}/defconfig; then
diff --git a/meta/recipes-core/busybox/busybox_1.19.3.bb b/meta/recipes-core/busybox/busybox_1.19.3.bb
index a075407..45e284f 100644
--- a/meta/recipes-core/busybox/busybox_1.19.3.bb
+++ b/meta/recipes-core/busybox/busybox_1.19.3.bb
@@ -1,5 +1,5 @@
 require busybox.inc
-PR = "r3"
+PR = "r4"
 
 SRC_URI = "http://www.busybox.net/downloads/busybox-${PV}.tar.bz2;name=tarball \
            file://udhcpscript.patch \
-- 
1.7.5.4




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

* Re: [PATCH] busybox: don't create /etc/default
  2012-02-16  2:08 [PATCH] busybox: don't create /etc/default Andreas Oberritter
@ 2012-02-16 10:12 ` Otavio Salvador
  2012-02-24  4:17 ` Saul Wold
  1 sibling, 0 replies; 3+ messages in thread
From: Otavio Salvador @ 2012-02-16 10:12 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

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

Acked-by: Otavio Salvador <otavio@ossystems.com.br>

On Thu, Feb 16, 2012 at 00:08, Andreas Oberritter <obi@opendreambox.org>wrote:

> * It's not used by the recipe and its creation
>  currently depends on CONFIG_HWCLOCK=y.
>
> Signed-off-by: Andreas Oberritter <obi@opendreambox.org>
> ---
>  meta/recipes-core/busybox/busybox.inc       |    1 -
>  meta/recipes-core/busybox/busybox_1.19.3.bb |    2 +-
>  2 files changed, 1 insertions(+), 2 deletions(-)
>
> diff --git a/meta/recipes-core/busybox/busybox.inc
> b/meta/recipes-core/busybox/busybox.inc
> index 5fb436e..fc69d65 100644
> --- a/meta/recipes-core/busybox/busybox.inc
> +++ b/meta/recipes-core/busybox/busybox.inc
> @@ -179,7 +179,6 @@ do_install () {
>                install -m 0755 ${WORKDIR}/busybox-udhcpd
> ${D}${sysconfdir}/init.d/
>        fi
>        if grep "CONFIG_HWCLOCK=y" ${WORKDIR}/defconfig; then
> -               install -d ${D}${sysconfdir}/default
>                install -m 0755 ${WORKDIR}/hwclock.sh
> ${D}${sysconfdir}/init.d/
>        fi
>        if grep "CONFIG_UDHCPC=y" ${WORKDIR}/defconfig; then
> diff --git a/meta/recipes-core/busybox/busybox_1.19.3.bbb/meta/recipes-core/busybox/
> busybox_1.19.3.bb
> index a075407..45e284f 100644
> --- a/meta/recipes-core/busybox/busybox_1.19.3.bb
> +++ b/meta/recipes-core/busybox/busybox_1.19.3.bb
> @@ -1,5 +1,5 @@
>  require busybox.inc
> -PR = "r3"
> +PR = "r4"
>
>  SRC_URI = "
> http://www.busybox.net/downloads/busybox-${PV}.tar.bz2;name=tarball \
>            file://udhcpscript.patch \
> --
> 1.7.5.4
>
>
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
>



-- 
Otavio Salvador                             O.S. Systems
E-mail: otavio@ossystems.com.br  http://www.ossystems.com.br
Mobile: +55 53 9981-7854              http://projetos.ossystems.com.br

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

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

* Re: [PATCH] busybox: don't create /etc/default
  2012-02-16  2:08 [PATCH] busybox: don't create /etc/default Andreas Oberritter
  2012-02-16 10:12 ` Otavio Salvador
@ 2012-02-24  4:17 ` Saul Wold
  1 sibling, 0 replies; 3+ messages in thread
From: Saul Wold @ 2012-02-24  4:17 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

On 02/15/2012 06:08 PM, Andreas Oberritter wrote:
> * It's not used by the recipe and its creation
>    currently depends on CONFIG_HWCLOCK=y.
>
> Signed-off-by: Andreas Oberritter<obi@opendreambox.org>
> ---
>   meta/recipes-core/busybox/busybox.inc       |    1 -
>   meta/recipes-core/busybox/busybox_1.19.3.bb |    2 +-
>   2 files changed, 1 insertions(+), 2 deletions(-)
>
> diff --git a/meta/recipes-core/busybox/busybox.inc b/meta/recipes-core/busybox/busybox.inc
> index 5fb436e..fc69d65 100644
> --- a/meta/recipes-core/busybox/busybox.inc
> +++ b/meta/recipes-core/busybox/busybox.inc
> @@ -179,7 +179,6 @@ do_install () {
>   		install -m 0755 ${WORKDIR}/busybox-udhcpd ${D}${sysconfdir}/init.d/
>   	fi
>   	if grep "CONFIG_HWCLOCK=y" ${WORKDIR}/defconfig; then
> -		install -d ${D}${sysconfdir}/default
>   		install -m 0755 ${WORKDIR}/hwclock.sh ${D}${sysconfdir}/init.d/
>   	fi
>   	if grep "CONFIG_UDHCPC=y" ${WORKDIR}/defconfig; then
> diff --git a/meta/recipes-core/busybox/busybox_1.19.3.bb b/meta/recipes-core/busybox/busybox_1.19.3.bb
> index a075407..45e284f 100644
> --- a/meta/recipes-core/busybox/busybox_1.19.3.bb
> +++ b/meta/recipes-core/busybox/busybox_1.19.3.bb
> @@ -1,5 +1,5 @@
>   require busybox.inc
> -PR = "r3"
> +PR = "r4"
>
>   SRC_URI = "http://www.busybox.net/downloads/busybox-${PV}.tar.bz2;name=tarball \
>              file://udhcpscript.patch \

Merged into OE-core

Thanks
	Sau!



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

end of thread, other threads:[~2012-02-24  4:25 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-02-16  2:08 [PATCH] busybox: don't create /etc/default Andreas Oberritter
2012-02-16 10:12 ` Otavio Salvador
2012-02-24  4:17 ` Saul Wold

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.