Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
f7895ef2
Commit
f7895ef2
authored
Aug 05, 2020
by
Brendan Shanks
Committed by
Alexandre Julliard
Aug 05, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Generate "system boot information" SMBIOS table.
Signed-off-by:
Brendan Shanks
<
bshanks@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
734a7120
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
0 deletions
+21
-0
system.c
dlls/ntdll/unix/system.c
+21
-0
No files found.
dlls/ntdll/unix/system.c
View file @
f7895ef2
...
...
@@ -150,6 +150,13 @@ struct smbios_chassis
BYTE
contained_element_rec_length
;
};
struct
smbios_boot_info
{
struct
smbios_header
hdr
;
BYTE
reserved
[
6
];
BYTE
boot_status
[
10
];
};
#include "poppack.h"
/* Firmware table providers */
...
...
@@ -1274,6 +1281,7 @@ static NTSTATUS get_firmware_info( SYSTEM_FIRMWARE_TABLE_INFORMATION *sfti, ULON
struct
smbios_system
*
system
;
struct
smbios_board
*
board
;
struct
smbios_chassis
*
chassis
;
struct
smbios_boot_info
*
boot_info
;
struct
smbios_header
*
end_of_table
;
#define S(s) s, sizeof(s)
...
...
@@ -1316,6 +1324,9 @@ static NTSTATUS get_firmware_info( SYSTEM_FIRMWARE_TABLE_INFORMATION *sfti, ULON
*
required_len
+=
max
(
L
(
chassis_vendor_len
)
+
L
(
chassis_version_len
)
+
L
(
chassis_serial_len
)
+
L
(
chassis_asset_tag_len
)
+
1
,
2
);
*
required_len
+=
sizeof
(
struct
smbios_boot_info
);
*
required_len
+=
2
;
*
required_len
+=
sizeof
(
struct
smbios_header
);
*
required_len
+=
2
;
#undef L
...
...
@@ -1437,6 +1448,16 @@ static NTSTATUS get_firmware_info( SYSTEM_FIRMWARE_TABLE_INFORMATION *sfti, ULON
if
(
!
string_count
)
*
buffer
++
=
0
;
*
buffer
++
=
0
;
boot_info
=
(
struct
smbios_boot_info
*
)
buffer
;
boot_info
->
hdr
.
type
=
32
;
boot_info
->
hdr
.
length
=
sizeof
(
struct
smbios_boot_info
);
boot_info
->
hdr
.
handle
=
handle_count
++
;
memset
(
boot_info
->
reserved
,
0
,
sizeof
(
boot_info
->
reserved
));
memset
(
boot_info
->
boot_status
,
0
,
sizeof
(
boot_info
->
boot_status
));
/* no errors detected */
buffer
+=
sizeof
(
struct
smbios_boot_info
);
*
buffer
++
=
0
;
*
buffer
++
=
0
;
end_of_table
=
(
struct
smbios_header
*
)
buffer
;
end_of_table
->
type
=
127
;
end_of_table
->
length
=
sizeof
(
struct
smbios_header
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment