From: richardretanubun Date: Mon, 6 Oct 2008 20:10:53 +0000 (-0400) Subject: CONFIG_EFI_PARTITION: Added support for EFI partition in cmd_ext2fs.c X-Git-Tag: v2009.01-rc1~157^2^2~48 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=fbd85ad65dd9c98f36ed3fb12fe41f381b7d4794;p=oweals%2Fu-boot.git CONFIG_EFI_PARTITION: Added support for EFI partition in cmd_ext2fs.c Added support for CONFIG_EFI_PARTITION to ext2 commands. Signed-off-by: Richard Retanubun --- diff --git a/common/cmd_ext2.c b/common/cmd_ext2.c index f569406432..cfd4f645ec 100644 --- a/common/cmd_ext2.c +++ b/common/cmd_ext2.c @@ -44,8 +44,8 @@ #include #endif -#ifndef CONFIG_DOS_PARTITION -#error DOS partition support must be selected +#if !defined(CONFIG_DOS_PARTITION) && !defined(CONFIG_EFI_PARTITION) +#error DOS or EFI partition support must be selected #endif /* #define EXT2_DEBUG */