All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] busybox: enable CONFIG_RUN_PARTS if default.script is to be installed
@ 2011-01-19 15:57 Eric Bénard
  2011-01-19 15:57 ` [PATCH 2/2] busybox-1.18.2: add latest fixes Eric Bénard
  2011-01-19 18:04 ` [PATCH 1/2] busybox: enable CONFIG_RUN_PARTS if default.script is to be installed Khem Raj
  0 siblings, 2 replies; 6+ messages in thread
From: Eric Bénard @ 2011-01-19 15:57 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Eric Bénard <eric@eukrea.com>
---
 recipes/busybox/busybox_1.1x.inc |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/recipes/busybox/busybox_1.1x.inc b/recipes/busybox/busybox_1.1x.inc
index 4dbc3d9..1078aac 100644
--- a/recipes/busybox/busybox_1.1x.inc
+++ b/recipes/busybox/busybox_1.1x.inc
@@ -34,6 +34,9 @@ do_configure_prepend () {
 	if [ "${TARGET_ARCH}" = "avr32" ] ; then
 		sed -i s:CONFIG_FEATURE_OSF_LABEL=y:CONFIG_FEATURE_OSF_LABEL=n: ${WORKDIR}/defconfig
 	fi
+        if [ -e ${WORKDIR}/default.script ]; then
+		echo "CONFIG_RUN_PARTS=y"                    >> ${WORKDIR}/defconfig
+        fi
 }
 
 do_install_append() {
-- 
1.6.3.3




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

* [PATCH 2/2] busybox-1.18.2: add latest fixes
  2011-01-19 15:57 [PATCH 1/2] busybox: enable CONFIG_RUN_PARTS if default.script is to be installed Eric Bénard
@ 2011-01-19 15:57 ` Eric Bénard
  2011-01-19 18:05   ` Khem Raj
  2011-01-19 18:04 ` [PATCH 1/2] busybox: enable CONFIG_RUN_PARTS if default.script is to be installed Khem Raj
  1 sibling, 1 reply; 6+ messages in thread
From: Eric Bénard @ 2011-01-19 15:57 UTC (permalink / raw)
  To: openembedded-devel

- hush: fix "cmd & <newline>" problem
98c46d10ee81f206f274da312086a3f0533582af

- disable automatic selection of FEATURE_SUID
3b5acaa4323bd165077e60098af94ad9750d62fd

Signed-off-by: Eric Bénard <eric@eukrea.com>
---
 recipes/busybox/busybox_1.18.2.bb |    8 +++++++-
 1 files changed, 7 insertions(+), 1 deletions(-)

diff --git a/recipes/busybox/busybox_1.18.2.bb b/recipes/busybox/busybox_1.18.2.bb
index 71b50c8..e6d17d3 100644
--- a/recipes/busybox/busybox_1.18.2.bb
+++ b/recipes/busybox/busybox_1.18.2.bb
@@ -1,11 +1,17 @@
 require busybox_1.1x.inc
-PR = "${INC_PR}.1"
+PR = "${INC_PR}.2"
 
 SRC_URI += " \
 	http://busybox.net/downloads/fixes-1.18.2/busybox-1.18.2-modprobe-small.patch;name=patch01 \
+	http://busybox.net/downloads/fixes-1.18.2/busybox-1.18.2-buildsys.patch;name=patch02 \
+	http://busybox.net/downloads/fixes-1.18.2/busybox-1.18.2-hush.patch;name=patch03 \
 	"
 
 SRC_URI[md5sum] = "69a82091e5710b72db5ce0e14e7c0cd7"
 SRC_URI[sha256sum] = "aa7e1cec8cd9c7f4e56098b9e4bb2ab5d593d5a35f766ad9e6a312289bf57080"
 SRC_URI[patch01.md5sum] = "dda72eaf33d19d6a0ac78e46e9411cfd"
 SRC_URI[patch01.sha256sum] = "ed5d83040414d035138bf484ccd514817342b143baff43ffff6ba556952de7ed"
+SRC_URI[patch02.md5sum] = "c7ae920c8adb767fc35b3a8ca3ad7351"
+SRC_URI[patch02.sha256sum] = "d9398bc5e65b7eff261f20526b6e07d61bef64dd978c92e6317334bfaa135938"
+SRC_URI[patch03.md5sum] = "854045f4b713df759b49945550843acf"
+SRC_URI[patch03.sha256sum] = "b70c4406307942f38b2c8d94675b7ca7db8ba0351ae916f838d04856b5aad33f"
-- 
1.6.3.3




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

* Re: [PATCH 1/2] busybox: enable CONFIG_RUN_PARTS if default.script is to be installed
  2011-01-19 15:57 [PATCH 1/2] busybox: enable CONFIG_RUN_PARTS if default.script is to be installed Eric Bénard
  2011-01-19 15:57 ` [PATCH 2/2] busybox-1.18.2: add latest fixes Eric Bénard
@ 2011-01-19 18:04 ` Khem Raj
  2011-01-19 18:56   ` Frans Meulenbroeks
  1 sibling, 1 reply; 6+ messages in thread
From: Khem Raj @ 2011-01-19 18:04 UTC (permalink / raw)
  To: openembedded-devel

On Wed, Jan 19, 2011 at 7:57 AM, Eric Bénard <eric@eukrea.com> wrote:
> Signed-off-by: Eric Bénard <eric@eukrea.com>

Looks ok.

Acked-by: Khem Raj <raj.khem@gmail.com>

> ---
>  recipes/busybox/busybox_1.1x.inc |    3 +++
>  1 files changed, 3 insertions(+), 0 deletions(-)
>
> diff --git a/recipes/busybox/busybox_1.1x.inc b/recipes/busybox/busybox_1.1x.inc
> index 4dbc3d9..1078aac 100644
> --- a/recipes/busybox/busybox_1.1x.inc
> +++ b/recipes/busybox/busybox_1.1x.inc
> @@ -34,6 +34,9 @@ do_configure_prepend () {
>        if [ "${TARGET_ARCH}" = "avr32" ] ; then
>                sed -i s:CONFIG_FEATURE_OSF_LABEL=y:CONFIG_FEATURE_OSF_LABEL=n: ${WORKDIR}/defconfig
>        fi
> +        if [ -e ${WORKDIR}/default.script ]; then
> +               echo "CONFIG_RUN_PARTS=y"                    >> ${WORKDIR}/defconfig
> +        fi
>  }
>
>  do_install_append() {
> --
> 1.6.3.3
>
>
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
>



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

* Re: [PATCH 2/2] busybox-1.18.2: add latest fixes
  2011-01-19 15:57 ` [PATCH 2/2] busybox-1.18.2: add latest fixes Eric Bénard
@ 2011-01-19 18:05   ` Khem Raj
  0 siblings, 0 replies; 6+ messages in thread
From: Khem Raj @ 2011-01-19 18:05 UTC (permalink / raw)
  To: openembedded-devel

On Wed, Jan 19, 2011 at 7:57 AM, Eric Bénard <eric@eukrea.com> wrote:
> - hush: fix "cmd & <newline>" problem
> 98c46d10ee81f206f274da312086a3f0533582af
>
> - disable automatic selection of FEATURE_SUID
> 3b5acaa4323bd165077e60098af94ad9750d62fd
>
> Signed-off-by: Eric Bénard <eric@eukrea.com>

Acked-by: Khem Raj <raj.khem@gmail.com>

> ---
>  recipes/busybox/busybox_1.18.2.bb |    8 +++++++-
>  1 files changed, 7 insertions(+), 1 deletions(-)
>
> diff --git a/recipes/busybox/busybox_1.18.2.bb b/recipes/busybox/busybox_1.18.2.bb
> index 71b50c8..e6d17d3 100644
> --- a/recipes/busybox/busybox_1.18.2.bb
> +++ b/recipes/busybox/busybox_1.18.2.bb
> @@ -1,11 +1,17 @@
>  require busybox_1.1x.inc
> -PR = "${INC_PR}.1"
> +PR = "${INC_PR}.2"
>
>  SRC_URI += " \
>        http://busybox.net/downloads/fixes-1.18.2/busybox-1.18.2-modprobe-small.patch;name=patch01 \
> +       http://busybox.net/downloads/fixes-1.18.2/busybox-1.18.2-buildsys.patch;name=patch02 \
> +       http://busybox.net/downloads/fixes-1.18.2/busybox-1.18.2-hush.patch;name=patch03 \
>        "
>
>  SRC_URI[md5sum] = "69a82091e5710b72db5ce0e14e7c0cd7"
>  SRC_URI[sha256sum] = "aa7e1cec8cd9c7f4e56098b9e4bb2ab5d593d5a35f766ad9e6a312289bf57080"
>  SRC_URI[patch01.md5sum] = "dda72eaf33d19d6a0ac78e46e9411cfd"
>  SRC_URI[patch01.sha256sum] = "ed5d83040414d035138bf484ccd514817342b143baff43ffff6ba556952de7ed"
> +SRC_URI[patch02.md5sum] = "c7ae920c8adb767fc35b3a8ca3ad7351"
> +SRC_URI[patch02.sha256sum] = "d9398bc5e65b7eff261f20526b6e07d61bef64dd978c92e6317334bfaa135938"
> +SRC_URI[patch03.md5sum] = "854045f4b713df759b49945550843acf"
> +SRC_URI[patch03.sha256sum] = "b70c4406307942f38b2c8d94675b7ca7db8ba0351ae916f838d04856b5aad33f"
> --
> 1.6.3.3
>
>
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
>



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

* Re: [PATCH 1/2] busybox: enable CONFIG_RUN_PARTS if default.script is to be installed
  2011-01-19 18:04 ` [PATCH 1/2] busybox: enable CONFIG_RUN_PARTS if default.script is to be installed Khem Raj
@ 2011-01-19 18:56   ` Frans Meulenbroeks
  2011-01-19 19:57     ` Eric Bénard
  0 siblings, 1 reply; 6+ messages in thread
From: Frans Meulenbroeks @ 2011-01-19 18:56 UTC (permalink / raw)
  To: openembedded-devel

2011/1/19 Khem Raj <raj.khem@gmail.com>:
> On Wed, Jan 19, 2011 at 7:57 AM, Eric Bénard <eric@eukrea.com> wrote:
>> Signed-off-by: Eric Bénard <eric@eukrea.com>
>
> Looks ok.
>
> Acked-by: Khem Raj <raj.khem@gmail.com>

Would this need an INC_PR bump?
Otherwise:
Acked-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
>
>> ---
>>  recipes/busybox/busybox_1.1x.inc |    3 +++
>>  1 files changed, 3 insertions(+), 0 deletions(-)
>>
>> diff --git a/recipes/busybox/busybox_1.1x.inc b/recipes/busybox/busybox_1.1x.inc
>> index 4dbc3d9..1078aac 100644
>> --- a/recipes/busybox/busybox_1.1x.inc
>> +++ b/recipes/busybox/busybox_1.1x.inc
>> @@ -34,6 +34,9 @@ do_configure_prepend () {
>>        if [ "${TARGET_ARCH}" = "avr32" ] ; then
>>                sed -i s:CONFIG_FEATURE_OSF_LABEL=y:CONFIG_FEATURE_OSF_LABEL=n: ${WORKDIR}/defconfig
>>        fi
>> +        if [ -e ${WORKDIR}/default.script ]; then
>> +               echo "CONFIG_RUN_PARTS=y"                    >> ${WORKDIR}/defconfig
>> +        fi
>>  }
>>
>>  do_install_append() {
>> --
>> 1.6.3.3
>>
>>
>> _______________________________________________
>> Openembedded-devel mailing list
>> Openembedded-devel@lists.openembedded.org
>> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
>>
>
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
>



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

* Re: [PATCH 1/2] busybox: enable CONFIG_RUN_PARTS if default.script is to be installed
  2011-01-19 18:56   ` Frans Meulenbroeks
@ 2011-01-19 19:57     ` Eric Bénard
  0 siblings, 0 replies; 6+ messages in thread
From: Eric Bénard @ 2011-01-19 19:57 UTC (permalink / raw)
  To: openembedded-devel

On 19/01/2011 19:56, Frans Meulenbroeks wrote:
> 2011/1/19 Khem Raj<raj.khem@gmail.com>:
>> On Wed, Jan 19, 2011 at 7:57 AM, Eric Bénard<eric@eukrea.com>  wrote:
>>> Signed-off-by: Eric Bénard<eric@eukrea.com>
>>
>> Looks ok.
>>
>> Acked-by: Khem Raj<raj.khem@gmail.com>
>
> Would this need an INC_PR bump?
defconfig in the tree already have CONFIG_RUN_PARTS=y so existing packages 
won't get any change with that patch.

Eric



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

end of thread, other threads:[~2011-01-19 19:58 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-01-19 15:57 [PATCH 1/2] busybox: enable CONFIG_RUN_PARTS if default.script is to be installed Eric Bénard
2011-01-19 15:57 ` [PATCH 2/2] busybox-1.18.2: add latest fixes Eric Bénard
2011-01-19 18:05   ` Khem Raj
2011-01-19 18:04 ` [PATCH 1/2] busybox: enable CONFIG_RUN_PARTS if default.script is to be installed Khem Raj
2011-01-19 18:56   ` Frans Meulenbroeks
2011-01-19 19:57     ` Eric Bénard

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.