From owner-cvs-src@FreeBSD.ORG Fri Aug 13 22:59:10 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 07DF016A4CE; Fri, 13 Aug 2004 22:59:10 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F143343D5C; Fri, 13 Aug 2004 22:59:09 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DMx91n008403; Fri, 13 Aug 2004 22:59:09 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DMx9gv008402; Fri, 13 Aug 2004 22:59:09 GMT (envelope-from marcel) Message-Id: <200408132259.i7DMx9gv008402@repoman.freebsd.org> From: Marcel Moolenaar Date: Fri, 13 Aug 2004 22:59:09 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/acpi/acpidump acpi.c acpidump.c acpidump.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 22:59:10 -0000 marcel 2004-08-13 22:59:09 UTC FreeBSD src repository Modified files: usr.sbin/acpi/acpidump acpi.c acpidump.c acpidump.h Log: Add support for SSDT tables. Dumping or disassembling the DSDT will now include the contents if any SSDT table as well. This makes use of the property that one can concatenate the body of SSDT tables to the DSDT, updating the DSDT header (length and checksum) and end up with a larger and valid DSDT table. Hence, this also works with -f. Reviewed by: njl@ Revision Changes Path 1.26 +44 -10 src/usr.sbin/acpi/acpidump/acpi.c 1.9 +10 -7 src/usr.sbin/acpi/acpidump/acpidump.c 1.17 +4 -3 src/usr.sbin/acpi/acpidump/acpidump.h