[BACK]Return to elf2ecoff.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / elf2ecoff

Diff for /src/usr.bin/elf2ecoff/Attic/elf2ecoff.c between version 1.1 and 1.2

version 1.1, 1996/10/02 21:52:33 version 1.2, 1997/10/13 20:08:21
Line 1 
Line 1 
   /*      $OpenBSD$       */
   /*      $NetBSD: elf2ecoff.c,v 1.8 1997/07/20 03:50:54 jonathan Exp $   */
   
 /*  /*
    * Copyright (c) 1997 Jonathan Stone
    *    All rights reserved.
  * Copyright (c) 1995   * Copyright (c) 1995
  *      Ted Lemon (hereinafter referred to as the author)   *      Ted Lemon (hereinafter referred to as the author)
  *   *
Line 26 
Line 31 
  * SUCH DAMAGE.   * SUCH DAMAGE.
  */   */
   
   /* elf2ecoff.c
   
      This program converts an elf executable to an ECOFF executable.
      No symbol table is retained.   This is useful primarily in building
      net-bootable kernels for machines (e.g., DECstation and Alpha) which
      only support the ECOFF object file format. */
   
 #include <sys/types.h>  #include <sys/types.h>
 #include <fcntl.h>  #include <fcntl.h>
 #include <unistd.h>  #include <unistd.h>
Line 311 
Line 323 
           cur_vma = ph [i].p_vaddr + ph [i].p_filesz;            cur_vma = ph [i].p_vaddr + ph [i].p_filesz;
         }          }
     }      }
   
     /*
      * Write a page of padding for boot PROMS that read entire pages.
      * Without this, they may attempt to read past the end of the
      * data section, incur an error, and refuse to boot.
      */
      {
        char obuf [4096];
        memset (obuf, 0, sizeof obuf);
        if (write(outfile, obuf, sizeof(obuf)) != sizeof(obuf)) {
           fprintf(stderr, "Error writing PROM padding: %s\n",
                   strerror(errno));
           exit(1);
        }
      }
   
   /* Looks like we won... */    /* Looks like we won... */
   exit (0);    exit (0);

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2