mirror of
https://github.com/tailix/libkernaux.git
synced 2025-02-24 15:55:41 -05:00
Print Multiboot 2 SMBIOS tables tag
This commit is contained in:
parent
e9701020ac
commit
2d8d4dbd6c
1 changed files with 6 additions and 1 deletions
|
@ -224,7 +224,12 @@ void KernAux_Multiboot2_TagBase_print(
|
||||||
break;
|
break;
|
||||||
case KERNAUX_MULTIBOOT2_TAGTYPE_SMBIOS_TABLES:
|
case KERNAUX_MULTIBOOT2_TAGTYPE_SMBIOS_TABLES:
|
||||||
{
|
{
|
||||||
// TODO: print
|
const struct KernAux_Multiboot2_Tag_SMBIOSTables *const tag_smbios =
|
||||||
|
(struct KernAux_Multiboot2_Tag_SMBIOSTables*)tag_base;
|
||||||
|
|
||||||
|
print(" major: %u\n", tag_smbios->major);
|
||||||
|
print(" minor: %u\n", tag_smbios->minor);
|
||||||
|
print(" reserved1: %u\n", tag_smbios->reserved1);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case KERNAUX_MULTIBOOT2_TAGTYPE_ACPI_OLD_RSDP:
|
case KERNAUX_MULTIBOOT2_TAGTYPE_ACPI_OLD_RSDP:
|
||||||
|
|
Loading…
Add table
Reference in a new issue