aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoursoir <chat@joursoir.net>2021-12-12 15:52:58 +0300
committerJoursoir <chat@joursoir.net>2021-12-12 15:52:58 +0300
commit8d677d48f105886f5cb58eeba039b0398906f37c (patch)
treec05146d09cf891a78d04ccdbce5ef2f0aa8f6c2c
parent635f388460372d954026fe0d71d64f6460ecab43 (diff)
downloadufm-8d677d48f105886f5cb58eeba039b0398906f37c.tar.gz
ufm-8d677d48f105886f5cb58eeba039b0398906f37c.tar.bz2
ufm-8d677d48f105886f5cb58eeba039b0398906f37c.zip
ufm: add function for command 'mkdir' in the table
-rw-r--r--Library/UefiShellUfmCommandLib/UefiShellUfmCommandLib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/UefiShellUfmCommandLib/UefiShellUfmCommandLib.c b/Library/UefiShellUfmCommandLib/UefiShellUfmCommandLib.c
index 95d4989..d84eb21 100644
--- a/Library/UefiShellUfmCommandLib/UefiShellUfmCommandLib.c
+++ b/Library/UefiShellUfmCommandLib/UefiShellUfmCommandLib.c
@@ -25,7 +25,7 @@ STATIC CONST struct shortcut shortcuts[] = {
{ACTION_CMD, {SCAN_F3, 0x0}, hexedit, L"3", L"Hex"},
{ACTION_CMD, {SCAN_F4, 0x0}, do_nothing, L"4", L"Copy"},
{ACTION_CMD, {SCAN_F5, 0x0}, do_nothing, L"5", L"RenMov"},
- {ACTION_CMD, {SCAN_F6, 0x0}, do_nothing, L"6", L"Mkdir"},
+ {ACTION_CMD, {SCAN_F6, 0x0}, mkdir, L"6", L"Mkdir"},
{ACTION_CMD, {SCAN_F7, 0x0}, do_nothing, L"7", L"Rm"},
{ACTION_CMD, {SCAN_F8, 0x0}, do_nothing, L"8", L""},
{ACTION_CMD, {SCAN_F9, 0x0}, show_filesystems, L"9", L"FSs"},