New Revision: https://blackfin.uclinux.org/doku.php?id=processes
Old Revision: https://blackfin.uclinux.org/doku.php?id=processes&rev=1
435747055
Edit Summary: fix graph
@@ -309,15 +309,15 @@
and the Blackfin/GNU Toolchain, which is managed in a similar way, excep
t for the bits and pieces (like the eclipse plugins, and ldr utils, which
we create, and maintain 100%):
<graphviz dot>
digraph {
- "blackfin.uclinux.org git" -> "release"
- "mainline uClibc" -> "blackfin.uclinux.org git" -> "mainline uClibc" ;
- "FSF gcc" -> "blackfin.uclinux.org git" -> "FSF gcc" ;
- "FSF binutils" -> "blackfin.uclinux.org git" -> "FSF binutils";
- "FSF gdb" -> "blackfin.uclinux.org git" -> "FSF gdb";
- "eclipse plugins" -> "blackfin.uclinux.org git";
- "ldr-utils" -> "blackfin.uclinux.org git";
+ "blackfin.uclinux.org svn" -> "release"
+ "mainline uClibc" -> "blackfin.uclinux.org svn" -> "mainline uClibc" ;
+ "FSF gcc" -> "blackfin.uclinux.org svn" -> "FSF gcc" ;
+ "FSF binutils" -> "blackfin.uclinux.org svn" -> "FSF binutils";
+ "FSF gdb" -> "blackfin.uclinux.org svn" -> "FSF gdb";
+ "eclipse plugins" -> "blackfin.uclinux.org svn";
+ "ldr-utils" -> "blackfin.uclinux.org svn";
}
</graphviz>
<note important>While the desire is that people should be able to take a
mainline project and have it function, and work with it, this is not the
most important thing when it comes to making releases, or doing developmen
t. While we spend best efforts in working with the mainline projects, peop
le who develop products with the Blackfin are recommended to get their sou
rce code from this site, which has been tested and released for production
development.
@@ -378,23 +378,23 @@
}
subgraph cluster_1 {
node [style=filled];
- rc1 -> rc2 -> "2012R1 head";
- label = "branch 2012R1";
+ rc1 -> rc2 -> "2008R1 head";
+ label = "branch 2008R1";
color=blue
}
subgraph cluster_2 {
node [style=filled];
rc_1 -> rc_2;
- label = "branch 2013R1";
+ label = "branch 2009R1";
color=blue
}
a1 -> rc1;
a3 -> rc_1;
"bug fix1" -> a2;
"bug fix2" -> a3;
- "bug fix2" -> "2012R1 head";
+ "bug fix2" -> "2008R1 head";
"bug fix1" -> rc1;
"new feature" -> a3;
"update to mainline" -> a3;
}
|