public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo commit in xml/htdocs/proj/en/hardened/uclibc: index.xml
@ 2012-11-02  3:22 Anthony G. Basile (blueness)
  0 siblings, 0 replies; 9+ messages in thread
From: Anthony G. Basile (blueness) @ 2012-11-02  3:22 UTC (permalink / raw
  To: gentoo-commits

blueness    12/11/02 03:22:31

  Added:                index.xml
  Log:
  add page for hardened uclibc project

Revision  Changes    Path
1.1                  xml/htdocs/proj/en/hardened/uclibc/index.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/hardened/uclibc/index.xml?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/hardened/uclibc/index.xml?rev=1.1&content-type=text/plain

Index: index.xml
===================================================================
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="/xsl/project.xsl" type="text/xsl"?>
<?xml-stylesheet href="/xsl/guide.xsl" type="text/xsl"?>
<!DOCTYPE project SYSTEM "/dtd/project.dtd">
<project>

<name>Hardened uClibc</name>
<longname>Porting Tool chain and Kernel Hardening to uClibc based systems</longname>

<description>
This subproject aims to port both tool chain and kernel hardening to uClibc
based systems for a variety of architectures.  The project treats uClibc as an
alternative to glibc, and not necessarily as "embedded".  The aim is a fully
featured system, and not one based primarily on busybox.
</description>

<longdescription>
<p>
All modern operating systems are comprised of a kernel and user land.  The
former deals with hardware and resource management at the highest privilege
level (ring 0) while the later deals with the end user and operates at the lowest
privilege level (ring 3).  The two interface at one central library referred to
as "the C standard library."  By far, the most popular is "The GNU C library", or
<uri link="http://www.gnu.org/software/libc/">glibc</uri> for short; but, for
embedded systems <uri link="http://www.uclibc.org/">uClibc</uri> is the standard
library of choice, although there are other competitors (see <uri link="http://www.musl-libc.org/">musl</uri>).
uClibc (where the "u" is sometimes written as the Greek "mu" for "micro") is much
smaller than glibc, less bloated, much faster, and very configurable.
</p>

<p>
Continued developments in uClibc have made it increasingly suitable for fully
featured systems, even desktops.  The recent addition of the native POSIX thread
library (see <uri link="http://en.wikipedia.org/wiki/Native_POSIX_Thread_Library">nptl</uri>)
meant that we could finally implement our complete complement of tool chain
hardening from glibc:
</p>

<ul>
<li>stack smashing protection (<uri link="http://en.wikipedia.org/wiki/Buffer_overflow_protection">ssp</uri>),
which came with nptl</li>
<li>position independent execution (<uri link="http://en.wikipedia.org/wiki/Position-independent_code">pie</uri>)</li>
<li>bind now and relro, linker hardening to protect the global offset table</li>
</ul>

<p>
These are complemented by the kernel hardening, especially
<uri link="http://pax.grsecurity.net/">PaX</uri>'s enhanced address space
layout randomization (<uri link="http://pax.grsecurity.net/docs/aslr.txt">aslr</uri>).
</p>

<p>
So, this subproject aims to port both tool chain and kernel hardening to uClibc
based systems for a variety of architectures, treating uClibc more as a
drop in alternative to glibc, and not necessarily as "embedded".  Embedded
systems aim to produce kernels and user lands with tiny footprints, and so
tend to use busybox as their "Swiss Army Knife" of common UNIX utilities.
While not excluding this possibility, we aim at making most (all?) of Gentoo's
packages both hardened and uClibc compatible.
</p>
</longdescription>

<goals>
<p>
The project goals can be best summarized by the following chart:
</p>

<table>
<tr>
	<th>Arch</th>
	<th>Subarchs</th>
	<th>Tool Chain Hardening</th>
	<th>Kernel Hardening</th>
	<th>Installation Media</th>
	<th>Downloads</th>
</tr>
<tr>
	<ti>amd64</ti>
	<ti>Generic</ti>
	<ti>Yes</ti>
	<ti>Yes</ti>
	<ti>stage3 livecd desktop</ti>
	<ti>[mirror]/experimental/amd64/uclibc</ti>
</tr>
<tr>
	<ti>arm</ti>
	<ti>armv7a/softfloat</ti>
	<ti>Yes</ti>
	<ti>No</ti>
	<ti>stage4</ti>
	<ti>[mirror]/experimental/arm/uclibc</ti>
</tr>
<tr>
	<ti>mips</ti>
	<ti>mips32r2 mipsel32r2</ti>
	<ti>Yes</ti>
	<ti>No</ti>
	<ti>stage4</ti>
	<ti>[mirror]/experimental/mips/uclibc</ti>
</tr>
<tr>
	<ti>ppc</ti>
	<ti>Not Yet</ti>
	<ti>Not Yet</ti>
	<ti>Not Yet</ti>
	<ti>Not Yet</ti>
	<ti>Not Yet</ti>
</tr>
<tr>
	<ti>x86</ti>
	<ti>i686</ti>
	<ti>Yes</ti>
	<ti>Yes</ti>
	<ti>stage3</ti>
	<ti>[mirror]/experimental/x86/uclibc</ti>
</tr>
</table>

<ul>
<li>Yes = competed</li>
<li>Not Yet = in progress</li>
<li>No = no plans</li>
<li>NA = not applicable</li>
<li>stage3 = catalyst built stages 1, 2 and 3 available (ideal)</li>
<li>stage4 = manually tarballed minimal system</li>
<li>livecd = minimal (installation) live CD</li>
<li>desktop = manually tarballed full desktop system</li>
<li>[mirror] = any <uri link="http://www.gentoo.org/main/en/mirrors2.xml">Gentoo mirror</uri></li>
</ul>

</goals>


<dev role="lead">blueness</dev>
<dev role="member">zorry</dev>


<extrachapter position="bottom">
<title>I Want to Participate</title>
<section>
<body>
<p>
To participate in the Hardened uClibc project join the mailing list at
<c>gentoo-hardened@gentoo.org</c> and visit our online IRC channel at
<c>#gentoo-hardened</c> on <c>irc.freenode.net</c>.
</p>
</body>
</section>
</extrachapter>

</project>





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

* [gentoo-commits] gentoo commit in xml/htdocs/proj/en/hardened/uclibc: index.xml
@ 2012-11-02 10:32 Anthony G. Basile (blueness)
  0 siblings, 0 replies; 9+ messages in thread
From: Anthony G. Basile (blueness) @ 2012-11-02 10:32 UTC (permalink / raw
  To: gentoo-commits

blueness    12/11/02 10:32:47

  Modified:             index.xml
  Log:
  improve hardened uclibc page

Revision  Changes    Path
1.2                  xml/htdocs/proj/en/hardened/uclibc/index.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/hardened/uclibc/index.xml?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/hardened/uclibc/index.xml?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/hardened/uclibc/index.xml?r1=1.1&r2=1.2

Index: index.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/hardened/uclibc/index.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- index.xml	2 Nov 2012 03:22:31 -0000	1.1
+++ index.xml	2 Nov 2012 10:32:47 -0000	1.2
@@ -22,7 +22,7 @@
 privilege level (ring 3).  The two interface at one central library referred to
 as "the C standard library."  By far, the most popular is "The GNU C library", or
 <uri link="http://www.gnu.org/software/libc/">glibc</uri> for short; but, for
-embedded systems <uri link="http://www.uclibc.org/">uClibc</uri> is the standard
+embedded systems <uri link="http://www.uclibc.org/">uClibc</uri> is the C 
 library of choice, although there are other competitors (see <uri link="http://www.musl-libc.org/">musl</uri>).
 uClibc (where the "u" is sometimes written as the Greek "mu" for "micro") is much
 smaller than glibc, less bloated, much faster, and very configurable.
@@ -44,7 +44,7 @@
 </ul>
 
 <p>
-These are complemented by the kernel hardening, especially
+These are augmented by the kernel hardening, especially
 <uri link="http://pax.grsecurity.net/">PaX</uri>'s enhanced address space
 layout randomization (<uri link="http://pax.grsecurity.net/docs/aslr.txt">aslr</uri>).
 </p>
@@ -122,9 +122,9 @@
 <li>No = no plans</li>
 <li>NA = not applicable</li>
 <li>stage3 = catalyst built stages 1, 2 and 3 available (ideal)</li>
-<li>stage4 = manually tarballed minimal system</li>
+<li>stage4 = manually built minimal system</li>
 <li>livecd = minimal (installation) live CD</li>
-<li>desktop = manually tarballed full desktop system</li>
+<li>desktop = manually built full desktop system</li>
 <li>[mirror] = any <uri link="http://www.gentoo.org/main/en/mirrors2.xml">Gentoo mirror</uri></li>
 </ul>
 





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

* [gentoo-commits] gentoo commit in xml/htdocs/proj/en/hardened/uclibc: index.xml
@ 2012-11-02 19:40 Francisco Blas Izquierdo Riera (klondike)
  0 siblings, 0 replies; 9+ messages in thread
From: Francisco Blas Izquierdo Riera (klondike) @ 2012-11-02 19:40 UTC (permalink / raw
  To: gentoo-commits

klondike    12/11/02 19:40:21

  Modified:             index.xml
  Log:
  Improving the project description a bit

Revision  Changes    Path
1.3                  xml/htdocs/proj/en/hardened/uclibc/index.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/hardened/uclibc/index.xml?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/hardened/uclibc/index.xml?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/hardened/uclibc/index.xml?r1=1.2&r2=1.3

Index: index.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/hardened/uclibc/index.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- index.xml	2 Nov 2012 10:32:47 -0000	1.2
+++ index.xml	2 Nov 2012 19:40:21 -0000	1.3
@@ -16,16 +16,21 @@
 
 <longdescription>
 <p>
-All modern operating systems are comprised of a kernel and user land.  The
-former deals with hardware and resource management at the highest privilege
-level (ring 0) while the later deals with the end user and operates at the lowest
-privilege level (ring 3).  The two interface at one central library referred to
-as "the C standard library."  By far, the most popular is "The GNU C library", or
-<uri link="http://www.gnu.org/software/libc/">glibc</uri> for short; but, for
-embedded systems <uri link="http://www.uclibc.org/">uClibc</uri> is the C 
-library of choice, although there are other competitors (see <uri link="http://www.musl-libc.org/">musl</uri>).
-uClibc (where the "u" is sometimes written as the Greek "mu" for "micro") is much
-smaller than glibc, less bloated, much faster, and very configurable.
+All modern operating systems are comprised of a kernel and userland. The
+kernel deals with hardware and resource management and runs at the highest
+privilege level, providing a basic interface to the userland which contains all
+the program logic and operates at the lowest privilege level. But, since the
+interfaces provided by the kernel are too basic and differ strongly from one
+system to another they usually interface through a library whith standarized
+functions, the most frequent of which is the one for the C language. This
+library is reffered usually as "the C standard library". By far, the most
+popular is "The GNU C library", or
+<uri link="http://www.gnu.org/software/libc/">glibc</uri> for short;
+although, for embedded systems <uri link="http://www.uclibc.org/">uClibc</uri>
+is the C library of choice, anyway there are other competitors (see
+<uri link="http://www.musl-libc.org/">musl</uri>). uClibc (where the "u" is
+sometimes written as the Greek "mu" that is, µ, for "micro") is much smaller
+than glibc, less bloated, much faster, and very configurable.
 </p>
 
 <p>





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

* [gentoo-commits] gentoo commit in xml/htdocs/proj/en/hardened/uclibc: index.xml
@ 2012-11-02 21:43 Anthony G. Basile (blueness)
  0 siblings, 0 replies; 9+ messages in thread
From: Anthony G. Basile (blueness) @ 2012-11-02 21:43 UTC (permalink / raw
  To: gentoo-commits

blueness    12/11/02 21:43:34

  Modified:             index.xml
  Log:
  revert to original language

Revision  Changes    Path
1.4                  xml/htdocs/proj/en/hardened/uclibc/index.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/hardened/uclibc/index.xml?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/hardened/uclibc/index.xml?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/hardened/uclibc/index.xml?r1=1.3&r2=1.4

Index: index.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/hardened/uclibc/index.xml,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- index.xml	2 Nov 2012 19:40:21 -0000	1.3
+++ index.xml	2 Nov 2012 21:43:34 -0000	1.4
@@ -16,21 +16,16 @@
 
 <longdescription>
 <p>
-All modern operating systems are comprised of a kernel and userland. The
-kernel deals with hardware and resource management and runs at the highest
-privilege level, providing a basic interface to the userland which contains all
-the program logic and operates at the lowest privilege level. But, since the
-interfaces provided by the kernel are too basic and differ strongly from one
-system to another they usually interface through a library whith standarized
-functions, the most frequent of which is the one for the C language. This
-library is reffered usually as "the C standard library". By far, the most
-popular is "The GNU C library", or
-<uri link="http://www.gnu.org/software/libc/">glibc</uri> for short;
-although, for embedded systems <uri link="http://www.uclibc.org/">uClibc</uri>
-is the C library of choice, anyway there are other competitors (see
-<uri link="http://www.musl-libc.org/">musl</uri>). uClibc (where the "u" is
-sometimes written as the Greek "mu" that is, µ, for "micro") is much smaller
-than glibc, less bloated, much faster, and very configurable.
+All modern operating systems are comprised of a kernel and userland.  The
+former deals with hardware and resource management at the highest privilege
+level (ring 0) while the later deals with the end user and operates at the lowest
+privilege level (ring 3).  The two interface at one central library referred to
+as "the C standard library."  By far, the most popular is "The GNU C library", or
+<uri link="http://www.gnu.org/software/libc/">glibc</uri> for short; but, for
+embedded systems <uri link="http://www.uclibc.org/">uClibc</uri> is the standard
+library of choice, although there are other competitors (see <uri link="http://www.musl-libc.org/">musl</uri>).
+uClibc (where the "u" is sometimes written as the Greek µ for "micro") is much
+smaller than glibc, less bloated, much faster, and very configurable.
 </p>
 
 <p>





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

* [gentoo-commits] gentoo commit in xml/htdocs/proj/en/hardened/uclibc: index.xml
@ 2012-11-03 18:30 Anthony G. Basile (blueness)
  0 siblings, 0 replies; 9+ messages in thread
From: Anthony G. Basile (blueness) @ 2012-11-03 18:30 UTC (permalink / raw
  To: gentoo-commits

blueness    12/11/03 18:30:42

  Modified:             index.xml
  Log:
  Fix little endian ABI name

Revision  Changes    Path
1.5                  xml/htdocs/proj/en/hardened/uclibc/index.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/hardened/uclibc/index.xml?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/hardened/uclibc/index.xml?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/hardened/uclibc/index.xml?r1=1.4&r2=1.5

Index: index.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/hardened/uclibc/index.xml,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- index.xml	2 Nov 2012 21:43:34 -0000	1.4
+++ index.xml	3 Nov 2012 18:30:42 -0000	1.5
@@ -92,7 +92,7 @@
 </tr>
 <tr>
 	<ti>mips</ti>
-	<ti>mips32r2 mipsel32r2</ti>
+	<ti>mips32r2 mips32r2el</ti>
 	<ti>Yes</ti>
 	<ti>No</ti>
 	<ti>stage4</ti>





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

* [gentoo-commits] gentoo commit in xml/htdocs/proj/en/hardened/uclibc: index.xml
@ 2012-12-17 19:38 Anthony G. Basile (blueness)
  0 siblings, 0 replies; 9+ messages in thread
From: Anthony G. Basile (blueness) @ 2012-12-17 19:38 UTC (permalink / raw
  To: gentoo-commits

blueness    12/12/17 19:38:04

  Modified:             index.xml
  Log:
  Improve intro paragraph, bug #441014

Revision  Changes    Path
1.6                  xml/htdocs/proj/en/hardened/uclibc/index.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/hardened/uclibc/index.xml?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/hardened/uclibc/index.xml?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/hardened/uclibc/index.xml?r1=1.5&r2=1.6

Index: index.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/hardened/uclibc/index.xml,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- index.xml	3 Nov 2012 18:30:42 -0000	1.5
+++ index.xml	17 Dec 2012 19:38:04 -0000	1.6
@@ -16,16 +16,23 @@
 
 <longdescription>
 <p>
-All modern operating systems are comprised of a kernel and userland.  The
-former deals with hardware and resource management at the highest privilege
-level (ring 0) while the later deals with the end user and operates at the lowest
-privilege level (ring 3).  The two interface at one central library referred to
-as "the C standard library."  By far, the most popular is "The GNU C library", or
-<uri link="http://www.gnu.org/software/libc/">glibc</uri> for short; but, for
-embedded systems <uri link="http://www.uclibc.org/">uClibc</uri> is the standard
-library of choice, although there are other competitors (see <uri link="http://www.musl-libc.org/">musl</uri>).
-uClibc (where the "u" is sometimes written as the Greek µ for "micro") is much
-smaller than glibc, less bloated, much faster, and very configurable.
+All modern operating systems are comprised of a kernel and userland layer.  While
+the kernel deals directly with hardware resources at the highest privilege level,
+userland deals with the end user and operates at the lowest level.  The two layers
+communicate with one another via system calls (or "syscalls" for short), which
+userland issues to the kernel.  While any userland application can issue syscalls
+directly (eg. in x86 ISA, via an INT 0x80), almost all userland syscalls on a typical
+UNIX system are channeled via one central library referred to as "the C standard library."
+Along with the compiler and other utilities to manipulate executable binaries (eg.
+binutils), it forms an integral part of the toolchain, and remains a runtime dependency
+of nearly every dynamically linking object in the system.
+
+By far, the most popular is "The GNU C library", or <uri link="http://www.gnu.org/software/libc/">glibc</uri>
+for short; but, for embedded systems <uri link="http://www.uclibc.org/">uClibc</uri>
+is the standard library of choice, although there are other competitors (see 
+<uri link="http://www.musl-libc.org/">musl</uri>).  uClibc (where the "u" is
+sometimes written as the Greek µ for "micro") is much smaller than glibc, less
+bloated, much faster, and very configurable.
 </p>
 
 <p>
@@ -92,7 +99,15 @@
 </tr>
 <tr>
 	<ti>mips</ti>
-	<ti>mips32r2 mips32r2el</ti>
+	<ti>mips32r2</ti>
+	<ti>Yes</ti>
+	<ti>No</ti>
+	<ti>stage3</ti>
+	<ti>[mirror]/experimental/mips/uclibc</ti>
+</tr>
+<tr>
+	<ti>mips</ti>
+	<ti>mipsel3</ti>
 	<ti>Yes</ti>
 	<ti>No</ti>
 	<ti>stage4</ti>





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

* [gentoo-commits] gentoo commit in xml/htdocs/proj/en/hardened/uclibc: index.xml
@ 2013-01-06  6:37 Anthony G. Basile (blueness)
  0 siblings, 0 replies; 9+ messages in thread
From: Anthony G. Basile (blueness) @ 2013-01-06  6:37 UTC (permalink / raw
  To: gentoo-commits

blueness    13/01/06 06:37:24

  Modified:             index.xml
  Log:
  Update info for arm - stage3 now available

Revision  Changes    Path
1.7                  xml/htdocs/proj/en/hardened/uclibc/index.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/hardened/uclibc/index.xml?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/hardened/uclibc/index.xml?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/hardened/uclibc/index.xml?r1=1.6&r2=1.7

Index: index.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/hardened/uclibc/index.xml,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- index.xml	17 Dec 2012 19:38:04 -0000	1.6
+++ index.xml	6 Jan 2013 06:37:24 -0000	1.7
@@ -91,10 +91,10 @@
 </tr>
 <tr>
 	<ti>arm</ti>
-	<ti>armv7a/softfloat</ti>
+	<ti>armv7a-softfp</ti>
 	<ti>Yes</ti>
 	<ti>No</ti>
-	<ti>stage4</ti>
+	<ti>stage3</ti>
 	<ti>[mirror]/experimental/arm/uclibc</ti>
 </tr>
 <tr>





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

* [gentoo-commits] gentoo commit in xml/htdocs/proj/en/hardened/uclibc: index.xml
@ 2013-05-31 16:15 Anthony G. Basile (blueness)
  0 siblings, 0 replies; 9+ messages in thread
From: Anthony G. Basile (blueness) @ 2013-05-31 16:15 UTC (permalink / raw
  To: gentoo-commits

blueness    13/05/31 16:15:02

  Modified:             index.xml
  Log:
  Update info about available media

Revision  Changes    Path
1.8                  xml/htdocs/proj/en/hardened/uclibc/index.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/hardened/uclibc/index.xml?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/hardened/uclibc/index.xml?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/hardened/uclibc/index.xml?r1=1.7&r2=1.8

Index: index.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/hardened/uclibc/index.xml,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- index.xml	6 Jan 2013 06:37:24 -0000	1.7
+++ index.xml	31 May 2013 16:15:02 -0000	1.8
@@ -86,7 +86,7 @@
 	<ti>Generic</ti>
 	<ti>Yes</ti>
 	<ti>Yes</ti>
-	<ti>stage3 livecd desktop</ti>
+	<ti>stage3 desktop</ti>
 	<ti>[mirror]/experimental/amd64/uclibc</ti>
 </tr>
 <tr>
@@ -110,7 +110,7 @@
 	<ti>mipsel3</ti>
 	<ti>Yes</ti>
 	<ti>No</ti>
-	<ti>stage4</ti>
+	<ti>stage3</ti>
 	<ti>[mirror]/experimental/mips/uclibc</ti>
 </tr>
 <tr>





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

* [gentoo-commits] gentoo commit in xml/htdocs/proj/en/hardened/uclibc: index.xml
@ 2013-06-17 18:02 Anthony G. Basile (blueness)
  0 siblings, 0 replies; 9+ messages in thread
From: Anthony G. Basile (blueness) @ 2013-06-17 18:02 UTC (permalink / raw
  To: gentoo-commits

blueness    13/06/17 18:02:33

  Modified:             index.xml
  Log:
  Update info about armv7a-hardfp

Revision  Changes    Path
1.10                 xml/htdocs/proj/en/hardened/uclibc/index.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/hardened/uclibc/index.xml?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/hardened/uclibc/index.xml?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/proj/en/hardened/uclibc/index.xml?r1=1.9&r2=1.10

Index: index.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/hardened/uclibc/index.xml,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- index.xml	3 Jun 2013 01:43:27 -0000	1.9
+++ index.xml	17 Jun 2013 18:02:33 -0000	1.10
@@ -99,6 +99,14 @@
 	<ti>[mirror]/experimental/arm/uclibc</ti>
 </tr>
 <tr>
+	<ti>arm</ti>
+	<ti>armv7a-hardfp</ti>
+	<ti>Yes</ti>
+	<ti>No</ti>
+	<ti>stage3</ti>
+	<ti>[mirror]/experimental/arm/uclibc</ti>
+</tr>
+<tr>
 	<ti>mips</ti>
 	<ti>mips32r2</ti>
 	<ti>Yes</ti>





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

end of thread, other threads:[~2013-06-17 18:02 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-01-06  6:37 [gentoo-commits] gentoo commit in xml/htdocs/proj/en/hardened/uclibc: index.xml Anthony G. Basile (blueness)
  -- strict thread matches above, loose matches on Subject: below --
2013-06-17 18:02 Anthony G. Basile (blueness)
2013-05-31 16:15 Anthony G. Basile (blueness)
2012-12-17 19:38 Anthony G. Basile (blueness)
2012-11-03 18:30 Anthony G. Basile (blueness)
2012-11-02 21:43 Anthony G. Basile (blueness)
2012-11-02 19:40 Francisco Blas Izquierdo Riera (klondike)
2012-11-02 10:32 Anthony G. Basile (blueness)
2012-11-02  3:22 Anthony G. Basile (blueness)

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