* [PATCH 1/2] Avoid starting rpcbind daemon twice during boot
@ 2013-11-15 6:34 Yue Tao
2013-11-15 6:34 ` [PATCH 2/2] Add e2fsprogs-mke2fs and e2fsprogs-e2fsck as recommend packages Yue Tao
2013-11-15 15:15 ` [PATCH 1/2] Avoid starting rpcbind daemon twice during boot Saul Wold
0 siblings, 2 replies; 4+ messages in thread
From: Yue Tao @ 2013-11-15 6:34 UTC (permalink / raw)
To: openembedded-core
Check whether rpcbind daemon already run before starting it.
Signed-off-by: Yue Tao <Yue.Tao@windriver.com>
---
.../initscripts/initscripts-1.0/mountnfs.sh | 9 ++++++---
1 files changed, 6 insertions(+), 3 deletions(-)
diff --git a/meta/recipes-core/initscripts/initscripts-1.0/mountnfs.sh b/meta/recipes-core/initscripts/initscripts-1.0/mountnfs.sh
index 4fffe4e..a03070d 100755
--- a/meta/recipes-core/initscripts/initscripts-1.0/mountnfs.sh
+++ b/meta/recipes-core/initscripts/initscripts-1.0/mountnfs.sh
@@ -69,9 +69,12 @@ if test "$rpcbind" = yes
then
if test -x /usr/sbin/rpcbind
then
- echo -n "Starting rpcbind... "
- start-stop-daemon --start --quiet --exec /usr/sbin/rpcbind
- sleep 2
+ service rpcbind status > /dev/null
+ if [ $? != 0 ]; then
+ echo -n "Starting rpcbind..."
+ start-stop-daemon --start --quiet --exec /usr/sbin/rpcbind
+ sleep 2
+ fi
fi
fi
--
1.7.5.4
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH 2/2] Add e2fsprogs-mke2fs and e2fsprogs-e2fsck as recommend packages
2013-11-15 6:34 [PATCH 1/2] Avoid starting rpcbind daemon twice during boot Yue Tao
@ 2013-11-15 6:34 ` Yue Tao
2013-11-15 9:08 ` Hans Beckérus
2013-11-15 15:15 ` [PATCH 1/2] Avoid starting rpcbind daemon twice during boot Saul Wold
1 sibling, 1 reply; 4+ messages in thread
From: Yue Tao @ 2013-11-15 6:34 UTC (permalink / raw)
To: openembedded-core
The mke2fs and e2fsck commands are regular tools of e2fsprogs, so they
should be installed.
Signed-off-by: Yue Tao <Yue.Tao@windriver.com>
---
.../recipes-devtools/e2fsprogs/e2fsprogs_1.42.8.bb | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/meta/recipes-devtools/e2fsprogs/e2fsprogs_1.42.8.bb b/meta/recipes-devtools/e2fsprogs/e2fsprogs_1.42.8.bb
index 63c0057..5c78c82 100644
--- a/meta/recipes-devtools/e2fsprogs/e2fsprogs_1.42.8.bb
+++ b/meta/recipes-devtools/e2fsprogs/e2fsprogs_1.42.8.bb
@@ -59,6 +59,7 @@ do_install_append () {
}
RDEPENDS_e2fsprogs = "e2fsprogs-badblocks"
+RRECOMMENDS_e2fsprogs = "e2fsprogs-mke2fs e2fsprogs-e2fsck"
PACKAGES =+ "e2fsprogs-e2fsck e2fsprogs-mke2fs e2fsprogs-tune2fs e2fsprogs-badblocks"
PACKAGES =+ "libcomerr libss libe2p libext2fs"
--
1.7.5.4
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [PATCH 2/2] Add e2fsprogs-mke2fs and e2fsprogs-e2fsck as recommend packages
2013-11-15 6:34 ` [PATCH 2/2] Add e2fsprogs-mke2fs and e2fsprogs-e2fsck as recommend packages Yue Tao
@ 2013-11-15 9:08 ` Hans Beckérus
0 siblings, 0 replies; 4+ messages in thread
From: Hans Beckérus @ 2013-11-15 9:08 UTC (permalink / raw)
To: Yue Tao; +Cc: openembedded-core
On Fri, Nov 15, 2013 at 7:34 AM, Yue Tao <Yue.Tao@windriver.com> wrote:
> The mke2fs and e2fsck commands are regular tools of e2fsprogs, so they
> should be installed.
>
Could the enforcement of mke2fs conflict with the busybox default install?
Thanks.
Hans
> Signed-off-by: Yue Tao <Yue.Tao@windriver.com>
> ---
> .../recipes-devtools/e2fsprogs/e2fsprogs_1.42.8.bb | 1 +
> 1 files changed, 1 insertions(+), 0 deletions(-)
>
> diff --git a/meta/recipes-devtools/e2fsprogs/e2fsprogs_1.42.8.bb b/meta/recipes-devtools/e2fsprogs/e2fsprogs_1.42.8.bb
> index 63c0057..5c78c82 100644
> --- a/meta/recipes-devtools/e2fsprogs/e2fsprogs_1.42.8.bb
> +++ b/meta/recipes-devtools/e2fsprogs/e2fsprogs_1.42.8.bb
> @@ -59,6 +59,7 @@ do_install_append () {
> }
>
> RDEPENDS_e2fsprogs = "e2fsprogs-badblocks"
> +RRECOMMENDS_e2fsprogs = "e2fsprogs-mke2fs e2fsprogs-e2fsck"
>
> PACKAGES =+ "e2fsprogs-e2fsck e2fsprogs-mke2fs e2fsprogs-tune2fs e2fsprogs-badblocks"
> PACKAGES =+ "libcomerr libss libe2p libext2fs"
> --
> 1.7.5.4
>
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 1/2] Avoid starting rpcbind daemon twice during boot
2013-11-15 6:34 [PATCH 1/2] Avoid starting rpcbind daemon twice during boot Yue Tao
2013-11-15 6:34 ` [PATCH 2/2] Add e2fsprogs-mke2fs and e2fsprogs-e2fsck as recommend packages Yue Tao
@ 2013-11-15 15:15 ` Saul Wold
1 sibling, 0 replies; 4+ messages in thread
From: Saul Wold @ 2013-11-15 15:15 UTC (permalink / raw)
To: Yue Tao, openembedded-core
On 11/14/2013 10:34 PM, Yue Tao wrote:
> Check whether rpcbind daemon already run before starting it.
>
Please review the commit guidelines for both of your patches and correct
the short summary (subject) to be in the form of:
initscripts: Avoid ...
Thanks
SaU!
> Signed-off-by: Yue Tao <Yue.Tao@windriver.com>
> ---
> .../initscripts/initscripts-1.0/mountnfs.sh | 9 ++++++---
> 1 files changed, 6 insertions(+), 3 deletions(-)
>
> diff --git a/meta/recipes-core/initscripts/initscripts-1.0/mountnfs.sh b/meta/recipes-core/initscripts/initscripts-1.0/mountnfs.sh
> index 4fffe4e..a03070d 100755
> --- a/meta/recipes-core/initscripts/initscripts-1.0/mountnfs.sh
> +++ b/meta/recipes-core/initscripts/initscripts-1.0/mountnfs.sh
> @@ -69,9 +69,12 @@ if test "$rpcbind" = yes
> then
> if test -x /usr/sbin/rpcbind
> then
> - echo -n "Starting rpcbind... "
> - start-stop-daemon --start --quiet --exec /usr/sbin/rpcbind
> - sleep 2
> + service rpcbind status > /dev/null
> + if [ $? != 0 ]; then
> + echo -n "Starting rpcbind..."
> + start-stop-daemon --start --quiet --exec /usr/sbin/rpcbind
> + sleep 2
> + fi
> fi
> fi
>
>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2013-11-15 15:15 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-11-15 6:34 [PATCH 1/2] Avoid starting rpcbind daemon twice during boot Yue Tao
2013-11-15 6:34 ` [PATCH 2/2] Add e2fsprogs-mke2fs and e2fsprogs-e2fsck as recommend packages Yue Tao
2013-11-15 9:08 ` Hans Beckérus
2013-11-15 15:15 ` [PATCH 1/2] Avoid starting rpcbind daemon twice during boot Saul Wold
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox