source: freewrt/package/busybox/files/network.init@ 606ee37

freewrt_1_0 freewrt_2_0
Last change on this file since 606ee37 was 09e4091, checked in by Waldemar Brodkorb <wbx@…>, 19 years ago
  • remove unsupported kernel 2.6 support
  • remove sdk completely
  • remove imagebuilder, we will use a shell script and a web interface instead of this
  • remove webif/webif2
  • remove braodcom-scripts and old nvram based setup

Results after discussion on the mailinglist. Dirk and Markus vote
for removing webif. I never wanted webif, because it is unmaintained
and does not work with ifupdown network configured systems.

FreeWRT goal is to be an appliance development kit, if someone
has time and fun to create a webbased wlan-dsl-router appliance,
which just works for home users, feel free to use FreeWRT as
base linux distribution.

git-svn-id: svn://www.freewrt.org/branches/freewrt_1_0@812 afb5a338-a214-0410-bd46-81f09a774fd1

  • Property mode set to 100644
File size: 364 bytes
Line 
1#!/bin/sh
2
3. /etc/rc.conf
4
5case $1 in
6autostart)
7 test x"$network" = x"NO" && exit 0
8 exec $0 start
9 ;;
10start)
11 [ -f /etc/network/interfaces ] || exit
12 ifup -a
13 ;;
14stop)
15 ifdown -a
16 ;;
17restart)
18 $0 stop
19 $0 start
20 ;;
21*)
22 echo "Usage: $0 {start | stop | restart}"
23 ;;
24esac
25exit $?
Note: See TracBrowser for help on using the repository browser.