mirror of
https://github.com/ipxe/ipxe
synced 2026-02-14 02:31:26 +03:00
[contrib] Update rom-o-matic to build iPXE
Signed-off-by: Michael Brown <mcb30@ipxe.org>
This commit is contained in:
committed by
Michael Brown
parent
c1cc769ef4
commit
b7d923f468
@@ -27,25 +27,25 @@ Resources:
|
|||||||
<ul>
|
<ul>
|
||||||
<li>
|
<li>
|
||||||
Source code for iPXE images is available at
|
Source code for iPXE images is available at
|
||||||
<a href="http://etherboot.org/wiki/download" target="_blank">
|
<a href="http://www.ipxe.org/download" target="_blank">
|
||||||
http://etherboot.org/wiki/download</a>
|
http://www.ipxe.org/download</a>
|
||||||
<br><br>
|
<br><br>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
For general information about using iPXE, please visit the
|
For general information about using iPXE, please visit the
|
||||||
<a href="http://www.etherboot.org/" target="_blank">
|
<a href="http://www.ipxe.org/" target="_blank">
|
||||||
Etherboot Project Home Page</a>
|
iPXE Project Home Page</a>
|
||||||
<br><br>
|
<br><br>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
For Email-based support for iPXE please join
|
For Email-based support for iPXE please join
|
||||||
<a href="http://etherboot.org/wiki/mailinglists" target="_blank">
|
<a href="http://www.ipxe.org/contact" target="_blank">
|
||||||
Etherboot Project mailing lists.</a>
|
iPXE Project mailing lists.</a>
|
||||||
<br><br>
|
<br><br>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
For real-time online iPXE support via IRC please visit the
|
For real-time online iPXE support via IRC please visit the
|
||||||
<a href="irc://irc.freenode.net/%23etherboot"> #etherboot channel
|
<a href="irc://irc.freenode.net/%23ipxe"> #ipxe channel
|
||||||
of irc.freenode.net</a>.
|
of irc.freenode.net</a>.
|
||||||
<br><br>
|
<br><br>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -179,7 +179,7 @@ if ( $embedded_script != "" ) {
|
|||||||
|
|
||||||
// Make the requested image. $status is set to 0 on success
|
// Make the requested image. $status is set to 0 on success
|
||||||
$make_target = "bin/${nic}.${fmt_extension}";
|
$make_target = "bin/${nic}.${fmt_extension}";
|
||||||
$make_cmd = "make -C '$build_dir' '$make_target' $emb_script_cmd $2>&1";
|
$make_cmd = "make -C '$build_dir' '$make_target' $emb_script_cmd 2>&1";
|
||||||
|
|
||||||
exec ( $make_cmd, $maketxt, $status );
|
exec ( $make_cmd, $maketxt, $status );
|
||||||
|
|
||||||
|
|||||||
@@ -37,7 +37,7 @@
|
|||||||
<em>PCI VENDOR CODE</em> and <em>PCI DEVICE CODE</em> <br>
|
<em>PCI VENDOR CODE</em> and <em>PCI DEVICE CODE</em> <br>
|
||||||
that match the NIC device for which you are making this image.<br><br>
|
that match the NIC device for which you are making this image.<br><br>
|
||||||
Information on how to determine NIC PCI IDs may be found
|
Information on how to determine NIC PCI IDs may be found
|
||||||
<a href="http://etherboot.org/wiki/romburning"
|
<a href="http://www.ipxe.org/howto/romburning"
|
||||||
target="_blank">here</a>.
|
target="_blank">here</a>.
|
||||||
<br><br>
|
<br><br>
|
||||||
PCI VENDOR CODE: <? echo textbox ( "pci_vendor_code",
|
PCI VENDOR CODE: <? echo textbox ( "pci_vendor_code",
|
||||||
|
|||||||
@@ -98,6 +98,17 @@ $flag_table = array (
|
|||||||
"cfgsec" => "general"
|
"cfgsec" => "general"
|
||||||
),
|
),
|
||||||
|
|
||||||
|
"KEYBOARD_MAP"
|
||||||
|
=> array (
|
||||||
|
"flag" => "KEYBOARD_MAP",
|
||||||
|
"type" => "choice",
|
||||||
|
"options" => array("al","az","bg","by","cf","cz","de","dk","es","et","fi","fr",
|
||||||
|
"gr","hu","il","it","lt","mk","mt","nl","no","pl","pt","ro","ru","sg","sr",
|
||||||
|
"th","ua","uk","us","wo"),
|
||||||
|
"value" => "us",
|
||||||
|
"cfgsec" => "console"
|
||||||
|
),
|
||||||
|
|
||||||
// End Console Options
|
// End Console Options
|
||||||
|
|
||||||
// Begin Network Protocol Options:
|
// Begin Network Protocol Options:
|
||||||
@@ -487,6 +498,17 @@ $flag_table = array (
|
|||||||
|
|
||||||
// End Wireless options
|
// End Wireless options
|
||||||
|
|
||||||
|
// Obscure options required to compile
|
||||||
|
"NETDEV_DISCARD_RATE"
|
||||||
|
=> array (
|
||||||
|
"flag" => "NETDEV_DISCARD_RATE",
|
||||||
|
"type" => "integer",
|
||||||
|
"value" => "0",
|
||||||
|
"cfgsec" => "general",
|
||||||
|
"hide_from_user" => true
|
||||||
|
)
|
||||||
|
|
||||||
|
// End Obscure options
|
||||||
);
|
);
|
||||||
|
|
||||||
// For emacs:
|
// For emacs:
|
||||||
|
|||||||
Reference in New Issue
Block a user