summaryrefslogtreecommitdiffstats
path: root/contrib
diff options
context:
space:
mode:
authorMarty Connor2010-01-19 03:37:14 +0100
committerMarty Connor2010-01-19 03:37:14 +0100
commit272cfac8afd34852f6a7cac55c49162733c65d50 (patch)
tree3b018c8a59c1aa304b2bb8b74f98bfca3762f33e /contrib
parent[tftp] Abort requests with error code 0 (diff)
downloadipxe-272cfac8afd34852f6a7cac55c49162733c65d50.tar.gz
ipxe-272cfac8afd34852f6a7cac55c49162733c65d50.tar.xz
ipxe-272cfac8afd34852f6a7cac55c49162733c65d50.zip
[contrib] Add README file to rom-o-matic
Signed-off-by: Marty Connor <mdc@etherboot.org>
Diffstat (limited to 'contrib')
-rw-r--r--contrib/rom-o-matic/README62
1 files changed, 62 insertions, 0 deletions
diff --git a/contrib/rom-o-matic/README b/contrib/rom-o-matic/README
new file mode 100644
index 00000000..1e9abbce
--- /dev/null
+++ b/contrib/rom-o-matic/README
@@ -0,0 +1,62 @@
+ROM-o-matic web interface for building gPXE ROMs
+------------------------------------------------
+
+This web application generates gPXE images and sends them to a web
+browser.
+
+Available as part of the gPXE source code distribution, which can be
+downlaoded from http://etherboot.org/
+
+Author: Marty Connor <mdc@etherboot.org>
+License: GPLv2
+Support: http://etherboot.org/mailman/listinfo/gpxe
+ Please send support questions to the gPXE mailing list
+
+System Requirements
+-------------------
+- Apache web server
+- PHP 4+
+- Tools required to build gPXE installed on the server
+ - gcc, mtools, syslinux, perl, etc.
+
+Setup
+-----
+As distributed, it is expected that the rom-o-matic source code
+directory is in the contrib directory of a gPXE source distribution.
+
+The easiest way to do this is to simply put a gPXE source distribution
+in a web server accessible directory.
+
+If this is not the case, you will need to either edit the file
+
+ "globals.php"
+
+or create a file called
+
+ "local-config.php"
+
+containing the following lines:
+
+<?php
+$src_dir = "../../src";
+?>
+
+Then change the line beginning "$src_dir = " to the path of your gPXE
+source code tree.
+
+To make build times shorter, before you run rom-o-matic for the first time
+you should cd to the gpxe "src" directory and enter the following
+commands:
+
+ $ make
+ $ make bin/NIC
+
+This will pro-compile most object files and will make your rom-o-matic
+builds much faster.
+
+Running rom-o-matic from a web browser
+--------------------------------------
+Enter a URL like:
+
+ http://example.com/gpxe-1.x.x/contrib/rom-o-matic
+