aboutsummaryrefslogtreecommitdiffstats
path: root/arch/mips/boot/elf2ecoff.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/mips/boot/elf2ecoff.c')
-rw-r--r--arch/mips/boot/elf2ecoff.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/mips/boot/elf2ecoff.c b/arch/mips/boot/elf2ecoff.c
index e19d906236af..8585078ae50e 100644
--- a/arch/mips/boot/elf2ecoff.c
+++ b/arch/mips/boot/elf2ecoff.c
@@ -29,7 +29,7 @@
29/* elf2ecoff.c 29/* elf2ecoff.c
30 30
31 This program converts an elf executable to an ECOFF executable. 31 This program converts an elf executable to an ECOFF executable.
32 No symbol table is retained. This is useful primarily in building 32 No symbol table is retained. This is useful primarily in building
33 net-bootable kernels for machines (e.g., DECstation and Alpha) which 33 net-bootable kernels for machines (e.g., DECstation and Alpha) which
34 only support the ECOFF object file format. */ 34 only support the ECOFF object file format. */
35 35
@@ -341,7 +341,7 @@ int main(int argc, char *argv[])
341 341
342 /* Figure out if we can cram the program header into an ECOFF 342 /* Figure out if we can cram the program header into an ECOFF
343 header... Basically, we can't handle anything but loadable 343 header... Basically, we can't handle anything but loadable
344 segments, but we can ignore some kinds of segments. We can't 344 segments, but we can ignore some kinds of segments. We can't
345 handle holes in the address space. Segments may be out of order, 345 handle holes in the address space. Segments may be out of order,
346 so we sort them first. */ 346 so we sort them first. */
347 347
@@ -514,7 +514,7 @@ int main(int argc, char *argv[])
514 514
515 for (i = 0; i < nosecs; i++) { 515 for (i = 0; i < nosecs; i++) {
516 printf 516 printf
517 ("Section %d: %s phys %lx size %lx file offset %lx\n", 517 ("Section %d: %s phys %lx size %lx file offset %lx\n",
518 i, esecs[i].s_name, esecs[i].s_paddr, 518 i, esecs[i].s_name, esecs[i].s_paddr,
519 esecs[i].s_size, esecs[i].s_scnptr); 519 esecs[i].s_size, esecs[i].s_scnptr);
520 } 520 }
@@ -551,7 +551,7 @@ int main(int argc, char *argv[])
551 } 551 }
552 552
553 /* 553 /*
554 * Copy the loadable sections. Zero-fill any gaps less than 64k; 554 * Copy the loadable sections. Zero-fill any gaps less than 64k;
555 * complain about any zero-filling, and die if we're asked to zero-fill 555 * complain about any zero-filling, and die if we're asked to zero-fill
556 * more than 64k. 556 * more than 64k.
557 */ 557 */