From a996642d95dd8938b3dbaf9876b1762879e2dcaf Mon Sep 17 00:00:00 2001 From: Antti Kantee Date: Thu, 25 Jun 2015 20:16:00 +0000 Subject: [PATCH] detect ext2 as a file system type I still think the kernel should just try to mount all supported file system types ... --- app-tools/rumprun | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app-tools/rumprun b/app-tools/rumprun index 81eb482d3..b4388b0db 100755 --- a/app-tools/rumprun +++ b/app-tools/rumprun @@ -244,6 +244,10 @@ detect_fstype () TYPE=unknown fi case ${TYPE} in + ext2) + echo ext2fs + return 0 + ;; ufs) echo ffs return 0