summaryrefslogtreecommitdiff
path: root/packages/openprotium-init/files/boot/network
diff options
context:
space:
mode:
Diffstat (limited to 'packages/openprotium-init/files/boot/network')
-rw-r--r--packages/openprotium-init/files/boot/network16
1 files changed, 0 insertions, 16 deletions
diff --git a/packages/openprotium-init/files/boot/network b/packages/openprotium-init/files/boot/network
deleted file mode 100644
index 599250e744..0000000000
--- a/packages/openprotium-init/files/boot/network
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/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