From c7a1ca0da3671dfd747313ca2c09f6c4c29c89ef Mon Sep 17 00:00:00 2001 From: James Gutbub Date: Sun, 6 Dec 2020 11:03:38 -0700 Subject: [PATCH] Add EXT4 to print in 'boot' command Since the EXT library we have in OS Loader supports 2, 3, and 4 it will help to reduce confusion for users who have noticed that only 2 and 3 are currently printed. Signed-off-by: James Gutbub --- BootloaderCommonPkg/Library/ShellLib/CmdBoot.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BootloaderCommonPkg/Library/ShellLib/CmdBoot.c b/BootloaderCommonPkg/Library/ShellLib/CmdBoot.c index 2527f5fe..43de28be 100644 --- a/BootloaderCommonPkg/Library/ShellLib/CmdBoot.c +++ b/BootloaderCommonPkg/Library/ShellLib/CmdBoot.c @@ -200,7 +200,7 @@ GetBootDeviceInfo ( } do { - ShellPrint (L"Enter FsType (FAT (0x%X), EXT2/3 (0x%X), Auto (0x%X), RAW (0x%X))\n", + ShellPrint (L"Enter FsType (FAT (0x%X), EXT2/3/4 (0x%X), Auto (0x%X), RAW (0x%X))\n", EnumFileSystemTypeFat, EnumFileSystemTypeExt2, EnumFileSystemTypeAuto, EnumFileSystemMax); ShellPrint (L"(default 0x%X) ", CurrOption->FsType);