index : website | |
Archlinux32 website - obsolete | gitolite user |
summaryrefslogtreecommitdiff |
-rw-r--r-- | buildmaster/index.php | 11 |
diff --git a/buildmaster/index.php b/buildmaster/index.php index 1200e8e..4617103 100644 --- a/buildmaster/index.php +++ b/buildmaster/index.php @@ -13,7 +13,12 @@ if (array_key_exists("arch",$_GET)) { $archs[$param] = $param; } if (count($archs)==0) { - $archs = array("i486" => "i486", "i686" => "i686", "any" => "any"); + $archs = array( + "i486" => "i486", + "i686" => "i686", + "pentium4" => "pentium4", + "any" => "any" + ); } } else { $archs = array("i686" => "i686", "any" => "any"); @@ -49,7 +54,7 @@ if ($sarch_param != "") { <a href="log.php?show=email">email-log</a><br> sanity: of <a href="https://buildmaster.archlinux32.org/master-sanity.html">state files</a>, of <a href="https://buildmaster.archlinux32.org/mysql-sanity.html">mysql database</a> and - <a href="mysql-issues.php?ignore-i486">broken dependencies in the database</a><br> + <a href="mysql-issues.php?ignore-i486&ignore-pentium4">broken dependencies in the database</a><br> <a href="todos.php">todos</a> as <a href="todos.php?graph">graph</a><br> <a href="https://buildmaster.archlinux32.org/database-layout.png">database layout</a><br> @@ -59,7 +64,7 @@ if ($sarch_param != "") { <img src="statistics.php?log<?php print $march_param; ?>"><br> <?php -foreach (array("any", "i486", "i686", "") as $a) { +foreach (array("any", "i486", "i686", "pentium4", "") as $a) { print " <a href=\"?arch=" . $a . "\">"; switch ($a) { case "": |