From 64333346c2073e672e10151bc616d0649ac3b91f Mon Sep 17 00:00:00 2001 From: Jesse Hathaway Date: Tue, 30 Oct 2007 14:17:16 -0400 Subject: add new option to mount cow device on nfs volume At the moment this only works with the root volume on nfs as well. If we add a switch to configure the network early in the boot process then this option could be made available for other root mediums. This option works reliably on the latest kernel 2.6.23.1 On earlier kernels I experienced frequent oopses. --- functions/defaults.sh | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) (limited to 'functions/defaults.sh') diff --git a/functions/defaults.sh b/functions/defaults.sh index 30e40621c..c389a6c52 100755 --- a/functions/defaults.sh +++ b/functions/defaults.sh @@ -540,24 +540,27 @@ Set_defaults () LH_MEMTEST="${LH_MEMTEST:-memtest86+}" # Setting netboot filesystem - LH_NET_FILESYSTEM="${LH_NET_FILESYSTEM:-nfs}" + LH_NET_ROOT_FILESYSTEM="${LH_NET_ROOT_FILESYSTEM:-nfs}" # Setting netboot server path - if [ -z "${LH_NET_PATH}" ] + if [ -z "${LH_NET_ROOT_PATH}" ] then case "${LH_MODE}" in debian) - LH_NET_PATH="/srv/debian-live" + LH_NET_ROOT_PATH="/srv/debian-live" ;; debian-edu) - LH_NET_PATH="/srv/debian-edu-live" + LH_NET_ROOT_PATH="/srv/debian-edu-live" ;; esac fi # Setting netboot server address - LH_NET_SERVER="${LH_NET_SERVER:-192.168.1.1}" + LH_NET_ROOT_SERVER="${LH_NET_ROOT_SERVER:-192.168.1.1}" + + # Setting net cow filesystem + LH_NET_COW_FILESYSTEM="${LH_NET_COW_FILESYSTEM:-nfs}" # Setting syslinux configuration file # LH_SYSLINUX_CFG -- cgit v1.2.3