Loading sources/target_skeleton/etc/init.d/S40network 0 → 100755 +35 −0 Original line number Diff line number Diff line #!/bin/sh # # Start the network.... # start() { echo "Starting network..." /sbin/ifup -a } stop() { echo -n "Stopping network..." /sbin/ifdown -a } restart() { stop start } case "$1" in start) start ;; stop) stop ;; restart|reload) restart ;; *) echo $"Usage: $0 {start|stop|restart}" exit 1 esac exit $? sources/target_skeleton/etc/network/interfaces 0 → 100644 +4 −0 Original line number Diff line number Diff line # Configure Loopback auto lo iface lo inet loopback Loading
sources/target_skeleton/etc/init.d/S40network 0 → 100755 +35 −0 Original line number Diff line number Diff line #!/bin/sh # # Start the network.... # start() { echo "Starting network..." /sbin/ifup -a } stop() { echo -n "Stopping network..." /sbin/ifdown -a } restart() { stop start } case "$1" in start) start ;; stop) stop ;; restart|reload) restart ;; *) echo $"Usage: $0 {start|stop|restart}" exit 1 esac exit $?
sources/target_skeleton/etc/network/interfaces 0 → 100644 +4 −0 Original line number Diff line number Diff line # Configure Loopback auto lo iface lo inet loopback