mirror of
https://github.com/xcat2/xNBA.git
synced 2024-11-22 09:31:51 +00:00
8406115834
Access to the gpxe.org and etherboot.org domains and associated resources has been revoked by the registrant of the domain. Work around this problem by renaming project from gPXE to iPXE, and updating URLs to match. Also update README, LOG and COPYRIGHTS to remove obsolete information. Signed-off-by: Michael Brown <mcb30@ipxe.org>
36 lines
1017 B
Plaintext
36 lines
1017 B
Plaintext
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>.
|