- Add 3 more items
This commit is contained in:
parent
051b15cfe0
commit
a817676c0b
Notes:
svn2git
2020-12-08 03:00:23 +00:00
svn path=/www/; revision=35181
1 changed files with 159 additions and 4 deletions
|
@ -2,7 +2,7 @@
|
|||
<!DOCTYPE report PUBLIC "-//FreeBSD//DTD FreeBSD XML Database for Status
|
||||
Report//EN"
|
||||
"http://www.FreeBSD.org/XML/www/share/sgml/statusreport.dtd">
|
||||
<!-- $FreeBSD: www/en/news/status/report-2009-10-2009-12.xml,v 1.1 2010/01/12 21:27:23 danger Exp $ -->
|
||||
<!-- $FreeBSD: www/en/news/status/report-2009-10-2009-12.xml,v 1.2 2010/01/13 13:36:56 gabor Exp $ -->
|
||||
<report>
|
||||
<date>
|
||||
<month>October-December</month>
|
||||
|
@ -669,8 +669,8 @@ Report//EN"
|
|||
|
||||
<person>
|
||||
<name>
|
||||
<given>Gábor</name>
|
||||
<common>Páli</name>
|
||||
<given>Gábor</given>
|
||||
<common>Páli</common>
|
||||
</name>
|
||||
<email>pgj@FreeBSD.org</email>
|
||||
</person>
|
||||
|
@ -834,6 +834,40 @@ Report//EN"
|
|||
</help>
|
||||
</project>
|
||||
|
||||
<project cat='kern'>
|
||||
<title>Group Limit Increase</title>
|
||||
|
||||
<contact>
|
||||
<person>
|
||||
<name>
|
||||
<given>Brooks</given>
|
||||
<common>Davis</common>
|
||||
</name>
|
||||
<email>brooks@freebsd.org</email>
|
||||
</person>
|
||||
</contact>
|
||||
|
||||
<links/>
|
||||
|
||||
<body>
|
||||
<p>Historically, FreeBSD has limited the number of supplemental
|
||||
groups per process to 15 (NGROUPS_MAX was incorrectly declared to be
|
||||
16). In FreeBSD 8.0 we raised the limit to 1023, which should be
|
||||
sufficient for most users and will be acceptably efficient for
|
||||
incorrectly written applications that statically allocate
|
||||
NGROUPS_MAX + 1 entries.</p>
|
||||
|
||||
<p>Because some systems such as Linux 2.6 support a larger
|
||||
group limit, we have further relaxed this restriction in -CURRENT and
|
||||
made kern.ngroups a tunable value, which supports values between 1023
|
||||
and INT_MAX - 1. We plan to merge this to 8-STABLE before
|
||||
8.1-RELEASE.</p>
|
||||
</body>
|
||||
|
||||
<help/>
|
||||
</project>
|
||||
|
||||
|
||||
<project cat='net'>
|
||||
<title>Syncing pf(4) with OpenBSD 4.5</title>
|
||||
|
||||
|
@ -1063,6 +1097,97 @@ Report//EN"
|
|||
</help>
|
||||
</project>
|
||||
|
||||
<project cat='arch'>
|
||||
<title>Flattened Device Tree for embedded FreeBSD</title>
|
||||
|
||||
<contact>
|
||||
<person>
|
||||
<name>
|
||||
<given>Rafal</given>
|
||||
<common>Jaworowski</common>
|
||||
</name>
|
||||
<email>raj@semihalf.com</email>
|
||||
</person>
|
||||
</contact>
|
||||
|
||||
<links>
|
||||
<url href="http://wiki.freebsd.org/FlattenedDeviceTree">Project wiki pages</url>
|
||||
|
||||
<url href="http://p4db.freebsd.org/changeList.cgi?FSPC=//depot/projects/fdt/...">Project P4 branch</url>
|
||||
</links>
|
||||
|
||||
<body>
|
||||
<p>The purpose of this project is to provide FreeBSD with support for the
|
||||
Flattened Device Tree (FDT) technology, the a mechanism for describing
|
||||
computer hardware resources, which cannot be probed or self enumerated, in
|
||||
a uniform and portable way. The primary consumer of this technology are
|
||||
embedded FreeBSD platforms (ARM, AVR32, MIPS, PowerPC), where a lot of
|
||||
designs are based on similar chips, but have different assignment of pins,
|
||||
memory layout, addresses bindings, interrupts routing and other resources.</p>
|
||||
|
||||
<p>Current state highlights:</p>
|
||||
|
||||
<ul>
|
||||
<li>Environment, support tools</li>
|
||||
|
||||
<ul>
|
||||
<li>integrated device tree compiler (dtc) and libfdt into FreeBSD
|
||||
userspace, kernel and loader build</li>
|
||||
</ul>
|
||||
|
||||
<li>loader(8)</li>
|
||||
|
||||
<ul>
|
||||
<li>full support for device tree blob handling</li>
|
||||
|
||||
<li>load, traverse, modify (including add/remove) device tree
|
||||
nodes and properties</li>
|
||||
|
||||
<li>pass the device tree blob to the kernel</li>
|
||||
|
||||
<li>both ARM and PowerPC loader(8) supported</li>
|
||||
</ul>
|
||||
|
||||
<li>kernel side FDT support (common)</li>
|
||||
|
||||
<ul>
|
||||
<li>developed OF interface for FDT-backed platforms</li>
|
||||
|
||||
<li>ofw_bus I/F (and /dev/openfirm) available with FDT</li>
|
||||
|
||||
<li>integrated FDT resources representation with newbus (fdtbus
|
||||
and simplebus drivers)</li>
|
||||
</ul>
|
||||
|
||||
<li>PowerPC kernel (Freescale MPC85XX SOC)</li>
|
||||
|
||||
<ul>
|
||||
<li>MPC8555CDS and MPC8572DS successfully converted to FDT
|
||||
conventions</li>
|
||||
</ul>
|
||||
|
||||
<li>ARM kernel (Marvell Orion, Kirkwood and Discovery SOC)</li>
|
||||
|
||||
<ul>
|
||||
<li>work in progress on integrating FDT infrastructure with ARM
|
||||
platform code</li>
|
||||
</ul>
|
||||
</ul>
|
||||
|
||||
<p>Work on this project is sponsored by the FeeBSD Foundation.</p>
|
||||
</body>
|
||||
|
||||
<help>
|
||||
<task>Complete missing pieces for PowerPC (PCI bridge driver conversion to
|
||||
FDT)</task>
|
||||
|
||||
<task>Complete ARM support</task>
|
||||
|
||||
<task>Merge to SVN</task>
|
||||
</help>
|
||||
</project>
|
||||
|
||||
|
||||
<project cat='proj'>
|
||||
<title>HAST - Highly Available Storage</title>
|
||||
|
||||
|
@ -1118,6 +1243,36 @@ Report//EN"
|
|||
</body>
|
||||
</project>
|
||||
|
||||
<project cat='proj'>
|
||||
<title>Wireless mesh networking</title>
|
||||
|
||||
<contact>
|
||||
<person>
|
||||
<name>
|
||||
<given>Rui</given>
|
||||
<common>Paulo</common>
|
||||
</name>
|
||||
<email>rpaulo@FreeBSD.org</email>
|
||||
</person>
|
||||
</contact>
|
||||
|
||||
<links>
|
||||
<url href="http://wiki.freebsd.org/WifiMesh"/>
|
||||
</links>
|
||||
|
||||
<body>
|
||||
<p>Development of the FreeBSD 802.11s stack continues. The code in
|
||||
FreeBSD HEAD has been updated to comply with draft 4.0. Merge to
|
||||
FreeBSD 8-STABLE will be done soon.</p>
|
||||
|
||||
<p>The developer is looking for funding to be able to implement mesh
|
||||
link security algorithms and/or coordinated channel access
|
||||
(performance improvement).</p>
|
||||
</body>
|
||||
|
||||
<help/>
|
||||
</project>
|
||||
|
||||
<project cat='soc'>
|
||||
<title>BSD-licensed iconv</title>
|
||||
|
||||
|
@ -1165,7 +1320,7 @@ Report//EN"
|
|||
</contact>
|
||||
|
||||
<links>
|
||||
<url href="Perforce repository">http://p4db.freebsd.org/depotTreeBrowser.cgi?FSPC=//depot/projects/soc2008/gabor_textproc</url>
|
||||
<url href="http://p4db.freebsd.org/depotTreeBrowser.cgi?FSPC=//depot/projects/soc2008/gabor_textproc">Perforce repository</url>
|
||||
</links>
|
||||
|
||||
<body>
|
||||
|
|
Loading…
Reference in a new issue