VirtualBox

Ignore:
Timestamp:
Sep 2, 2008 1:43:18 PM (17 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
35893
Message:

All: fix typo in filemuncher and 2 wrong headers resulting from it

Location:
trunk/src/VBox/Devices/PC/Etherboot-src/core
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/PC/Etherboot-src/core/proto_tftm.c

    r11982 r11989  
    11/**************************************************************************
    22*
    3 *    proto_tftm.c -- Etherboot Multicast TFTP 
     3*    proto_tftm.c -- Etherboot Multicast TFTP
    44*    Written 2003-2003 by Timothy Legge <[email protected]>
    55*
     
    1818*    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
    1919*
    20 *    This code is based on the DOWNLOAD_PROTO_TFTM section of 
     20*    This code is based on the DOWNLOAD_PROTO_TFTM section of
    2121*    Etherboot 5.3 core/nic.c and:
     22*
     23*    Anselm Martin Hoffmeister's previous proto_tftm.c multicast work
     24*    Eric Biederman's proto_slam.c
     25*
     26*    REVISION HISTORY:
     27*    ================
     28*    09-07-2003 timlegge        Release Version, Capable of Multicast Booting
     29*    08-30-2003 timlegge        Initial version, Assumes consecutive blocks
     30*
     31*    Indent Options: indent -kr -i8
     32***************************************************************************/
    2233
    2334/*
     
    2940 * of the GPL is applied is otherwise unspecified.
    3041 */
    31 *   
    32 *    Anselm Martin Hoffmeister's previous proto_tftm.c multicast work
    33 *    Eric Biederman's proto_slam.c
    34 *
    35 *    $Revision$
    36 *    $Author$
    37 *    $Date$
    38 *
    39 *    REVISION HISTORY:
    40 *    ================
    41 *    09-07-2003 timlegge        Release Version, Capable of Multicast Booting
    42 *    08-30-2003 timlegge        Initial version, Assumes consecutive blocks
    43 *
    44 *    Indent Options: indent -kr -i8
    45 ***************************************************************************/
    4642
    4743#ifdef DOWNLOAD_PROTO_TFTM
  • trunk/src/VBox/Devices/PC/Etherboot-src/core/pxe_export.c

    r1 r11989  
    1717 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
    1818 */
     19
     20/*
     21 * Sun GPL Disclaimer: For the avoidance of doubt, except that if any license choice
     22 * other than GPL or LGPL is available it will apply instead, Sun elects to use only
     23 * the General Public License version 2 (GPLv2) at this time for any software where
     24 * a choice of GPL license versions is made available with the language indicating
     25 * that GPLv2 or any later version may be used, or where a choice of which version
     26 * of the GPL is applied is otherwise unspecified.
     27 */
     28
    1929
    2030/* Tags used in this file:
     
    148158                nic.dev.how_probe = PROBE_FIRST;
    149159        }
    150        
     160
    151161        /* Call probe routine to bring up the NIC */
    152162        if ( eth_probe ( &nic.dev ) != PROBE_WORKED ) {
     
    400410        /* Send the packet */
    401411        eth_transmit ( dest, type, length, data );
    402        
     412
    403413        undi_transmit->Status = PXENV_STATUS_SUCCESS;
    404414        return PXENV_EXIT_SUCCESS;
     
    561571                                       *undi_get_nic_type ) {
    562572        struct dev *dev = &nic.dev;
    563        
     573
    564574        DBG ( "PXENV_UNDI_GET_NIC_TYPE" );
    565575        ENSURE_READY ( undi_get_nic_type );
    566        
     576
    567577        if ( dev->to_probe == PROBE_PCI ) {
    568578                struct pci_device *pci = &dev->state.pci.dev;
     
    646656                return PXENV_EXIT_FAILURE;
    647657        }
    648        
     658
    649659        /* Just in case some idiot actually looks at these fields when
    650660         * we weren't meant to fill them in...
     
    818828
    819829        /* Change server address if different */
    820         if ( tftp_open->ServerIPAddress && 
     830        if ( tftp_open->ServerIPAddress &&
    821831             tftp_open->ServerIPAddress!=arptable[ARP_SERVER].ipaddr.s_addr ) {
    822832                memset(arptable[ARP_SERVER].node, 0, ETH_ALEN ); /* kill arp */
     
    827837        request.name = tftp_open->FileName;
    828838        request.port = ntohs(tftp_open->TFTPPort);
    829 #ifdef WORK_AROUND_BPBATCH_BUG       
    830         /* Force use of port 69; BpBatch tries to use port 4 for some         
    831         * bizarre reason.         */       
     839#ifdef WORK_AROUND_BPBATCH_BUG
     840        /* Force use of port 69; BpBatch tries to use port 4 for some
     841        * bizarre reason.         */
    832842        request.port = TFTP_PORT;
    833843#endif
     
    894904        DBG ( " %d to %hx:%hx", block.len, tftp_read->Buffer.segment,
    895905              tftp_read->Buffer.offset );
    896  
     906
    897907        tftp_read->Status = PXENV_STATUS_SUCCESS;
    898908        return PXENV_EXIT_SUCCESS;
     
    10151025                return 0;
    10161026        }
    1017        
     1027
    10181028        /* Check dest_ip */
    10191029        if ( udp_read->dest_ip && ( udp_read->dest_ip != ip->dest.s_addr ) ) {
     
    10891099        DBG ( " %d->%@:%d (%d)", src_port, udp_write->ip, dst_port,
    10901100              udp_write->buffer_size );
    1091        
     1101
    10921102        /* FIXME: we ignore the gateway specified, since we're
    10931103         * confident of being able to do our own routing.  We should
    10941104         * probably allow for multiple gateways.
    10951105         */
    1096        
     1106
    10971107        /* Copy payload to packet buffer */
    10981108        packet_size = ( (void*)&packet->payload - (void*)packet )
     
    11981208#else /* !VBOX */
    11991209        /* I don't think there's actually any way we can be called in
    1200          * the middle of a DHCP request... 
     1210         * the middle of a DHCP request...
    12011211         */
    12021212        cached_info->opcode = BOOTP_REP;
     
    12251235        memcpy ( &cached_info->vendor.d, bootp_data.bootp_reply.bp_vend,
    12261236                 sizeof(cached_info->vendor.d) );
    1227        
     1237
    12281238        /* Copy to user-specified buffer, or set pointer to our buffer */
    12291239        get_cached_info->BufferLimit = sizeof(*cached_info);
     
    13251335
    13261336        DBG ( "PXENV_UNDI_LOADER" );
    1327        
     1337
    13281338        /* Set UNDI DS as our real-mode stack */
    13291339        use_undi_ds_for_rm_stack ( loader->undi_ds );
     
    13511361        /* Install PXE stack to area specified by NBP */
    13521362        install_pxe_stack ( VIRTUAL ( loader->undi_cs, 0 ) );
    1353        
     1363
    13541364        /* Call pxenv_start_undi to set parameters.  Why the hell PXE
    13551365         * requires these parameters to be provided twice is beyond
     
    13661376        PTR_TO_SEGOFF16 ( &pxe_stack->pxe, loader->pxe_ptr );
    13671377        PTR_TO_SEGOFF16 ( &pxe_stack->pxenv, loader->pxenv_ptr );
    1368        
     1378
    13691379        loader->Status = PXENV_STATUS_SUCCESS;
    13701380        return PXENV_EXIT_SUCCESS;
     
    15061516                ret = pxenv_undi_loader ( &params->loader );
    15071517                break;
    1508                
     1518
    15091519        default:
    15101520                DBG ( "PXENV_UNKNOWN_%hx", opcode );
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette