* [PATCH 1/2] busybox: detects customized configs when do_install
@ 2013-03-12 10:52 b28495
2013-03-12 10:52 ` [PATCH 2/2] busybox: Add inetd related files b28495
2013-03-20 17:04 ` [PATCH 1/2] busybox: detects customized configs when do_install Saul Wold
0 siblings, 2 replies; 4+ messages in thread
From: b28495 @ 2013-03-12 10:52 UTC (permalink / raw)
To: openembedded-core
From: Ting Liu <b28495@freescale.com>
After using 'bitbake -c menuconfig busybox' to customize defconfig,
do_install fail to detect the changes. Grep configs in ${S}/.config
instead of defconfig.
Change-Id: I958c232eb9f8096e4113a1c3a2748f5f2eccdeb5
Signed-off-by: Ting Liu <b28495@freescale.com>
---
meta/recipes-core/busybox/busybox.inc | 22 +++++++++++-----------
meta/recipes-core/busybox/busybox_1.20.2.bb | 3 ++-
2 files changed, 13 insertions(+), 12 deletions(-)
diff --git a/meta/recipes-core/busybox/busybox.inc b/meta/recipes-core/busybox/busybox.inc
index fc6ca91..093bf2e 100644
--- a/meta/recipes-core/busybox/busybox.inc
+++ b/meta/recipes-core/busybox/busybox.inc
@@ -149,11 +149,11 @@ do_install () {
install -d ${D}${sysconfdir}/init.d
- if ! grep -q "CONFIG_FEATURE_INDIVIDUAL=y" ${WORKDIR}/defconfig; then
+ if ! grep -q "CONFIG_FEATURE_INDIVIDUAL=y" ${S}/.config; then
# Install /bin/busybox, and the /bin/sh link so the postinst script
# can run. Let update-alternatives handle the rest.
install -d ${D}${base_bindir}
- if grep -q "CONFIG_FEATURE_SUID=y" ${WORKDIR}/defconfig; then
+ if grep -q "CONFIG_FEATURE_SUID=y" ${S}/.config; then
install -m 4755 ${S}/busybox ${D}${base_bindir}
else
install -m 0755 ${S}/busybox ${D}${base_bindir}
@@ -179,36 +179,36 @@ do_install () {
fi
fi
- if grep -q "CONFIG_SYSLOGD=y" ${WORKDIR}/defconfig; then
+ if grep -q "CONFIG_SYSLOGD=y" ${S}/.config; then
install -m 0755 ${WORKDIR}/syslog ${D}${sysconfdir}/init.d/syslog.${BPN}
install -m 644 ${WORKDIR}/syslog-startup.conf ${D}${sysconfdir}/syslog-startup.conf.${BPN}
fi
- if grep "CONFIG_CROND=y" ${WORKDIR}/defconfig; then
+ if grep "CONFIG_CROND=y" ${S}/.config; then
install -m 0755 ${WORKDIR}/busybox-cron ${D}${sysconfdir}/init.d/
fi
- if grep "CONFIG_HTTPD=y" ${WORKDIR}/defconfig; then
+ if grep "CONFIG_HTTPD=y" ${S}/.config; then
install -m 0755 ${WORKDIR}/busybox-httpd ${D}${sysconfdir}/init.d/
install -d ${D}/srv/www
fi
- if grep "CONFIG_UDHCPD=y" ${WORKDIR}/defconfig; then
+ if grep "CONFIG_UDHCPD=y" ${S}/.config; then
install -m 0755 ${WORKDIR}/busybox-udhcpd ${D}${sysconfdir}/init.d/
fi
- if grep "CONFIG_HWCLOCK=y" ${WORKDIR}/defconfig; then
+ if grep "CONFIG_HWCLOCK=y" ${S}/.config; then
install -m 0755 ${WORKDIR}/hwclock.sh ${D}${sysconfdir}/init.d/
fi
- if grep "CONFIG_UDHCPC=y" ${WORKDIR}/defconfig; then
+ if grep "CONFIG_UDHCPC=y" ${S}/.config; then
install -d ${D}${sysconfdir}/udhcpc.d
install -d ${D}${datadir}/udhcpc
install -m 0755 ${WORKDIR}/simple.script ${D}${sysconfdir}/udhcpc.d/50default
install -m 0755 ${WORKDIR}/default.script ${D}${datadir}/udhcpc/default.script
fi
- if grep "CONFIG_INETD=y" ${WORKDIR}/defconfig; then
+ if grep "CONFIG_INETD=y" ${S}/.config; then
install -m 0755 ${WORKDIR}/inetd ${D}${sysconfdir}/init.d/inetd.${BPN}
install -m 0644 ${WORKDIR}/inetd.conf ${D}${sysconfdir}/
fi
- if grep "CONFIG_MDEV=y" ${WORKDIR}/defconfig; then
+ if grep "CONFIG_MDEV=y" ${S}/.config; then
install -m 0755 ${WORKDIR}/mdev ${D}${sysconfdir}/init.d/mdev
- if grep "CONFIG_FEATURE_MDEV_CONF=y" ${WORKDIR}/defconfig; then
+ if grep "CONFIG_FEATURE_MDEV_CONF=y" ${S}/.config; then
install -m 644 ${WORKDIR}/mdev.conf ${D}${sysconfdir}/mdev.conf
fi
fi
diff --git a/meta/recipes-core/busybox/busybox_1.20.2.bb b/meta/recipes-core/busybox/busybox_1.20.2.bb
index 783261e..255d56c 100644
--- a/meta/recipes-core/busybox/busybox_1.20.2.bb
+++ b/meta/recipes-core/busybox/busybox_1.20.2.bb
@@ -1,5 +1,5 @@
require busybox.inc
-PR = "r5"
+PR = "r6"
SRC_URI = "http://www.busybox.net/downloads/busybox-${PV}.tar.bz2;name=tarball \
file://B921600.patch \
@@ -30,6 +30,7 @@ SRC_URI = "http://www.busybox.net/downloads/busybox-${PV}.tar.bz2;name=tarball \
file://stat-usr-bin.patch \
file://testsuite-du-du-k-works-fix-false-positive.patch"
+
SRC_URI[tarball.md5sum] = "e025414bc6cd79579cc7a32a45d3ae1c"
SRC_URI[tarball.sha256sum] = "eb13ff01dae5618ead2ef6f92ba879e9e0390f9583bd545d8789d27cf39b6882"
--
1.7.5.4
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH 2/2] busybox: Add inetd related files
2013-03-12 10:52 [PATCH 1/2] busybox: detects customized configs when do_install b28495
@ 2013-03-12 10:52 ` b28495
2013-03-20 17:04 ` [PATCH 1/2] busybox: detects customized configs when do_install Saul Wold
1 sibling, 0 replies; 4+ messages in thread
From: b28495 @ 2013-03-12 10:52 UTC (permalink / raw)
To: openembedded-core
From: Ting Liu <b28495@freescale.com>
Add back inetd and inetd.conf files which are needed if
CONFIG_INETD is enabled in the defconfig. Grabbed these
files from oe-classic
This patch is based on the previous patch for denzil:
http://patches.openembedded.org/patch/33235/
Change-Id: Ia68aa80962c4b14c5ba03c7d971049a2b2a330c3
Signed-off-by: Ting Liu <b28495@freescale.com>
---
meta/recipes-core/busybox/busybox.inc | 1 +
meta/recipes-core/busybox/busybox_1.20.2.bb | 6 +++-
meta/recipes-core/busybox/files/inetd | 33 +++++++++++++++++++++++++++
meta/recipes-core/busybox/files/inetd.conf | 20 ++++++++++++++++
4 files changed, 58 insertions(+), 2 deletions(-)
create mode 100644 meta/recipes-core/busybox/files/inetd
create mode 100644 meta/recipes-core/busybox/files/inetd.conf
diff --git a/meta/recipes-core/busybox/busybox.inc b/meta/recipes-core/busybox/busybox.inc
index 093bf2e..c8cd0d6 100644
--- a/meta/recipes-core/busybox/busybox.inc
+++ b/meta/recipes-core/busybox/busybox.inc
@@ -204,6 +204,7 @@ do_install () {
fi
if grep "CONFIG_INETD=y" ${S}/.config; then
install -m 0755 ${WORKDIR}/inetd ${D}${sysconfdir}/init.d/inetd.${BPN}
+ sed -i "s:/usr/sbin/:${sbindir}/:" ${D}${sysconfdir}/init.d/inetd.${BPN}
install -m 0644 ${WORKDIR}/inetd.conf ${D}${sysconfdir}/
fi
if grep "CONFIG_MDEV=y" ${S}/.config; then
diff --git a/meta/recipes-core/busybox/busybox_1.20.2.bb b/meta/recipes-core/busybox/busybox_1.20.2.bb
index 255d56c..1e7d3c9 100644
--- a/meta/recipes-core/busybox/busybox_1.20.2.bb
+++ b/meta/recipes-core/busybox/busybox_1.20.2.bb
@@ -1,5 +1,5 @@
require busybox.inc
-PR = "r6"
+PR = "r7"
SRC_URI = "http://www.busybox.net/downloads/busybox-${PV}.tar.bz2;name=tarball \
file://B921600.patch \
@@ -28,7 +28,9 @@ SRC_URI = "http://www.busybox.net/downloads/busybox-${PV}.tar.bz2;name=tarball \
file://fix-for-spurious-testsuite-failure.patch \
file://busybox-1.20.2-kernel_ver.patch \
file://stat-usr-bin.patch \
- file://testsuite-du-du-k-works-fix-false-positive.patch"
+ file://testsuite-du-du-k-works-fix-false-positive.patch \
+ file://inetd.conf \
+ file://inetd"
SRC_URI[tarball.md5sum] = "e025414bc6cd79579cc7a32a45d3ae1c"
diff --git a/meta/recipes-core/busybox/files/inetd b/meta/recipes-core/busybox/files/inetd
new file mode 100644
index 0000000..cf50bcd
--- /dev/null
+++ b/meta/recipes-core/busybox/files/inetd
@@ -0,0 +1,33 @@
+#!/bin/sh
+#
+# start/stop inetd super server.
+
+if ! [ -x /usr/sbin/inetd ]; then
+ exit 0
+fi
+
+case "$1" in
+ start)
+ echo -n "Starting internet superserver:"
+ echo -n " inetd" ; start-stop-daemon -S -x /usr/sbin/inetd > /dev/null
+ echo "."
+ ;;
+ stop)
+ echo -n "Stopping internet superserver:"
+ echo -n " inetd" ; start-stop-daemon -K -x /usr/sbin/inetd > /dev/null
+ echo "."
+ ;;
+ restart)
+ echo -n "Restarting internet superserver:"
+ echo -n " inetd "
+ killall -HUP inetd
+ echo "."
+ ;;
+ *)
+ echo "Usage: /etc/init.d/inetd {start|stop|restart}"
+ exit 1
+ ;;
+esac
+
+exit 0
+
diff --git a/meta/recipes-core/busybox/files/inetd.conf b/meta/recipes-core/busybox/files/inetd.conf
new file mode 100644
index 0000000..b02fe85
--- /dev/null
+++ b/meta/recipes-core/busybox/files/inetd.conf
@@ -0,0 +1,20 @@
+# /etc/inetd.conf: see inetd(8) for further informations.
+#
+# Internet server configuration database
+#
+# If you want to disable an entry so it isn't touched during
+# package updates just comment it out with a single '#' character.
+#
+# <service_name> <sock_type> <proto> <flags> <user> <server_path> <args>
+#
+#:INTERNAL: Internal services
+#echo stream tcp nowait root internal
+#echo dgram udp wait root internal
+#chargen stream tcp nowait root internal
+#chargen dgram udp wait root internal
+#discard stream tcp nowait root internal
+#discard dgram udp wait root internal
+#daytime stream tcp nowait root internal
+#daytime dgram udp wait root internal
+#time stream tcp nowait root internal
+#time dgram udp wait root internal
--
1.7.5.4
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH 1/2] busybox: detects customized configs when do_install
2013-03-12 10:52 [PATCH 1/2] busybox: detects customized configs when do_install b28495
2013-03-12 10:52 ` [PATCH 2/2] busybox: Add inetd related files b28495
@ 2013-03-20 17:04 ` Saul Wold
2013-04-15 9:52 ` Liu Ting-B28495
1 sibling, 1 reply; 4+ messages in thread
From: Saul Wold @ 2013-03-20 17:04 UTC (permalink / raw)
To: b28495; +Cc: openembedded-core
On 03/12/2013 03:52 AM, b28495@freescale.com wrote:
> From: Ting Liu <b28495@freescale.com>
>
> After using 'bitbake -c menuconfig busybox' to customize defconfig,
> do_install fail to detect the changes. Grep configs in ${S}/.config
> instead of defconfig.
>
With the recent changes from Richard to move towards using a separate
${B} directory for build vs ${S} directory for source (marked read-only
in the future), this change should be updated to use ${B} instead of
${S} for checking the .config file.
The overall change is good, we just need to use the right directory for
checking the build related changes to the .config file.
Thanks
Sau!
> Change-Id: I958c232eb9f8096e4113a1c3a2748f5f2eccdeb5
> Signed-off-by: Ting Liu <b28495@freescale.com>
> ---
> meta/recipes-core/busybox/busybox.inc | 22 +++++++++++-----------
> meta/recipes-core/busybox/busybox_1.20.2.bb | 3 ++-
> 2 files changed, 13 insertions(+), 12 deletions(-)
>
> diff --git a/meta/recipes-core/busybox/busybox.inc b/meta/recipes-core/busybox/busybox.inc
> index fc6ca91..093bf2e 100644
> --- a/meta/recipes-core/busybox/busybox.inc
> +++ b/meta/recipes-core/busybox/busybox.inc
> @@ -149,11 +149,11 @@ do_install () {
>
> install -d ${D}${sysconfdir}/init.d
>
> - if ! grep -q "CONFIG_FEATURE_INDIVIDUAL=y" ${WORKDIR}/defconfig; then
> + if ! grep -q "CONFIG_FEATURE_INDIVIDUAL=y" ${S}/.config; then
> # Install /bin/busybox, and the /bin/sh link so the postinst script
> # can run. Let update-alternatives handle the rest.
> install -d ${D}${base_bindir}
> - if grep -q "CONFIG_FEATURE_SUID=y" ${WORKDIR}/defconfig; then
> + if grep -q "CONFIG_FEATURE_SUID=y" ${S}/.config; then
> install -m 4755 ${S}/busybox ${D}${base_bindir}
> else
> install -m 0755 ${S}/busybox ${D}${base_bindir}
> @@ -179,36 +179,36 @@ do_install () {
> fi
> fi
>
> - if grep -q "CONFIG_SYSLOGD=y" ${WORKDIR}/defconfig; then
> + if grep -q "CONFIG_SYSLOGD=y" ${S}/.config; then
> install -m 0755 ${WORKDIR}/syslog ${D}${sysconfdir}/init.d/syslog.${BPN}
> install -m 644 ${WORKDIR}/syslog-startup.conf ${D}${sysconfdir}/syslog-startup.conf.${BPN}
> fi
> - if grep "CONFIG_CROND=y" ${WORKDIR}/defconfig; then
> + if grep "CONFIG_CROND=y" ${S}/.config; then
> install -m 0755 ${WORKDIR}/busybox-cron ${D}${sysconfdir}/init.d/
> fi
> - if grep "CONFIG_HTTPD=y" ${WORKDIR}/defconfig; then
> + if grep "CONFIG_HTTPD=y" ${S}/.config; then
> install -m 0755 ${WORKDIR}/busybox-httpd ${D}${sysconfdir}/init.d/
> install -d ${D}/srv/www
> fi
> - if grep "CONFIG_UDHCPD=y" ${WORKDIR}/defconfig; then
> + if grep "CONFIG_UDHCPD=y" ${S}/.config; then
> install -m 0755 ${WORKDIR}/busybox-udhcpd ${D}${sysconfdir}/init.d/
> fi
> - if grep "CONFIG_HWCLOCK=y" ${WORKDIR}/defconfig; then
> + if grep "CONFIG_HWCLOCK=y" ${S}/.config; then
> install -m 0755 ${WORKDIR}/hwclock.sh ${D}${sysconfdir}/init.d/
> fi
> - if grep "CONFIG_UDHCPC=y" ${WORKDIR}/defconfig; then
> + if grep "CONFIG_UDHCPC=y" ${S}/.config; then
> install -d ${D}${sysconfdir}/udhcpc.d
> install -d ${D}${datadir}/udhcpc
> install -m 0755 ${WORKDIR}/simple.script ${D}${sysconfdir}/udhcpc.d/50default
> install -m 0755 ${WORKDIR}/default.script ${D}${datadir}/udhcpc/default.script
> fi
> - if grep "CONFIG_INETD=y" ${WORKDIR}/defconfig; then
> + if grep "CONFIG_INETD=y" ${S}/.config; then
> install -m 0755 ${WORKDIR}/inetd ${D}${sysconfdir}/init.d/inetd.${BPN}
> install -m 0644 ${WORKDIR}/inetd.conf ${D}${sysconfdir}/
> fi
> - if grep "CONFIG_MDEV=y" ${WORKDIR}/defconfig; then
> + if grep "CONFIG_MDEV=y" ${S}/.config; then
> install -m 0755 ${WORKDIR}/mdev ${D}${sysconfdir}/init.d/mdev
> - if grep "CONFIG_FEATURE_MDEV_CONF=y" ${WORKDIR}/defconfig; then
> + if grep "CONFIG_FEATURE_MDEV_CONF=y" ${S}/.config; then
> install -m 644 ${WORKDIR}/mdev.conf ${D}${sysconfdir}/mdev.conf
> fi
> fi
> diff --git a/meta/recipes-core/busybox/busybox_1.20.2.bb b/meta/recipes-core/busybox/busybox_1.20.2.bb
> index 783261e..255d56c 100644
> --- a/meta/recipes-core/busybox/busybox_1.20.2.bb
> +++ b/meta/recipes-core/busybox/busybox_1.20.2.bb
> @@ -1,5 +1,5 @@
> require busybox.inc
> -PR = "r5"
> +PR = "r6"
>
> SRC_URI = "http://www.busybox.net/downloads/busybox-${PV}.tar.bz2;name=tarball \
> file://B921600.patch \
> @@ -30,6 +30,7 @@ SRC_URI = "http://www.busybox.net/downloads/busybox-${PV}.tar.bz2;name=tarball \
> file://stat-usr-bin.patch \
> file://testsuite-du-du-k-works-fix-false-positive.patch"
>
> +
> SRC_URI[tarball.md5sum] = "e025414bc6cd79579cc7a32a45d3ae1c"
> SRC_URI[tarball.sha256sum] = "eb13ff01dae5618ead2ef6f92ba879e9e0390f9583bd545d8789d27cf39b6882"
>
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 1/2] busybox: detects customized configs when do_install
2013-03-20 17:04 ` [PATCH 1/2] busybox: detects customized configs when do_install Saul Wold
@ 2013-04-15 9:52 ` Liu Ting-B28495
0 siblings, 0 replies; 4+ messages in thread
From: Liu Ting-B28495 @ 2013-04-15 9:52 UTC (permalink / raw)
To: Saul Wold; +Cc: Luo Zhenhua-B19537, openembedded-core@lists.openembedded.org
> -----Original Message-----
> From: Saul Wold [mailto:sgw@linux.intel.com]
> Sent: Thursday, March 21, 2013 1:05 AM
> To: Liu Ting-B28495
> Cc: openembedded-core@lists.openembedded.org
> Subject: Re: [OE-core] [oe-core][PATCH 1/2] busybox: detects customized
> configs when do_install
>
> On 03/12/2013 03:52 AM, b28495@freescale.com wrote:
> > From: Ting Liu <b28495@freescale.com>
> >
> > After using 'bitbake -c menuconfig busybox' to customize defconfig,
> > do_install fail to detect the changes. Grep configs in ${S}/.config
> > instead of defconfig.
> >
> With the recent changes from Richard to move towards using a separate ${B}
> directory for build vs ${S} directory for source (marked read-only in the
> future), this change should be updated to use ${B} instead of ${S} for
> checking the .config file.
>
> The overall change is good, we just need to use the right directory for
> checking the build related changes to the .config file.
>
>
Patch v2 sent out. Please review.
> Thanks
> Sau!
>
> > Change-Id: I958c232eb9f8096e4113a1c3a2748f5f2eccdeb5
> > Signed-off-by: Ting Liu <b28495@freescale.com>
> > ---
> > meta/recipes-core/busybox/busybox.inc | 22 +++++++++++-------
> ----
> > meta/recipes-core/busybox/busybox_1.20.2.bb | 3 ++-
> > 2 files changed, 13 insertions(+), 12 deletions(-)
> >
> > diff --git a/meta/recipes-core/busybox/busybox.inc b/meta/recipes-
> core/busybox/busybox.inc
> > index fc6ca91..093bf2e 100644
> > --- a/meta/recipes-core/busybox/busybox.inc
> > +++ b/meta/recipes-core/busybox/busybox.inc
> > @@ -149,11 +149,11 @@ do_install () {
> >
> > install -d ${D}${sysconfdir}/init.d
> >
> > - if ! grep -q "CONFIG_FEATURE_INDIVIDUAL=y" ${WORKDIR}/defconfig;
> then
> > + if ! grep -q "CONFIG_FEATURE_INDIVIDUAL=y" ${S}/.config; then
> > # Install /bin/busybox, and the /bin/sh link so the postinst
> script
> > # can run. Let update-alternatives handle the rest.
> > install -d ${D}${base_bindir}
> > - if grep -q "CONFIG_FEATURE_SUID=y" ${WORKDIR}/defconfig; then
> > + if grep -q "CONFIG_FEATURE_SUID=y" ${S}/.config; then
> > install -m 4755 ${S}/busybox ${D}${base_bindir}
> > else
> > install -m 0755 ${S}/busybox ${D}${base_bindir}
> > @@ -179,36 +179,36 @@ do_install () {
> > fi
> > fi
> >
> > - if grep -q "CONFIG_SYSLOGD=y" ${WORKDIR}/defconfig; then
> > + if grep -q "CONFIG_SYSLOGD=y" ${S}/.config; then
> > install -m 0755 ${WORKDIR}/syslog
> ${D}${sysconfdir}/init.d/syslog.${BPN}
> > install -m 644 ${WORKDIR}/syslog-startup.conf
> ${D}${sysconfdir}/syslog-startup.conf.${BPN}
> > fi
> > - if grep "CONFIG_CROND=y" ${WORKDIR}/defconfig; then
> > + if grep "CONFIG_CROND=y" ${S}/.config; then
> > install -m 0755 ${WORKDIR}/busybox-cron
> ${D}${sysconfdir}/init.d/
> > fi
> > - if grep "CONFIG_HTTPD=y" ${WORKDIR}/defconfig; then
> > + if grep "CONFIG_HTTPD=y" ${S}/.config; then
> > install -m 0755 ${WORKDIR}/busybox-httpd
> ${D}${sysconfdir}/init.d/
> > install -d ${D}/srv/www
> > fi
> > - if grep "CONFIG_UDHCPD=y" ${WORKDIR}/defconfig; then
> > + if grep "CONFIG_UDHCPD=y" ${S}/.config; then
> > install -m 0755 ${WORKDIR}/busybox-udhcpd
> ${D}${sysconfdir}/init.d/
> > fi
> > - if grep "CONFIG_HWCLOCK=y" ${WORKDIR}/defconfig; then
> > + if grep "CONFIG_HWCLOCK=y" ${S}/.config; then
> > install -m 0755 ${WORKDIR}/hwclock.sh
> ${D}${sysconfdir}/init.d/
> > fi
> > - if grep "CONFIG_UDHCPC=y" ${WORKDIR}/defconfig; then
> > + if grep "CONFIG_UDHCPC=y" ${S}/.config; then
> > install -d ${D}${sysconfdir}/udhcpc.d
> > install -d ${D}${datadir}/udhcpc
> > install -m 0755 ${WORKDIR}/simple.script
> ${D}${sysconfdir}/udhcpc.d/50default
> > install -m 0755 ${WORKDIR}/default.script
> ${D}${datadir}/udhcpc/default.script
> > fi
> > - if grep "CONFIG_INETD=y" ${WORKDIR}/defconfig; then
> > + if grep "CONFIG_INETD=y" ${S}/.config; then
> > install -m 0755 ${WORKDIR}/inetd
> ${D}${sysconfdir}/init.d/inetd.${BPN}
> > install -m 0644 ${WORKDIR}/inetd.conf ${D}${sysconfdir}/
> > fi
> > - if grep "CONFIG_MDEV=y" ${WORKDIR}/defconfig; then
> > + if grep "CONFIG_MDEV=y" ${S}/.config; then
> > install -m 0755 ${WORKDIR}/mdev
> ${D}${sysconfdir}/init.d/mdev
> > - if grep "CONFIG_FEATURE_MDEV_CONF=y"
> ${WORKDIR}/defconfig; then
> > + if grep "CONFIG_FEATURE_MDEV_CONF=y" ${S}/.config; then
> > install -m 644 ${WORKDIR}/mdev.conf
> ${D}${sysconfdir}/mdev.conf
> > fi
> > fi
> > diff --git a/meta/recipes-core/busybox/busybox_1.20.2.bb
> b/meta/recipes-core/busybox/busybox_1.20.2.bb
> > index 783261e..255d56c 100644
> > --- a/meta/recipes-core/busybox/busybox_1.20.2.bb
> > +++ b/meta/recipes-core/busybox/busybox_1.20.2.bb
> > @@ -1,5 +1,5 @@
> > require busybox.inc
> > -PR = "r5"
> > +PR = "r6"
> >
> > SRC_URI = "http://www.busybox.net/downloads/busybox-
> ${PV}.tar.bz2;name=tarball \
> > file://B921600.patch \
> > @@ -30,6 +30,7 @@ SRC_URI = "http://www.busybox.net/downloads/busybox-
> ${PV}.tar.bz2;name=tarball \
> > file://stat-usr-bin.patch \
> > file://testsuite-du-du-k-works-fix-false-positive.patch"
> >
> > +
> > SRC_URI[tarball.md5sum] = "e025414bc6cd79579cc7a32a45d3ae1c"
> > SRC_URI[tarball.sha256sum] =
> "eb13ff01dae5618ead2ef6f92ba879e9e0390f9583bd545d8789d27cf39b6882"
> >
> >
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2013-04-15 10:40 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-03-12 10:52 [PATCH 1/2] busybox: detects customized configs when do_install b28495
2013-03-12 10:52 ` [PATCH 2/2] busybox: Add inetd related files b28495
2013-03-20 17:04 ` [PATCH 1/2] busybox: detects customized configs when do_install Saul Wold
2013-04-15 9:52 ` Liu Ting-B28495
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.