Files
ipxe/contrib/rom-o-matic/README
T

63 lines
1.5 KiB
Plaintext
Raw Normal View History

2010-04-19 20:16:01 +01:00
ROM-o-matic web interface for building iPXE ROMs
2010-01-18 21:37:14 -05:00
------------------------------------------------
2010-04-19 20:16:01 +01:00
This web application generates iPXE images and sends them to a web
2010-01-18 21:37:14 -05:00
browser.
2010-04-19 20:16:01 +01:00
Available as part of the iPXE source code distribution, which can be
2010-01-18 21:37:14 -05:00
downlaoded from http://etherboot.org/
Author: Marty Connor <mdc@etherboot.org>
License: GPLv2
2010-04-19 20:16:01 +01:00
Support: http://etherboot.org/mailman/listinfo/ipxe
Please send support questions to the iPXE mailing list
2010-01-18 21:37:14 -05:00
System Requirements
-------------------
- Apache web server
- PHP 4+
2010-04-19 20:16:01 +01:00
- Tools required to build iPXE installed on the server
2010-01-18 21:37:14 -05:00
- gcc, mtools, syslinux, perl, etc.
Setup
-----
As distributed, it is expected that the rom-o-matic source code
2010-04-19 20:16:01 +01:00
directory is in the contrib directory of a iPXE source distribution.
2010-01-18 21:37:14 -05:00
2010-04-19 20:16:01 +01:00
The easiest way to do this is to simply put a iPXE source distribution
2010-01-18 21:37:14 -05:00
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";
?>
2010-04-19 20:16:01 +01:00
Then change the line beginning "$src_dir = " to the path of your iPXE
2010-01-18 21:37:14 -05:00
source code tree.
To make build times shorter, before you run rom-o-matic for the first time
2010-04-19 20:16:01 +01:00
you should cd to the ipxe "src" directory and enter the following
2010-01-18 21:37:14 -05:00
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:
2010-04-19 20:16:01 +01:00
http://example.com/ipxe-1.x.x/contrib/rom-o-matic
2010-01-18 21:37:14 -05:00