building acpi module with ACPI_DEBUG option

From: Don Lewis <truckman_at_FreeBSD.org>
Date: Sat, 10 Jan 2004 17:06:02 -0800 (PST)
If you build a kernel with the ACPI_DEBUG option, this option gets
passed to the module build in opt_acpi.h, but the kernel panics on boot
because the symbol AcpiDmDumpMethodInfo is undefined in the module.  The
problem is that the Makefile for the acpi module needs to know whether
ACPI_DEBUG is defined because it wants to append some more files to SRCS
in this case.  One of the extra source files contains the definition of
the undefined symbol.

.if ACPI_DEBUG
CFLAGS+=-DACPI_DEBUG
SRCS+=  ${DBSRC}
opt_ddb.h: Makefile
        echo "#define DDB 1" > ${.TARGET}
.else
opt_ddb.h: Makefile
        echo -n > ${.TARGET}
.endif
Received on Sat Jan 10 2004 - 16:06:09 UTC

This archive was generated by hypermail 2.4.0 : Wed May 19 2021 - 11:37:37 UTC