a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync<?php
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync/**
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync * Copyright (C) 2009 Marty Connor <mdc@etherboot.org>.
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync * Copyright (C) 2009 Entity Cyber, Inc.
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync *
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync * This program is free software; you can redistribute it and/or
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync * modify it under the terms of the GNU General Public License as
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync * published by the Free Software Foundation; either version 2 of the
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync * License, or any later version.
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync *
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync * This program is distributed in the hope that it will be useful, but
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync * WITHOUT ANY WARRANTY; without even the implied warranty of
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync * General Public License for more details.
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync *
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync * You should have received a copy of the GNU General Public License
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync * along with this program; if not, write to the Free Software
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync */
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync?>
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync <li>
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync Choose an output format: <?php echo keys_menubox ( "ofmt", $ofmts,
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync isset ( $_POST['ofmt"] ) ? $_POST['ofmt"] : "") ?>
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync <br><br>
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync </li>
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync <li>
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync Choose a NIC type: <?php echo keys_menubox ( "nic", $nics,
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync isset ( $_POST['nic"] ) ? $_POST['nic"] : "" ) ?>
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync <br><br>
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync </li>
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync <li>
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync <strong>( optional &mdash; for binary ROM image format only )</strong> <br><br>
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync If you choose <em>Binary ROM image</em> as your output format, you must<br>
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync enter <strong>4 hex digits</strong> below for
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync <em>PCI VENDOR CODE</em> and <em>PCI DEVICE CODE</em> <br>
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync that match the NIC device for which you are making this image.<br><br>
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync Information on how to determine NIC PCI IDs may be found
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync <a href="http://www.ipxe.org/howto/romburning"
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync target="_blank">here</a>.
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync <br><br>
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync PCI VENDOR CODE: <?php echo textbox ( "pci_vendor_code",
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync isset ( $_POST['pci_vendor_code"] ) ? $_POST['pci_vendor_code"]
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync : "", 6 ); ?>
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync &nbsp;&nbsp;
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync PCI DEVICE CODE: <?php echo textbox ( "pci_device_code",
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync isset ( $_POST['pci_device_code"] ) ? $_POST['pci_device_code"]
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync : "", 6 ); ?>
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync <h4>Please note for ROM images:</h4>
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync <ul>
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync <li>
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync If you enter PCI IDs, we will attempt to determine the correct<br>
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync driver to support them, and will ignore any NIC type entered
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync above.<br><br>
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync </li>
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync <li>
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync iPXE does not support all possible PCI IDs for supported
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync NICs.
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync <br><br>
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync </li>
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync </ul>
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync </li>