#!/bin/sh

source ${CONF_DIR}/config;
INET_IF="eth0";

# We start the network only if necessary
if [ "X${CONFIG_ROOTFS_DEVICE_NFS}" != "Xy" ]; then
	exit 0;
fi

${HELPERS_DIR}/network start;

exit $?
