Date: Wed, 07 Nov 2001 19:55:27 +0900 (JST) From: Mitsuru IWASAKI <iwasaki@jp.FreeBSD.org> To: acpi-jp@jp.freebsd.org Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: acpica-unix-20011102 is out (was Re: cvs commit: ports/devel/acpicatools Makefile distinfo ports/devel/acpicatools/files patch-20010816 patch-20011102) Message-ID: <20011107.195527.74756218.iwasaki@jp.FreeBSD.org> In-Reply-To: <200111070905.fA795mJ21818@freefall.freebsd.org> References: <200111070905.fA795mJ21818@freefall.freebsd.org>
next in thread | previous in thread | raw e-mail | index | archive | help
Hi, I've found acpica-unix-20011102 last night and updated my ports. > iwasaki 2001/11/07 01:05:48 PST > > Modified files: > devel/acpicatools Makefile distinfo > Added files: > devel/acpicatools/files patch-20011102 > Removed files: > devel/acpicatools/files patch-20010816 > Log: > Update for acpica-unix-20011102. Intel folks, could you review and integrate the latest patches for osunixxf.c attached if acceptable? This snapshot contains IA64 and Fields fixes according to http://developer.intel.com/technology/iapc/acpi/downloads/CHANGES.txt so I think this would be nice :-) And I've just made the patches for importing to FreeBSD at http://people.freebsd.org/~iwasaki/acpi/acpica-unix-20011018-20011102.diff for your convenience. Thanks --- osunixxf.c.orig Fri Oct 19 05:21:52 2001 +++ osunixxf.c Thu Nov 1 21:44:36 2001 @@ -706,7 +706,7 @@ UINT32 milliseconds) { - sleep ((seconds * 1000) + milliseconds); + usleep ((seconds * 1000) + milliseconds); return; } @@ -919,7 +919,7 @@ UINT32 AcpiOsGetThreadId(void) { - return 0; + return 1; } @@ -965,4 +965,11 @@ return (AE_OK); } +ACPI_STATUS +AcpiOsGetRootPointer ( + UINT32 Flags, + ACPI_PHYSICAL_ADDRESS *RsdpPhysicalAddress) +{ + return (AE_OK); +} To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20011107.195527.74756218.iwasaki>