Add (start of) acpi project page.
Don't yet link it from the list of projects. Approved by: njl
This commit is contained in:
parent
87d3690305
commit
076623f022
Notes:
svn2git
2020-12-08 03:00:23 +00:00
svn path=/www/; revision=20741
3 changed files with 183 additions and 0 deletions
17
en/projects/acpi/Makefile
Normal file
17
en/projects/acpi/Makefile
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
# ACPI project page
|
||||||
|
#
|
||||||
|
# $FreeBSD$
|
||||||
|
|
||||||
|
MAINTAINER= marks
|
||||||
|
|
||||||
|
.if exists(../Makefile.conf)
|
||||||
|
.include "../Makefile.conf"
|
||||||
|
.endif
|
||||||
|
.if exists(../Makefile.inc)
|
||||||
|
.include "../Makefile.inc"
|
||||||
|
.endif
|
||||||
|
|
||||||
|
DOCS= index.sgml
|
||||||
|
DATA= style.css
|
||||||
|
|
||||||
|
.include "${WEB_PREFIX}/share/mk/web.site.mk"
|
128
en/projects/acpi/index.sgml
Normal file
128
en/projects/acpi/index.sgml
Normal file
|
@ -0,0 +1,128 @@
|
||||||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" [
|
||||||
|
<!ENTITY base CDATA "../..">
|
||||||
|
<!ENTITY date "$FreeBSD$">
|
||||||
|
<!ENTITY title "FreeBSD ACPI project">
|
||||||
|
<!ENTITY email 'marks'>
|
||||||
|
<!ENTITY % includes SYSTEM "../../includes.sgml"> %includes;
|
||||||
|
|
||||||
|
<!-- Status levels -->
|
||||||
|
<!ENTITY status.na "<font color=green>N/A</font>">
|
||||||
|
<!ENTITY status.done "<font color=green>Done</font>">
|
||||||
|
<!ENTITY status.wip "<font color=blue>In progress</font>">
|
||||||
|
<!ENTITY status.untested "<font color=yellow>Needs testing</font>">
|
||||||
|
<!ENTITY status.new "<font color=red>Not done</font>">
|
||||||
|
<!ENTITY status.unknown "<font color=red>Unknown</font>">
|
||||||
|
|
||||||
|
<!-- The list of contributors was moved to a separate file so that it can
|
||||||
|
be used by other documents in the FreeBSD web site. -->
|
||||||
|
|
||||||
|
<!ENTITY % developers SYSTEM "../../developers.sgml"> %developers;
|
||||||
|
|
||||||
|
]>
|
||||||
|
|
||||||
|
<html>
|
||||||
|
&header;
|
||||||
|
|
||||||
|
<h2>Contents</h2>
|
||||||
|
<ul>
|
||||||
|
<li><a href="#description">Description</a></li>
|
||||||
|
<li><a href="#todo-list">TODO List</a></li>
|
||||||
|
<li><a href="#platform-status">Platform Support Status</a></li>
|
||||||
|
<li><a href="#references">References</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<a name="description"></a>
|
||||||
|
<h2>Description</h2>
|
||||||
|
|
||||||
|
<p>The acpi driver provides support for the Intel/Microsoft/Compaq/Toshiba
|
||||||
|
ACPI standard. This support includes platform hardware discovery (super-
|
||||||
|
seding the PnP and PCI BIOS), as well as power management (superseding
|
||||||
|
APM) and other features. ACPI core support is provided by the ACPI CA
|
||||||
|
reference implementation from Intel.</p>
|
||||||
|
|
||||||
|
|
||||||
|
<a name="todo-list"></a>
|
||||||
|
<h2>TODO List</h2>
|
||||||
|
|
||||||
|
<table border=3>
|
||||||
|
<tr>
|
||||||
|
<th> Task </th>
|
||||||
|
<th> Description </th>
|
||||||
|
<th> Responsible </th>
|
||||||
|
<th> Last updated </th>
|
||||||
|
<th> Priority </th>
|
||||||
|
<th> Status </th>
|
||||||
|
<th> Notes </th>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td> Giant-free locking </td>
|
||||||
|
<td> Remove dependency on Giant </td>
|
||||||
|
<td> &a.njl; </td>
|
||||||
|
<td> April 14, 2004 </td>
|
||||||
|
<td> High </td>
|
||||||
|
<td> &status.wip; </td>
|
||||||
|
<td> code halfway done, battery subsys needs reworking before locking. </td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td> newbus attachments for cpu </td>
|
||||||
|
<td> Get cpu devices under newbus so drivers like cpufreq can probe/attach </td>
|
||||||
|
<td> &a.njl; </td>
|
||||||
|
<td> April 14, 2004 </td>
|
||||||
|
<td> High </td>
|
||||||
|
<td> &status.wip; </td>
|
||||||
|
<td> Deal with unexpected conflicts on non-x86 platforms </td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<a name="platform-status"></a>
|
||||||
|
<h2>Platform Support Status</h2>
|
||||||
|
|
||||||
|
<table border=3>
|
||||||
|
<tr>
|
||||||
|
<th> Task </th>
|
||||||
|
<th> Responsible </th>
|
||||||
|
<th> Last updated </th>
|
||||||
|
<th> Status </th>
|
||||||
|
<th> Details </th>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td> amd64 </td>
|
||||||
|
<td> freebsd-acpi@ </td>
|
||||||
|
<td> April 14, 2004 </td>
|
||||||
|
<td> &status.wip; </td>
|
||||||
|
<td> </td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td> i386 </td>
|
||||||
|
<td> freebsd-acpi@ </td>
|
||||||
|
<td> April 14, 2004 </td>
|
||||||
|
<td> &status.wip; </td>
|
||||||
|
<td> </td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td> ia64 </td>
|
||||||
|
<td> freebsd-acpi@ </td>
|
||||||
|
<td> April 14, 2004 </td>
|
||||||
|
<td> &status.wip; </td>
|
||||||
|
<td> </td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<a name="references"></a>
|
||||||
|
<h2>References</h2>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<li><a href="http://acpi.info/spec.htm">Advanced
|
||||||
|
Configuration and Power Interface Specification</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
&footer;
|
||||||
|
</body>
|
||||||
|
</html>
|
38
en/projects/acpi/style.css
Normal file
38
en/projects/acpi/style.css
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
BODY {
|
||||||
|
}
|
||||||
|
|
||||||
|
BODY TD {
|
||||||
|
font-size: 13px;
|
||||||
|
}
|
||||||
|
|
||||||
|
BODY SMALL {
|
||||||
|
width: 615px;
|
||||||
|
font-size: 11px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.heading {
|
||||||
|
font-size: 15px;
|
||||||
|
background-color: #cbd2ec;
|
||||||
|
}
|
||||||
|
|
||||||
|
.section {
|
||||||
|
font-size: 15px;
|
||||||
|
font-weight: bold;
|
||||||
|
background-color: #e7e9f7;
|
||||||
|
}
|
||||||
|
|
||||||
|
.notes {
|
||||||
|
font-size: 13px;
|
||||||
|
font-weight: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
.main {
|
||||||
|
width: 615px;
|
||||||
|
height: auto;
|
||||||
|
text-align: justify;
|
||||||
|
}
|
||||||
|
|
||||||
|
.list {
|
||||||
|
width: 550px;
|
||||||
|
height: auto;
|
||||||
|
}
|
Loading…
Reference in a new issue