diff options
author | Paul Sokolovsky <pmiscml@gmail.com> | 2007-03-10 20:18:42 +0000 |
---|---|---|
committer | Paul Sokolovsky <pmiscml@gmail.com> | 2007-03-10 20:18:42 +0000 |
commit | 7f326402389de854bf6a0fe1f6c835502d93eeca (patch) | |
tree | 88755bbee8e49c1196d8909ff467745268ad3fe5 /packages/foonas-init/files/boot/network | |
parent | 2fb45b3e70da7b793a15983c45750321091a92dc (diff) | |
parent | ba1212299e2a4b2b99c1d058660273eb92327490 (diff) |
merge of '90a304fce9cf13425fbf98afbbbec3593382bdf4'
and 'd51040bef3f49c55b9af42502e1891181802e97a'
Diffstat (limited to 'packages/foonas-init/files/boot/network')
-rw-r--r-- | packages/foonas-init/files/boot/network | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/packages/foonas-init/files/boot/network b/packages/foonas-init/files/boot/network new file mode 100644 index 0000000000..599250e744 --- /dev/null +++ b/packages/foonas-init/files/boot/network @@ -0,0 +1,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 |