summaryrefslogtreecommitdiffstats
path: root/contrib/errcode/README
diff options
context:
space:
mode:
authorStefan Hajnoczi2010-07-11 09:52:57 +0200
committerMichael Brown2010-07-17 18:04:16 +0200
commit232c208882047210b0054d3d939ae5d45ab214f7 (patch)
treea3d21dda1794222c9ab41f26b80447bc9e19d369 /contrib/errcode/README
parent[settings] Unregister the children when unregistering the parent (diff)
downloadipxe-232c208882047210b0054d3d939ae5d45ab214f7.tar.gz
ipxe-232c208882047210b0054d3d939ae5d45ab214f7.tar.xz
ipxe-232c208882047210b0054d3d939ae5d45ab214f7.zip
[errcode] Remove unused contrib/errcode scripts
The new errdb error code database is more accurate than the regular expression-based errcode scripts. This patch removes errcode scripts in favor of errdb. The gpxebot.py script is no longer needed, gpxebot has been released as a separate open source codebase: http://git.etherboot.org/?p=people/stefanha/gpxebot.git;a=summary Signed-off-by: Stefan Hajnoczi <stefanha@gmail.com> Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'contrib/errcode/README')
-rw-r--r--contrib/errcode/README35
1 files changed, 0 insertions, 35 deletions
diff --git a/contrib/errcode/README b/contrib/errcode/README
deleted file mode 100644
index eb66d069..00000000
--- a/contrib/errcode/README
+++ /dev/null
@@ -1,35 +0,0 @@
-Error Code Lookup for iPXE
-==========================
-This program looks up iPXE error codes so you can locate the line of source
-code which produced the error.
-
-Setup
------
-You must run:
-./build_errcodedb.py >errcodedb.py
-
-This extracts error code definitions from the iPXE source code and produces a
-"database" which is used by the main program.
-
-Once you have done this errcode.py and errcodedb.py are the only files you
-need. They are now independent of the iPXE source code and can be moved
-anywhere.
-
-[OPTIONAL]
-A PHP script is provided as a web interface. First edit errcode.php to point
-$ERRCODE_PATH to the errcode.py script. Then move errcode.php to a location
-visible from your web server.
-
-[OPTIONAL]
-A simple IRC bot is provided. Edit ipxebot.py to fill in the IRC details.
-
-Usage
------
-Looking up error codes on the command-line:
-./errcode.py 0x12345678
-
-Further information
--------------------
-See http://etherboot.org/.
-
-Released under the GPL and written by Stefan Hajnoczi <stefanha@gmail.com>.