From 9f5b2d64071ab8416487b5fc265908a511a9bf68 Mon Sep 17 00:00:00 2001 From: Adam Coldrick Date: Thu, 5 Feb 2015 13:51:23 +0000 Subject: Add support for unionfs Overlayfs is new in version 3.18 of the kernel, so add support for a different implementation of a union/overlay filesystem in order to allow morph to work on older kernels. --- morphlib/app.py | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'morphlib/app.py') diff --git a/morphlib/app.py b/morphlib/app.py index 0c87f814..5b645012 100644 --- a/morphlib/app.py +++ b/morphlib/app.py @@ -121,6 +121,13 @@ class Morph(cliapp.Application): metavar='URL', default=None, group=group_advanced) + self.settings.string(['union-filesystem'], + 'filesystem used to provide "union filesystem" ' + 'functionality when building and deploying. ' + 'Only "overlayfs" and "unionfs" are supported ' + 'at this time.', + default='overlayfs', + group=group_advanced) group_build = 'Build Options' self.settings.integer(['max-jobs'], -- cgit v1.2.1