index : archweb32 | |
Archlinux32 website | gitolite user |
summaryrefslogtreecommitdiff |
author | Erich Eckner <git@eckner.net> | 2019-04-12 14:11:21 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2019-04-12 14:11:21 +0200 |
commit | a853575b0532916f8633ad90b58e792aa45a9e70 (patch) | |
tree | 16d25dbcbbbae8a07867acd7e51c81aaa7f21693 /buildmaster | |
parent | b1b6b1b2674a68034c39a3f6dd71abdd59f76ed1 (diff) |
-rw-r--r-- | buildmaster/index.php | 11 | ||||
-rw-r--r-- | buildmaster/mysql-issues.php | 3 |
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 "": diff --git a/buildmaster/mysql-issues.php b/buildmaster/mysql-issues.php index 7fa7514..f84d9f5 100644 --- a/buildmaster/mysql-issues.php +++ b/buildmaster/mysql-issues.php @@ -10,6 +10,9 @@ require_once BASE . "/lib/mysql.php"; if (array_key_exists("ignore-i486", $_GET)) $ignore .= " AND `r_a`.`name` != \"i486\""; + if (array_key_exists("ignore-pentium4", $_GET)) + $ignore .= " AND `r_a`.`name` != \"pentium4\""; + ob_start(); ?> |