From 36161c180c97e367e00fa8f3dd53f236568d8321 Mon Sep 17 00:00:00 2001 From: Coly Li Date: Thu, 23 Aug 2007 15:09:03 +0800 Subject: [PATCH] mke2fs: remove masix support This patch remove masix support from mke2fs. Signed-off-by: Coly Li --- misc/mke2fs.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/misc/mke2fs.c b/misc/mke2fs.c index 98a4957..0515f89 100644 --- a/misc/mke2fs.c +++ b/misc/mke2fs.c @@ -739,8 +739,6 @@ static int set_os(struct ext2_super_block *sb, char *os) sb->s_creator_os = EXT2_OS_LINUX; else if (strcasecmp(os, "GNU") == 0 || strcasecmp(os, "hurd") == 0) sb->s_creator_os = EXT2_OS_HURD; - else if (strcasecmp(os, "masix") == 0) - sb->s_creator_os = EXT2_OS_MASIX; else if (strcasecmp(os, "freebsd") == 0) sb->s_creator_os = EXT2_OS_FREEBSD; else if (strcasecmp(os, "lites") == 0) -- 1.8.3.1