Hi, NVIDIA team,
Is there any way to close or hide UEFI menu on JP5.1.1? I expect that the users can not see prompt message to enter UEFI menu in boot process.
Hi fa1053,
For Jetpack 5.1.1, please download the uefi source with branch r35.3.1-updates
as following.
$ edkrepo clone nvidia-uefi-r35.3.1-updates NVIDIA-Platforms r35.3.1-updates
You could refer to the following patch to disable the register for hotkey.
--- a/Silicon/NVIDIA/Library/PlatformBootManagerLib/PlatformBm.c
+++ b/Silicon/NVIDIA/Library/PlatformBootManagerLib/PlatformBm.c
@@ -1193,7 +1193,7 @@ PlatformBootManagerBeforeConsole (
//
// Register platform-specific boot options and keyboard shortcuts.
//
- PlatformRegisterOptionsAndKeys ();
+ //PlatformRegisterOptionsAndKeys ();
//
// Register EnrollDefaultKeysApp as a SysPrep Option.
@@ -1546,7 +1546,7 @@ PlatformBootManagerAfterConsole (
//
// Display system and hotkey information after console is ready.
//
- DisplaySystemAndHotkeyInformation ();
+ //DisplaySystemAndHotkeyInformation ();
Thanks for your reply@KevinFFF.
I noticed that UEFI menu has more options than the guide intruducing, which consists of the LOGO, boot order, boot mode and change DTB.
Before this, I used the tool to change boot logo.
I want to ask a further question, how to close a certain label in UEFI menu. For example, I want to close label “RAM Disk Configuration” in “Device Manager”, how to accomplish this?
Do you mean that you want to remove “RAM Disk Configuration” in UEFI menu?
After the previous modification, I think you might have no chance to enter into UEFI menu.
Do you mean that you want to remove “RAM Disk Configuration” in UEFI menu?
Yes.
After the previous modification, I think you might have no chance to enter into UEFI menu.
Sorry for this misunderstanding. This is another quetion, my product manager think that maybe we can try to close part labels of UEFI menu.
You could try to remove the following lines
Thank you
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.