Boot.vfi 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. //
  2. //
  3. // Copyright (c) 2004 - 2014, Intel Corporation. All rights reserved.<BR>
  4. //
  5. // SPDX-License-Identifier: BSD-2-Clause-Patent
  6. //
  7. //
  8. //
  9. // Module Name:
  10. //
  11. // Boot.vfi
  12. //
  13. // Abstract:
  14. //
  15. // Driver Setup formset.
  16. //
  17. // Revision History:
  18. //
  19. // --*/
  20. form formid = BOOT_CONFIGURATION_FORM_ID,
  21. title = STRING_TOKEN(STR_BOOT_CONFIGURATION_TITLE);
  22. oneof varid = Setup.FastBoot,
  23. prompt = STRING_TOKEN(STR_FAST_BOOT_PROMPT),
  24. help = STRING_TOKEN(STR_FAST_BOOT_HELP),
  25. option text = STRING_TOKEN(STR_DISABLE), value=0, flags= DEFAULT | RESET_REQUIRED;
  26. option text = STRING_TOKEN(STR_ENABLE), value=1, flags= MANUFACTURING | RESET_REQUIRED;
  27. endoneof;
  28. oneof varid = Setup.SecureBoot,
  29. prompt = STRING_TOKEN(STR_SECURITY_BOOT_PROMPT),
  30. help = STRING_TOKEN(STR_SECURITY_BOOT_HELP),
  31. option text = STRING_TOKEN(STR_DISABLE), value=0, flags= DEFAULT | MANUFACTURING | RESET_REQUIRED;
  32. option text = STRING_TOKEN(STR_ENABLE), value=1, flags= RESET_REQUIRED;
  33. endoneof;
  34. oneof varid = Setup.QuietBoot,
  35. prompt = STRING_TOKEN(STR_QUIETBOOT_PROMPT),
  36. help = STRING_TOKEN(STR_QUIETBOOT_HELP),
  37. option text = STRING_TOKEN(STR_DISABLE), value=0, flags=DEFAULT | MANUFACTURING | RESET_REQUIRED;
  38. option text = STRING_TOKEN(STR_ENABLE), value=1, flags=0 | RESET_REQUIRED;
  39. endoneof;
  40. oneof varid = Setup.LogBootTime,
  41. prompt = STRING_TOKEN(STR_LOG_BOOT_TIME_PROMPT),
  42. help = STRING_TOKEN(STR_LOG_BOOT_TIME_HELP),
  43. option text = STRING_TOKEN(STR_DISABLE), value = 0, flags = 0 | RESET_REQUIRED;
  44. option text = STRING_TOKEN(STR_ENABLE), value = 1, flags = DEFAULT | MANUFACTURING | RESET_REQUIRED;
  45. endoneof;
  46. suppressif ideqval Setup.LogBootTime == 0x00;
  47. text
  48. help = STRING_TOKEN(STR_NULL_STRING),
  49. text = STRING_TOKEN(STR_LOG_BOOT_TIME_RECORD),
  50. text = STRING_TOKEN(STR_LOG_BOOT_TIME_VALUE),
  51. flags = 0,
  52. key = 0;
  53. endif;
  54. endform;