kerncomp-cvs Mailing List for kerncomp
Brought to you by:
delsarto,
dswatgelato
You can subscribe to this list here.
2005 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(8) |
Jun
(1) |
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
|
---|
From: Ian W. <del...@us...> - 2005-09-27 00:26:09
|
Update of /cvsroot/kerncomp/kerncomp/php In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9242 Modified Files: index.php rss.php Log Message: show status report for each entry in title Index: rss.php =================================================================== RCS file: /cvsroot/kerncomp/kerncomp/php/rss.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** rss.php 12 May 2005 02:34:39 -0000 1.4 --- rss.php 27 Sep 2005 00:25:58 -0000 1.5 *************** *** 42,65 **** $description = "<h2>Kernel Compile Results</h2>"; ! while ( $line = fgets($logfile) ) { ! ! list ($test_name, $status, $warnings) = split(" ",$line); ! $explaination = fgets($logfile); ! ! $full_result = "$RESULTS/$dirname/$test_name-log.html"; ! if ($is_archived) ! $full_result = $full_result.".bz2"; ! $warnings = trim($warnings); ! $explaination = rtrim($explaination); ! $description = $description."<p><pre><a href=\"http://www.gelato.unsw.edu.au/kerncomp/$full_result\">$test_name</a> | $status [$warnings] | $explaination</pre></p>"; ! } ! fclose($logfile); ! $dataArray[] = array("title" => "$version : $date : $time", ! "link" => "http://www.gelato.unsw.edu.au/kerncomp", ! "description" => htmlspecialchars($description)); ! } --- 42,94 ---- $description = "<h2>Kernel Compile Results</h2>"; + $build = 0; + $build_ok = 0; + $patch = 0; + $patch_ok = 0; + $boot = 0; + $boot_ok = 0; ! while ( $line = fgets($logfile) ) { ! list ($test_name, $status, $warnings) = split(" ",$line); ! $explaination = fgets($logfile); ! $full_result = "$RESULTS/$dirname/$test_name-log.html"; ! if ($is_archived) ! $full_result = $full_result.".bz2"; ! $warnings = trim($warnings); ! $explaination = rtrim($explaination); ! $description = $description."<p><pre><a href=\"http://www.gelato.unsw.edu.au/kerncomp/$full_result\">$test_name</a> | $status [$warnings] | $explaination</pre></p>"; ! foreach(explode("|", $status) as $stat) ! { ! switch ($stat) ! { ! case "BUILD_OK": ! $build++; ! $build_ok++; ! break; ! case "BUILD_FAIL": ! $build++; ! break; ! case "PATCH_OK": ! $patch++; ! $patch_ok++; ! break; ! case "PATCH_FAIL": ! $patch++; ! break; ! case "BOOT_OK": ! $boot++; ! $boot_ok++; ! break; ! case "BOOT_FAIL": ! $boot++; ! break; ! } ! } ! } fclose($logfile); ! $dataArray[] = array("title" => "$version : $date : [patch $patch_ok/$patch] [build $build_ok/$build] [boot $boot_ok/$boot]", ! "link" => "http://www.gelato.unsw.edu.au/kerncomp", ! "description" => htmlspecialchars($description)); } Index: index.php =================================================================== RCS file: /cvsroot/kerncomp/kerncomp/php/index.php,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** index.php 9 May 2005 23:22:18 -0000 1.1.1.1 --- index.php 27 Sep 2005 00:25:58 -0000 1.2 *************** *** 11,15 **** <h1>IA64 Git AutoBuild Results</h1> ! <P>This page is generated by the Gelato@UNSW Git(Cogito) AutoBuild scripts daily. </P> <P> A <tt>cg-pull</tt> is executed each day, then each "test" is a build of a different configuration. The .config files are available <a href="./configs">here</a>, all <i>xxx_defconfig</i> files can be found in the kernel source tree <i>arch/ia64/configs</i>. </P> --- 11,15 ---- <h1>IA64 Git AutoBuild Results</h1> ! <P>This page is generated by the Gelato@UNSW Git (Cogito) AutoBuild scripts daily. </P> <P> A <tt>cg-pull</tt> is executed each day, then each "test" is a build of a different configuration. The .config files are available <a href="./configs">here</a>, all <i>xxx_defconfig</i> files can be found in the kernel source tree <i>arch/ia64/configs</i>. </P> |
From: Ian W. <del...@us...> - 2005-06-08 01:36:57
|
Update of /cvsroot/kerncomp/www In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21573 Modified Files: index.html Log Message: update with a few new projects Index: index.html =================================================================== RCS file: /cvsroot/kerncomp/www/index.html,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** index.html 26 May 2005 22:18:29 -0000 1.6 --- index.html 8 Jun 2005 01:36:47 -0000 1.7 *************** *** 90,93 **** --- 90,113 ---- <dd>HP create PA-RISC kernels and package them into a .deb on <a href="http://cvs.parisc-linux.org/download/linux-2.6/">their site</a>. + <dt>toolchain.org</dt> + + <dd><a href="http://www.toolchain.org">toolchain.org</a> does an + automated build of the toolchain for a number of architectures. Their + scripts, called <a + href="http://www.toolchain.org/nightlies/build-scripts-0.1.tar.gz">builder</a>, + are freely available. + </dd> + + <dt>IBM Automated Tests</dt> + + <dd>IBM <a + href="http://marc.theaimsgroup.com/?l=linux-kernel&m=111775021327595&w=2">announced</a> + their automated build and regression test project. Results are + available in a <a + href="http://ftp.kernel.org/pub/linux/kernel/people/mbligh/abat/regression_matrix.html">HTML + format</a>. The latest kernels are booted and tested on a range of + AMD, x86 and Power hardware. + </dd> + </dl> |
From: Ian W. <del...@us...> - 2005-05-26 22:18:40
|
Update of /cvsroot/kerncomp/www In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10057 Modified Files: index.html Log Message: add link to hp Index: index.html =================================================================== RCS file: /cvsroot/kerncomp/www/index.html,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** index.html 20 May 2005 00:39:45 -0000 1.5 --- index.html 26 May 2005 22:18:29 -0000 1.6 *************** *** 86,89 **** --- 86,93 ---- you are interested in.</dd> + <dt>HP's PA-RISC autobuild</dt> + + <dd>HP create PA-RISC kernels and package them into a .deb on <a href="http://cvs.parisc-linux.org/download/linux-2.6/">their site</a>. + </dl> *************** *** 118,120 **** </body> ! </html> \ No newline at end of file --- 122,124 ---- </body> ! </html> |
From: Ian W. <del...@us...> - 2005-05-20 00:47:22
|
Update of /cvsroot/kerncomp/www In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1076 Modified Files: kerncomp.css Log Message: pad out table of links Index: kerncomp.css =================================================================== RCS file: /cvsroot/kerncomp/www/kerncomp.css,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** kerncomp.css 10 May 2005 00:38:59 -0000 1.1 --- kerncomp.css 20 May 2005 00:47:11 -0000 1.2 *************** *** 35,38 **** --- 35,41 ---- padding:5px; border-left: solid 10px #555; + padding-left: 10px; + margin-top: 15px; + background: #fff; } |
From: Ian W. <del...@us...> - 2005-05-20 00:39:57
|
Update of /cvsroot/kerncomp/www In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31661 Modified Files: index.html Log Message: fix to validate Index: index.html =================================================================== RCS file: /cvsroot/kerncomp/www/index.html,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** index.html 20 May 2005 00:37:33 -0000 1.4 --- index.html 20 May 2005 00:39:45 -0000 1.5 *************** *** 57,65 **** <dt>Kernel Cross Compile Tests</dt> ! <dd>Jan Dittmer runs a <a href="http://l4x.org/k">comprehensive kernel cross compile</a> which automatically builds the latest releases on 23 platforms.</p> ! <p>It features <ul> <li>Cross compile of all architectures</li> --- 57,65 ---- <dt>Kernel Cross Compile Tests</dt> ! <dd><p>Jan Dittmer runs a <a href="http://l4x.org/k">comprehensive kernel cross compile</a> which automatically builds the latest releases on 23 platforms.</p> ! <p>It features</p> <ul> <li>Cross compile of all architectures</li> *************** *** 67,71 **** <li>Innovative web interface</li> </ul> - </p> <p>Jan is working to make his scripts publicly available soon.</p> --- 67,70 ---- |
From: Ian W. <del...@us...> - 2005-05-20 00:37:44
|
Update of /cvsroot/kerncomp/www In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31176 Modified Files: index.html Log Message: fix missing end tag Index: index.html =================================================================== RCS file: /cvsroot/kerncomp/www/index.html,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** index.html 20 May 2005 00:36:11 -0000 1.3 --- index.html 20 May 2005 00:37:33 -0000 1.4 *************** *** 83,89 **** <dd>Michael Still has a range of <a href="http://www.stillhq.com/linux/automated/">automated kernel build ! scripts. He uses a modular architecture where you create scripts that ! operate on clean kernel trees which are run against source trees you ! are interested in.</dd> </dl> --- 83,89 ---- <dd>Michael Still has a range of <a href="http://www.stillhq.com/linux/automated/">automated kernel build ! scripts</a>. He uses a modular architecture where you create scripts ! that operate on clean kernel trees which are run against source trees ! you are interested in.</dd> </dl> |
From: Ian W. <del...@us...> - 2005-05-20 00:36:29
|
Update of /cvsroot/kerncomp/www In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30822 Modified Files: index.html Log Message: update with new links Index: index.html =================================================================== RCS file: /cvsroot/kerncomp/www/index.html,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** index.html 10 May 2005 00:38:59 -0000 1.2 --- index.html 20 May 2005 00:36:11 -0000 1.3 *************** *** 54,57 **** --- 54,90 ---- Hewlett-Packard are generous supporters of Gelato@UNSW.</p> </dd> + + <dt>Kernel Cross Compile Tests</dt> + + <dd>Jan Dittmer runs a <a href="http://l4x.org/k">comprehensive kernel + cross compile</a> which automatically builds the latest releases on 23 + platforms.</p> + + <p>It features + <ul> + <li>Cross compile of all architectures</li> + <li>Building of different configs</li> + <li>Innovative web interface</li> + </ul> + </p> + + <p>Jan is working to make his scripts publicly available soon.</p> + + </dd> + + <dt>kautobuild</dt> + + <dd>The <a href="http://armlinux.simtec.co.uk/kautobuild/">ARM Linux + kautobuild</a> builds and reports on builds for the ARM platform. The + code does not appear to be currently available.</dd> + + <dt>Michael Still's Scripts</dt> + + <dd>Michael Still has a range of <a + href="http://www.stillhq.com/linux/automated/">automated kernel build + scripts. He uses a modular architecture where you create scripts that + operate on clean kernel trees which are run against source trees you + are interested in.</dd> + </dl> *************** *** 67,71 **** <h2>Wishlist</h2> ! <p>Here is a small wishlist of kernel autocompile and regression testing</p> <ul> --- 100,104 ---- <h2>Wishlist</h2> ! <p>Here is a small wish list of kernel autocompile and regression testing</p> <ul> |
From: Darren W. <ds...@ge...> - 2005-05-13 14:43:29
|
Hi all Kerncomp is now set to do nightly builds on tutti ,an SGI 4way Altix, this is just a test to develop kerncomp towards a more flexible implementation, I have encountered some basic problems mainly with paths, error checking and installation. This is what I have found thus far: - CONFIG_FILE path needs to be updated with a relative default path not the current absolute path. - An install script needs to be written that checks for required apps i.e. git, quilt, gcc, make any simulator that is required, rsync or error checking at runtime. After I installed the required apps and fixed the path problems I was able to successfully run and update my local web page http://quasar.cse.unsw.edu.au/~dsw/kerncomp Currently quasar shows all the broken and successful attempts, the next run will be a full defconfig and patch run after some benchmarking, which will come after fixing broken xfs Grrrrrr. - dsw -------------------------------------------------- Darren Williams <dsw AT gelato.unsw.edu.au> Gelato@UNSW <www.gelato.unsw.edu.au> -------------------------------------------------- |
From: dsw <dsw...@us...> - 2005-05-13 05:42:29
|
Update of /cvsroot/kerncomp/kerncomp In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24921 Modified Files: config Log Message: Add cogito to PATH, while Git and cogito are experimental they are installed in $HOME/bin Index: config =================================================================== RCS file: /cvsroot/kerncomp/kerncomp/config,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** config 9 May 2005 23:22:17 -0000 1.1.1.1 --- config 13 May 2005 05:42:21 -0000 1.2 *************** *** 36,40 **** REMOTE_RSYNC=ia...@le...:/var/www/gelato/docs/kerncomp #to use the ccache version of gcc ! PATH=/usr/lib/ccache:$PATH export PATH --- 36,46 ---- REMOTE_RSYNC=ia...@le...:/var/www/gelato/docs/kerncomp + # While Git and cogito are experimental the + # default install location is $HOME/bin + # add this to PATH + COGITO_PATH=$HOME/bin + export COGITO_PATH + #to use the ccache version of gcc ! PATH=/usr/lib/ccache:$COGITO_PATH:$PATH export PATH |
From: Ian W. <del...@us...> - 2005-05-12 02:34:49
|
Update of /cvsroot/kerncomp/kerncomp/php In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14010 Modified Files: rss.php Log Message: remove extra > Index: rss.php =================================================================== RCS file: /cvsroot/kerncomp/kerncomp/php/rss.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** rss.php 11 May 2005 06:53:36 -0000 1.3 --- rss.php 12 May 2005 02:34:39 -0000 1.4 *************** *** 80,84 **** <title>$value[title]</title>\n <link>$value[link]</link>\n ! <description>$value[description]></description>\n <guid isPermaLink=\"false\">$value[title]</guid> </item>\n"; --- 80,84 ---- <title>$value[title]</title>\n <link>$value[link]</link>\n ! <description>$value[description]</description>\n <guid isPermaLink=\"false\">$value[title]</guid> </item>\n"; *************** *** 88,90 **** echo "</rss>"; ! ?> \ No newline at end of file --- 88,90 ---- echo "</rss>"; ! ?> |