File: network

package info (click to toggle)
nslu2-utils 0.10%2Br71-9
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 304 kB
  • ctags: 5
  • sloc: sh: 2,408; perl: 780; makefile: 56
file content (16 lines) | stat: -rw-r--r-- 556 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh
# bring up the network before boot, used to allow
# netconsole logging and NFS boot.  This runs out
# of flash, but that's ok because the script doesn't
# leave any process running.
#
# NOTE: /etc/default/functions defines ifup as a shell
# function!
. /etc/default/functions
#
# Now all the information for booting should be in the configuration
# file.  Config the loopback and network interfaces.
ifconfig lo 127.0.0.1 up
iface="$(config iface)"
test -n "$iface" && ifup "$iface"
# exit code is true only if the interface config has succeeded