From: Richard Tollerton <[email protected]>

busybox sysctl may lack the "-q" setting, so simulate it with redirects.

Signed-off-by: Richard Tollerton <[email protected]>
Signed-off-by: Ben Shelton <[email protected]>
---
 meta/recipes-core/initscripts/initscripts-1.0/bootmisc.sh | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/meta/recipes-core/initscripts/initscripts-1.0/bootmisc.sh 
b/meta/recipes-core/initscripts/initscripts-1.0/bootmisc.sh
index 3b5a47f..5211824 100755
--- a/meta/recipes-core/initscripts/initscripts-1.0/bootmisc.sh
+++ b/meta/recipes-core/initscripts/initscripts-1.0/bootmisc.sh
@@ -36,7 +36,12 @@ if [ -f "${SYSCTL_CONF}" ]
 then
        if [ -x "/sbin/sysctl" ]
        then
-               /sbin/sysctl -p "${SYSCTL_CONF}"
+               # busybox sysctl does not support -q
+               VERBOSE_REDIR="1>/dev/null"
+               if [ "${VERBOSE}" != "no" ]; then
+                       VERBOSE_REDIR="1>&1"
+               fi
+               eval /sbin/sysctl -p "${SYSCTL_CONF}" $VERBOSE_REDIR
        else
                echo "To have ${SYSCTL_CONF} applied during boot, install 
package <procps>."
        fi
-- 
2.0.2

-- 
_______________________________________________
Openembedded-core mailing list
[email protected]
http://lists.openembedded.org/mailman/listinfo/openembedded-core

Reply via email to