Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: jacmet at uclibc.org <jacmet@uclibc.org>
To: buildroot@busybox.net
Subject: [Buildroot] svn commit: trunk/buildroot/target/generic: target_busybox_skeleton/etc/init.d targe etc...
Date: Mon,  8 Dec 2008 06:52:16 -0800 (PST)	[thread overview]
Message-ID: <20081208145216.966853C7DF@busybox.net> (raw)

Author: jacmet
Date: 2008-12-08 06:52:16 -0800 (Mon, 08 Dec 2008)
New Revision: 24325

Log:
make the default etc/init.d/S40network compatible with msh

msh is currently the only good choice for uClinux but it doesn't
understands shell functions.  In this case there is nothing to gain
by using shell functions anyway.

Signed-off-by: Nicolas Pitre <nico@cam.org>

Modified:
   trunk/buildroot/target/generic/target_busybox_skeleton/etc/init.d/S40network
   trunk/buildroot/target/generic/target_skeleton/etc/init.d/S40network


Changeset:
Modified: trunk/buildroot/target/generic/target_busybox_skeleton/etc/init.d/S40network
===================================================================
--- trunk/buildroot/target/generic/target_busybox_skeleton/etc/init.d/S40network	2008-12-08 14:41:47 UTC (rev 24324)
+++ trunk/buildroot/target/generic/target_busybox_skeleton/etc/init.d/S40network	2008-12-08 14:52:16 UTC (rev 24325)
@@ -3,28 +3,18 @@
 # Start the network....
 #
 
-start() {
+case "$1" in
+  start)
  	echo "Starting network..."
 	/sbin/ifup -a
-}	
-stop() {
+	;;
+  stop)
 	echo -n "Stopping network..."
 	/sbin/ifdown -a
-}
-restart() {
-	stop
-	start
-}	
-
-case "$1" in
-  start)
-  	start
 	;;
-  stop)
-  	stop
-	;;
   restart|reload)
-  	restart
+	"$0" stop
+	"$0" start
 	;;
   *)
 	echo $"Usage: $0 {start|stop|restart}"

Modified: trunk/buildroot/target/generic/target_skeleton/etc/init.d/S40network
===================================================================
--- trunk/buildroot/target/generic/target_skeleton/etc/init.d/S40network	2008-12-08 14:41:47 UTC (rev 24324)
+++ trunk/buildroot/target/generic/target_skeleton/etc/init.d/S40network	2008-12-08 14:52:16 UTC (rev 24325)
@@ -3,28 +3,18 @@
 # Start the network....
 #
 
-start() {
+case "$1" in
+  start)
  	echo "Starting network..."
 	/sbin/ifup -a
-}	
-stop() {
+	;;
+  stop)
 	echo -n "Stopping network..."
 	/sbin/ifdown -a
-}
-restart() {
-	stop
-	start
-}	
-
-case "$1" in
-  start)
-  	start
 	;;
-  stop)
-  	stop
-	;;
   restart|reload)
-  	restart
+	"$0" stop
+	"$0" start
 	;;
   *)
 	echo $"Usage: $0 {start|stop|restart}"

                 reply	other threads:[~2008-12-08 14:52 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20081208145216.966853C7DF@busybox.net \
    --to=jacmet@uclibc.org \
    --cc=buildroot@busybox.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox