Add a note to the code that generates the pir, mptable, smbios, and smbios tables that no new changes are expected. Going forward, it is expected that if any changes are needed to these bios tables that SeaBIOS will get the tables passed in from upstream.
Signed-off-by: Kevin O'Connor kevin@koconnor.net --- src/fw/acpi.c | 1 + src/fw/mptable.c | 1 + src/fw/pirtable.c | 1 + src/fw/smbios.c | 1 + 4 files changed, 4 insertions(+)
diff --git a/src/fw/acpi.c b/src/fw/acpi.c index 70284ab..5ad2eec 100644 --- a/src/fw/acpi.c +++ b/src/fw/acpi.c @@ -1,4 +1,5 @@ // Support for generating ACPI tables (on emulators) +// DO NOT ADD NEW FEATURES HERE. (See paravirt.c / biostables.c instead.) // // Copyright (C) 2008-2010 Kevin O'Connor kevin@koconnor.net // Copyright (C) 2006 Fabrice Bellard diff --git a/src/fw/mptable.c b/src/fw/mptable.c index 59c2a3e..8e01e00 100644 --- a/src/fw/mptable.c +++ b/src/fw/mptable.c @@ -1,4 +1,5 @@ // MPTable generation (on emulators) +// DO NOT ADD NEW FEATURES HERE. (See paravirt.c / biostables.c instead.) // // Copyright (C) 2008-2010 Kevin O'Connor kevin@koconnor.net // Copyright (C) 2006 Fabrice Bellard diff --git a/src/fw/pirtable.c b/src/fw/pirtable.c index 44fc71b..a494408 100644 --- a/src/fw/pirtable.c +++ b/src/fw/pirtable.c @@ -1,4 +1,5 @@ // PIR table generation (for emulators) +// DO NOT ADD NEW FEATURES HERE. (See paravirt.c / biostables.c instead.) // // Copyright (C) 2008 Kevin O'Connor kevin@koconnor.net // Copyright (C) 2002 MandrakeSoft S.A. diff --git a/src/fw/smbios.c b/src/fw/smbios.c index 6d580c2..0ac9ff5 100644 --- a/src/fw/smbios.c +++ b/src/fw/smbios.c @@ -1,4 +1,5 @@ // smbios table generation (on emulators) +// DO NOT ADD NEW FEATURES HERE. (See paravirt.c / biostables.c instead.) // // Copyright (C) 2008,2009 Kevin O'Connor kevin@koconnor.net // Copyright (C) 2006 Fabrice Bellard