summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErwan Velu <erwanaliasr1@gmail.com>2011-01-31 22:28:58 +0100
committerErwan Velu <erwanaliasr1@gmail.com>2011-01-31 22:28:58 +0100
commitdac7f8c2cc9213d68932195ae22c86faf250614a (patch)
tree841fd8f13b482b80c4dc2b0b37f2ca57afed6742
parentd27025ba52145c1b4119a8d5920137ffb35bc5f4 (diff)
downloadsyslinux-dac7f8c2cc9213d68932195ae22c86faf250614a.tar.gz
hdt: Adding BOOT support
-rw-r--r--com32/hdt/hdt-cli-acpi.c3
-rw-r--r--com32/hdt/hdt-menu-acpi.c3
2 files changed, 6 insertions, 0 deletions
diff --git a/com32/hdt/hdt-cli-acpi.c b/com32/hdt/hdt-cli-acpi.c
index 6f752f12..1b608c26 100644
--- a/com32/hdt/hdt-cli-acpi.c
+++ b/com32/hdt/hdt-cli-acpi.c
@@ -118,6 +118,9 @@ void main_show_acpi(int argc __unused, char **argv __unused,
if (hardware->acpi.slic.valid)
show_header(hardware->acpi.slic.address, &hardware->acpi.slic.header);
+ if (hardware->acpi.boot.valid)
+ show_header(hardware->acpi.boot.address, &hardware->acpi.boot.header);
+
/* FACS isn't having the same headers, let's use a dedicated rendering */
if (hardware->acpi.facs.valid) {
s_facs *fa = &hardware->acpi.facs;
diff --git a/com32/hdt/hdt-menu-acpi.c b/com32/hdt/hdt-menu-acpi.c
index 2c1e1620..16bcf73a 100644
--- a/com32/hdt/hdt-menu-acpi.c
+++ b/com32/hdt/hdt-menu-acpi.c
@@ -98,6 +98,9 @@ static void compute_acpi_tables(struct s_my_menu *menu,
if (hardware->acpi.slic.valid)
compute_table(menu,hardware->acpi.slic.address, &hardware->acpi.slic.header);
+ if (hardware->acpi.boot.valid)
+ compute_table(menu,hardware->acpi.boot.address, &hardware->acpi.boot.header);
+
/* FACS isn't having the same headers, let's use a dedicated rendering */
if (hardware->acpi.facs.valid) {
s_facs *fa = &hardware->acpi.facs;