mirror of https://github.com/acidanthera/audk.git
45 lines
1.1 KiB
Plaintext
45 lines
1.1 KiB
Plaintext
///** @file
|
|
//
|
|
// Browser formset.
|
|
//
|
|
// Copyright (c) 2004 - 2011, Intel Corporation. All rights reserved.<BR>
|
|
// SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
//
|
|
//**/
|
|
|
|
#include <Guid/BdsHii.h>
|
|
|
|
#define BOOT_MANAGER_FORM_ID 0x1000
|
|
|
|
#define LABEL_BOOT_OPTION 0x00
|
|
#define LABEL_BOOT_OPTION_END 0x01
|
|
|
|
#define BOOT_MANAGER_CLASS 0x00
|
|
#define BOOT_MANAGER_SUBCLASS 0x00
|
|
|
|
formset
|
|
guid = BOOT_MANAGER_FORMSET_GUID,
|
|
title = STRING_TOKEN(STR_BM_BANNER),
|
|
help = STRING_TOKEN(STR_LAST_STRING),
|
|
classguid = BOOT_MANAGER_FORMSET_GUID,
|
|
|
|
form formid = BOOT_MANAGER_FORM_ID,
|
|
title = STRING_TOKEN(STR_BM_BANNER);
|
|
|
|
subtitle text = STRING_TOKEN(STR_LAST_STRING);
|
|
subtitle text = STRING_TOKEN(STR_BOOT_OPTION_BANNER);
|
|
subtitle text = STRING_TOKEN(STR_LAST_STRING);
|
|
|
|
//
|
|
// This is where we will dynamically add choices for the Boot Manager
|
|
//
|
|
label LABEL_BOOT_OPTION;
|
|
label LABEL_BOOT_OPTION_END;
|
|
|
|
subtitle text = STRING_TOKEN(STR_LAST_STRING);
|
|
subtitle text = STRING_TOKEN(STR_HELP_FOOTER);
|
|
|
|
endform;
|
|
|
|
endformset;
|