summaryrefslogtreecommitdiff
path: root/scripts/nfs
blob: 1225c4dedd7db7abf452e4fc9768b055fbd35b22 (plain)
1
2
3
4
5
6
7
8
9
10
11

# Paramter: Where the root should be mounted
mountroot ()
{
	ipconfig ${DEVICE}
	. /tmp/net-${DEVICE}.conf
	if [ "x${NFSROOT}" = "xauto" ]; then
		NFSROOT=${ROOTSERVER}:${ROOTPATH}
	fi
	nfsmount ${NFSROOT} ${rootmnt}
}