public inbox for linux-acpi@vger.kernel.org
 help / color / mirror / Atom feed
* Re: cvs commit: src/sys/contrib/dev/acpica acfreebsd.h
       [not found]   ` <20040309110721.B88330-YW38lnafgrALLvduDZEr5g@public.gmane.org>
@ 2004-03-11  2:26     ` Nate Lawson
       [not found]       ` <20040310182253.P61709-Y6VGUYTwhu0@public.gmane.org>
  0 siblings, 1 reply; 4+ messages in thread
From: Nate Lawson @ 2004-03-11  2:26 UTC (permalink / raw)
  To: Brian Buchanan
  Cc: robert.moore-ral2JQCrhuEAvxtiuMwx3w,
	acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f

On Tue, 9 Mar 2004, Brian Buchanan wrote:
> I hacked the ASL for my ThinkPad T40p so that "FreeBSD" was treated as an
> equivalent to "Windows 2001".  After your change, the Fn+F8 screen
> expansion toggle stopped working.
>
> I've attached the acpidump output you requested.  My local modification
> was to add after the check for "Windows 2001":
>
> If (LEqual (\SCMP (\_OS, "FreeBSD"), Zero))
> {
>     Store (0x02, \WNTF)
> }

The issue is that we don't support the _OSI method yet, otherwise we could
advertise FreeBSD as being both Windows 2k and XP compatible.  Your best
workaround is to just unconditionally store 0x02 into \WNTF at the end of
the \_SB._INI function.  Since the custom AML will only be loaded by
FreeBSD, you won't affect other OS's with this change.

Bob, any word on _OSI implementation?

-Nate


-------------------------------------------------------
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click

^ permalink raw reply	[flat|nested] 4+ messages in thread

* _OSI (Re: Re: cvs commit: src/sys/contrib/dev/acpica acfreebsd.h)
       [not found]       ` <20040310182253.P61709-Y6VGUYTwhu0@public.gmane.org>
@ 2004-03-11  7:08         ` Len Brown
       [not found]           ` <1078988912.2549.94.camel-D2Zvc0uNKG8@public.gmane.org>
  0 siblings, 1 reply; 4+ messages in thread
From: Len Brown @ 2004-03-11  7:08 UTC (permalink / raw)
  To: Nate Lawson; +Cc: Brian Buchanan, Robert Moore, ACPI Developers

On Wed, 2004-03-10 at 21:26, Nate Lawson wrote:

> Bob, any word on _OSI implementation?

Bob sent me an initial implementation for review today;-)

I'm uncomfortable, however, at claiming to be compatible with Windows,
since I don't really have a definition of exactly what that means...

-Len





-------------------------------------------------------
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: _OSI (Re: Re: cvs commit: src/sys/contrib/dev/acpica acfreebsd.h)
       [not found]           ` <1078988912.2549.94.camel-D2Zvc0uNKG8@public.gmane.org>
@ 2004-03-11  7:18             ` Nate Lawson
  0 siblings, 0 replies; 4+ messages in thread
From: Nate Lawson @ 2004-03-11  7:18 UTC (permalink / raw)
  To: Len Brown; +Cc: Brian Buchanan, Robert Moore, ACPI Developers

On Wed, 11 Mar 2004, Len Brown wrote:
> On Wed, 2004-03-10 at 21:26, Nate Lawson wrote:
> > Bob, any word on _OSI implementation?
>
> Bob sent me an initial implementation for review today;-)
>
> I'm uncomfortable, however, at claiming to be compatible with Windows,
> since I don't really have a definition of exactly what that means...
>
> -Len

Doesn't matter to me.  I plan on claiming to be everything from Win 2k
onward and sort out the rest on the mailing list.  :)

We already fixed some problems by claiming to be Win 2k for _OS.

-Nate


-------------------------------------------------------
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click

^ permalink raw reply	[flat|nested] 4+ messages in thread

* RE: cvs commit: src/sys/contrib/dev/acpica acfreebsd.h
       [not found] ` <CFF522B18982EA4481D3A3E23B83141C01E63981-sBd4vmA9Se6SsB6bSF6DdVDQ4js95KgL@public.gmane.org>
@ 2004-03-12  4:10   ` Nate Lawson
  0 siblings, 0 replies; 4+ messages in thread
From: Nate Lawson @ 2004-03-12  4:10 UTC (permalink / raw)
  To: Moore, Robert; +Cc: acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f

THANK YOU.  0311 looks like an EXCELLENT release.

-Nate

> -----Original Message-----
> From: Nate Lawson [mailto:nate-Y6VGUYTwhu0@public.gmane.org]
> Sent: Wednesday, March 10, 2004 6:27 PM
> To: Brian Buchanan
> Cc: Moore, Robert; acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
> Subject: Re: cvs commit: src/sys/contrib/dev/acpica acfreebsd.h
>
> On Tue, 9 Mar 2004, Brian Buchanan wrote:
> > I hacked the ASL for my ThinkPad T40p so that "FreeBSD" was treated as
> an
> > equivalent to "Windows 2001".  After your change, the Fn+F8 screen
> > expansion toggle stopped working.
> >
> > I've attached the acpidump output you requested.  My local
> modification
> > was to add after the check for "Windows 2001":
> >
> > If (LEqual (\SCMP (\_OS, "FreeBSD"), Zero))
> > {
> >     Store (0x02, \WNTF)
> > }
>
> The issue is that we don't support the _OSI method yet, otherwise we
> could
> advertise FreeBSD as being both Windows 2k and XP compatible.  Your best
> workaround is to just unconditionally store 0x02 into \WNTF at the end
> of
> the \_SB._INI function.  Since the custom AML will only be loaded by
> FreeBSD, you won't affect other OS's with this change.
>
> Bob, any word on _OSI implementation?
>
> -Nate


-------------------------------------------------------
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2004-03-12  4:10 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <20040303220117.R21587@root.org>
     [not found] ` <20040309110721.B88330@mail.ncircle.com>
     [not found]   ` <20040309110721.B88330-YW38lnafgrALLvduDZEr5g@public.gmane.org>
2004-03-11  2:26     ` cvs commit: src/sys/contrib/dev/acpica acfreebsd.h Nate Lawson
     [not found]       ` <20040310182253.P61709-Y6VGUYTwhu0@public.gmane.org>
2004-03-11  7:08         ` _OSI (Re: Re: cvs commit: src/sys/contrib/dev/acpica acfreebsd.h) Len Brown
     [not found]           ` <1078988912.2549.94.camel-D2Zvc0uNKG8@public.gmane.org>
2004-03-11  7:18             ` Nate Lawson
     [not found] <CFF522B18982EA4481D3A3E23B83141C01E63981@orsmsx407.jf.intel.com>
     [not found] ` <CFF522B18982EA4481D3A3E23B83141C01E63981-sBd4vmA9Se6SsB6bSF6DdVDQ4js95KgL@public.gmane.org>
2004-03-12  4:10   ` cvs commit: src/sys/contrib/dev/acpica acfreebsd.h Nate Lawson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox