diff options
author | Daniel Baumann <daniel@debian.org> | 2008-02-24 13:41:50 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 18:36:07 +0100 |
commit | 63a5d0c7a4bedae3162a4a1bc26332d6559ca7e4 (patch) | |
tree | 652a6a9e737c64f97c7cb736ef05b6cbaa246767 /functions | |
parent | b0c38d67e23c0fbbc0eb6264f81ed7594623cea5 (diff) | |
download | vyos-live-build-63a5d0c7a4bedae3162a4a1bc26332d6559ca7e4.tar.gz vyos-live-build-63a5d0c7a4bedae3162a4a1bc26332d6559ca7e4.zip |
Improving etch compat warnings.
Diffstat (limited to 'functions')
-rwxr-xr-x | functions/defaults.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/functions/defaults.sh b/functions/defaults.sh index 2640d523b..dd14daccc 100755 --- a/functions/defaults.sh +++ b/functions/defaults.sh @@ -632,6 +632,10 @@ Check_defaults () Echo_warning "You selected LH_DISTRIBUTION='etch' and LH_INITRAMFS='live-initramfs'" Echo_warning "This is a possible unsafe configuration as live-initramfs is not" Echo_warning "part of the etch distribution." + Echo_warning "Either make sure that live-initramfs is installable (e.g. through setting up" + Echo_warning "etch-backports repository as third-party source or putting a valid live-initramfs" + Echo_warning "deb into config/chroot_local-packages) or switch change your config to etch" + Echo_warning "default (casper)." fi if [ "${LH_UNION_FILESYSTEM}" = "aufs" ] @@ -639,6 +643,11 @@ Check_defaults () Echo_warning "You selected LH_DISTRIBUTION='etch' and LH_UNION_FILESYSTEM='aufs'" Echo_warning "This is a possible unsafe configuration as aufs is not" Echo_warning "part of the etch distribution." + Echo_warning "Either make sure that aufs modules for your kernel are installable (e.g. through" + Echo_warning "setting up etch-backports repository as third-party source or putting a valid" + Echo_warning "aufs-modules deb into config/chroot_local-packages) or switch change your config" + Echo_warning "to etch default (unionfs)." + fi fi |