Skip to content

Commit bd4c6a8

Browse files
Merge pull request #1677 from fox0/deprecated
uefi: deprecated since 0.36.0
2 parents b171db7 + e69b942 commit bd4c6a8

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

uefi/src/table/cfg.rs

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -88,35 +88,35 @@ impl ConfigTableEntry {
8888

8989
/// Entry pointing to the old ACPI 1 RSDP.
9090
#[deprecated(
91-
since = "0.35.1",
91+
since = "0.36.0",
9292
note = "please use `ConfigTableEntry::ACPI_GUID` instead"
9393
)]
9494
pub const ACPI_GUID: Guid = ConfigTableEntry::ACPI_GUID;
9595

9696
/// Entry pointing to the ACPI 2 RSDP.
9797
#[deprecated(
98-
since = "0.35.1",
98+
since = "0.36.0",
9999
note = "please use `ConfigTableEntry::ACPI2_GUID` instead"
100100
)]
101101
pub const ACPI2_GUID: Guid = ConfigTableEntry::ACPI2_GUID;
102102

103103
/// Entry pointing to the SMBIOS 1.0 table.
104104
#[deprecated(
105-
since = "0.35.1",
105+
since = "0.36.0",
106106
note = "please use `ConfigTableEntry::SMBIOS_GUID` instead"
107107
)]
108108
pub const SMBIOS_GUID: Guid = ConfigTableEntry::SMBIOS_GUID;
109109

110110
/// Entry pointing to the SMBIOS 3.0 table.
111111
#[deprecated(
112-
since = "0.35.1",
112+
since = "0.36.0",
113113
note = "please use `ConfigTableEntry::SMBIOS3_GUID` instead"
114114
)]
115115
pub const SMBIOS3_GUID: Guid = ConfigTableEntry::SMBIOS3_GUID;
116116

117117
/// Entry pointing to the EFI System Resource table (ESRT).
118118
#[deprecated(
119-
since = "0.35.1",
119+
since = "0.36.0",
120120
note = "please use `ConfigTableEntry::ESRT_GUID` instead"
121121
)]
122122
pub const ESRT_GUID: Guid = ConfigTableEntry::ESRT_GUID;
@@ -126,7 +126,7 @@ pub const ESRT_GUID: Guid = ConfigTableEntry::ESRT_GUID;
126126
/// The properties table is used to provide additional info
127127
/// about the UEFI implementation.
128128
#[deprecated(
129-
since = "0.35.1",
129+
since = "0.36.0",
130130
note = "please use `ConfigTableEntry::PROPERTIES_TABLE_GUID` instead"
131131
)]
132132
pub const PROPERTIES_TABLE_GUID: Guid = ConfigTableEntry::PROPERTIES_TABLE_GUID;
@@ -162,49 +162,49 @@ bitflags! {
162162
///
163163
/// Most OS loaders or applications should not mess with this.
164164
#[deprecated(
165-
since = "0.35.1",
165+
since = "0.36.0",
166166
note = "please use `ConfigTableEntry::HAND_OFF_BLOCK_LIST_GUID` instead"
167167
)]
168168
pub const HAND_OFF_BLOCK_LIST_GUID: Guid = ConfigTableEntry::HAND_OFF_BLOCK_LIST_GUID;
169169

170170
/// Table used in the early boot environment to record memory ranges.
171171
#[deprecated(
172-
since = "0.35.1",
172+
since = "0.36.0",
173173
note = "please use `ConfigTableEntry::MEMORY_TYPE_INFORMATION_GUID` instead"
174174
)]
175175
pub const MEMORY_TYPE_INFORMATION_GUID: Guid = ConfigTableEntry::MEMORY_TYPE_INFORMATION_GUID;
176176

177177
/// Used to identify Hand-off Blocks which store
178178
/// status codes reported during the pre-UEFI environment.
179179
#[deprecated(
180-
since = "0.35.1",
180+
since = "0.36.0",
181181
note = "please use `ConfigTableEntry::MEMORY_STATUS_CODE_RECORD_GUID` instead"
182182
)]
183183
pub const MEMORY_STATUS_CODE_RECORD_GUID: Guid = ConfigTableEntry::MEMORY_STATUS_CODE_RECORD_GUID;
184184

185185
/// Table which provides Driver eXecution Environment services.
186186
#[deprecated(
187-
since = "0.35.1",
187+
since = "0.36.0",
188188
note = "please use `ConfigTableEntry::DXE_SERVICES_GUID` instead"
189189
)]
190190
pub const DXE_SERVICES_GUID: Guid = ConfigTableEntry::DXE_SERVICES_GUID;
191191

192192
/// LZMA-compressed filesystem.
193193
#[deprecated(
194-
since = "0.35.1",
194+
since = "0.36.0",
195195
note = "please use `ConfigTableEntry::LZMA_COMPRESS_GUID` instead"
196196
)]
197197
pub const LZMA_COMPRESS_GUID: Guid = ConfigTableEntry::LZMA_COMPRESS_GUID;
198198

199199
/// A custom compressed filesystem used by the Tiano UEFI implementation.
200200
#[deprecated(
201-
since = "0.35.1",
201+
since = "0.36.0",
202202
note = "please use `ConfigTableEntry::TIANO_COMPRESS_GUID` instead"
203203
)]
204204
pub const TIANO_COMPRESS_GUID: Guid = ConfigTableEntry::TIANO_COMPRESS_GUID;
205205
/// Pointer to the debug image info table.
206206
#[deprecated(
207-
since = "0.35.1",
207+
since = "0.36.0",
208208
note = "please use `ConfigTableEntry::DEBUG_IMAGE_INFO_GUID` instead"
209209
)]
210210
pub const DEBUG_IMAGE_INFO_GUID: Guid = ConfigTableEntry::DEBUG_IMAGE_INFO_GUID;

0 commit comments

Comments
 (0)