summaryrefslogtreecommitdiff
path: root/tools/bddb/execute.php
diff options
context:
space:
mode:
authorMarek Vasut <[email protected]>2014-10-22 21:34:48 +0200
committerWolfgang Denk <[email protected]>2014-10-27 14:35:55 +0100
commit5038d7f189267004d924e827cf51d7520d65e42b (patch)
tree90b84cc661c559ae4878c0775cd135d32f5baa9c /tools/bddb/execute.php
parent1655f9f6c73c2b4b5d3f3b3c8aab999c194d8486 (diff)
ppc: Zap Hymod board
Remove this board as this is the only one last user of eeprom_probe(), which is pretty non-standard stuff. This patch also removes all the PHP, SQL and CSS stuff from U-Boot, which probably makes U-Boot a bit less IoT ;-) Signed-off-by: Marek Vasut <[email protected]> Cc: Masahiro Yamada <[email protected]> Cc: Tom Rini <[email protected]> Cc: Wolfgang Denk <[email protected]> Cc: Simon Glass <[email protected]> Cc: Heiko Schocher <[email protected]>
Diffstat (limited to 'tools/bddb/execute.php')
-rw-r--r--tools/bddb/execute.php33
1 files changed, 0 insertions, 33 deletions
diff --git a/tools/bddb/execute.php b/tools/bddb/execute.php
deleted file mode 100644
index 0b62882d751..00000000000
--- a/tools/bddb/execute.php
+++ /dev/null
@@ -1,33 +0,0 @@
-<?php // php pages made with phpMyBuilder <http://kyber.dk/phpMyBuilder> ?>
-<?php
- // (C) Copyright 2001
- // Murray Jensen <[email protected]>
- // CSIRO Manufacturing Science and Technology, Preston Lab
-
- $serno=isset($_REQUEST['serno'])?$_REQUEST['serno']:'';
-
- $submit=isset($_REQUEST['submit'])?$_REQUEST['submit']:"[NOT SET]";
-
- switch ($submit) {
-
- case "New":
- require("new.php");
- break;
-
- case "Edit":
- require("edit.php");
- break;
-
- case "Browse":
- require("browse.php");
- break;
-
- case "Log":
- require("brlog.php");
- break;
-
- default:
- require("badsubmit.php");
- break;
- }
-?>