[syslinux:master] hdt: Adding SLIC support

syslinux-bot for Erwan Velu erwanaliasr1 at gmail.com
Sun Feb 6 14:08:06 PST 2011


Commit-ID:  b60ffd9cf1ce6ec3ebab01764d8f8e82aa4edd9e
Gitweb:     http://syslinux.zytor.com/commit/b60ffd9cf1ce6ec3ebab01764d8f8e82aa4edd9e
Author:     Erwan Velu <erwanaliasr1 at gmail.com>
AuthorDate: Mon, 31 Jan 2011 22:26:50 +0100
Committer:  Erwan Velu <erwanaliasr1 at gmail.com>
CommitDate: Mon, 31 Jan 2011 22:26:50 +0100

hdt: Adding SLIC support



---
 com32/hdt/hdt-cli-acpi.c  |    3 +++
 com32/hdt/hdt-menu-acpi.c |    3 +++
 2 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/com32/hdt/hdt-cli-acpi.c b/com32/hdt/hdt-cli-acpi.c
index 46f2d4e..6f752f1 100644
--- a/com32/hdt/hdt-cli-acpi.c
+++ b/com32/hdt/hdt-cli-acpi.c
@@ -115,6 +115,9 @@ void main_show_acpi(int argc __unused, char **argv __unused,
     if (hardware->acpi.mcfg.valid)
 	show_header(hardware->acpi.mcfg.address, &hardware->acpi.mcfg.header);
 
+    if (hardware->acpi.slic.valid)
+	show_header(hardware->acpi.slic.address, &hardware->acpi.slic.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 3cd8e37..2c1e162 100644
--- a/com32/hdt/hdt-menu-acpi.c
+++ b/com32/hdt/hdt-menu-acpi.c
@@ -95,6 +95,9 @@ static void compute_acpi_tables(struct s_my_menu *menu,
     if (hardware->acpi.mcfg.valid)
         compute_table(menu,hardware->acpi.mcfg.address, &hardware->acpi.mcfg.header);
     
+    if (hardware->acpi.slic.valid)
+        compute_table(menu,hardware->acpi.slic.address, &hardware->acpi.slic.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;



More information about the Syslinux-commits mailing list