From owner-freebsd-mobile@FreeBSD.ORG Fri May 16 15:16:09 2003 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A0D5F37B401 for ; Fri, 16 May 2003 15:16:09 -0700 (PDT) Received: from bitblocks.com (bitblocks.com [209.204.185.216]) by mx1.FreeBSD.org (Postfix) with ESMTP id F32DE43F75 for ; Fri, 16 May 2003 15:16:08 -0700 (PDT) (envelope-from bakul@bitblocks.com) Received: from bitblocks.com (localhost [127.0.0.1]) by bitblocks.com (8.12.9/8.12.9) with ESMTP id h4GMFkPF062168; Fri, 16 May 2003 15:15:46 -0700 (PDT) (envelope-from bakul@bitblocks.com) Message-Id: <200305162215.h4GMFkPF062168@bitblocks.com> To: "M. Warner Losh" In-reply-to: Your message of "Fri, 16 May 2003 15:17:41 MDT." <20030516.151741.62579008.imp@bsdimp.com> Date: Fri, 16 May 2003 15:15:46 -0700 From: Bakul Shah cc: gunnar.flygt@sr.se cc: freebsd-mobile@freebsd.org Subject: Re: Current, ACPI and my Compac EVO N800c X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 May 2003 22:16:09 -0000 > : > How does one create a file from the aml? > : > : If the aml is in a file foo.aml you can do this: > : acpidump -f foo.aml > foo.asl > : To read your machine's DSDT tables and decode aml in it > : acpidump > foo.asl > > hmmm, I want to hack the output acpidump's foo.asl and create the > aml. I get confused over the acronyms sometime. Basically, I have > source, and I wanna create something I can load in the loader. aml == acpi machine language asl == acpi source language you need iasl from the ports/devel/acpicatools. Something like iasl foo.asl will create acpi_dsdt.aml. You may need some options depending on your asl file (for example, -i to ignore errors and create acpi_dstl.aml in any case).