diff options
author | Otavio Salvador <otavio@ossystems.com.br> | 2008-02-20 21:09:36 -0300 |
---|---|---|
committer | Otavio Salvador <otavio@ossystems.com.br> | 2008-02-20 21:15:50 -0300 |
commit | 774aebab8447278be64bb4ffb9d2509e3e698581 (patch) | |
tree | 0705547e9dc8cb764d8a2a0ec233544680939d4b /helpers | |
parent | 5cdd8df09110f418bbdcd1f1a233888de3bf7cb1 (diff) | |
download | vyos-live-build-774aebab8447278be64bb4ffb9d2509e3e698581.tar.gz vyos-live-build-774aebab8447278be64bb4ffb9d2509e3e698581.zip |
lh_binary_encryption: add jffs2 as not supported filesystem
Diffstat (limited to 'helpers')
-rwxr-xr-x | helpers/lh_binary_encryption | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/helpers/lh_binary_encryption b/helpers/lh_binary_encryption index 4d9a0e7f2..659174914 100755 --- a/helpers/lh_binary_encryption +++ b/helpers/lh_binary_encryption @@ -68,6 +68,11 @@ case "${LH_CHROOT_FILESYSTEM}" in ROOTFS="ext2" ;; + jffs2) + Echo_warning "encryption not yet supported on jffs2 filesystem." + exit 0 + ;; + plain) Echo_warning "encryption not supported on plain filesystem." exit 0 |