diff options
author | Jesse Hathaway <jesse@mbuki-mvuki.org> | 2007-10-30 14:17:16 -0400 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 18:22:28 +0100 |
commit | 64333346c2073e672e10151bc616d0649ac3b91f (patch) | |
tree | 96072f2e8ed0dbae13979afda974c18d825c63e4 /helpers/lh_binary_yaboot | |
parent | b7b7cd4c8193041eff058eaa2bf39c5a8bf32458 (diff) | |
download | live-build-64333346c2073e672e10151bc616d0649ac3b91f.zip live-build-64333346c2073e672e10151bc616d0649ac3b91f.tar.gz |
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.
Diffstat (limited to 'helpers/lh_binary_yaboot')
-rwxr-xr-x | helpers/lh_binary_yaboot | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/helpers/lh_binary_yaboot b/helpers/lh_binary_yaboot index 93fc0bb..4f767b7 100755 --- a/helpers/lh_binary_yaboot +++ b/helpers/lh_binary_yaboot @@ -186,6 +186,12 @@ then LH_BOOTAPPEND_LIVE="${LH_BOOTAPPEND_LIVE} union=${LH_UNION_FILESYSTEM}" fi +if [ -n "${LH_NET_COW_PATH}" ] +then + Echo_error "Net cow not yet supported on yaboot" + exit 1 +fi + if [ "${LH_EXPOSED_ROOT}" != "disabled" ] then LH_BOOTAPPEND_LIVE="${LH_BOOTAPPEND_LIVE} exposedroot" |