[haiku-commits] r34856 - haiku/trunk/src/system/ldscripts/ppc

  • From: superstippi@xxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Sat, 2 Jan 2010 11:19:05 +0100 (CET)

Author: stippi
Date: 2010-01-02 11:19:05 +0100 (Sat, 02 Jan 2010)
New Revision: 34856
Changeset: http://dev.haiku-os.org/changeset/34856/haiku

Modified:
   haiku/trunk/src/system/ldscripts/ppc/kernel.ld
Log:
Patch by Andreas Faerber:
 * Fix duplicate assignment which is probably a merging artifact.

This patch was also a requirement for a working PPC KDL prompt. I didn't
apply the patches in order... Thanks a lot!


Modified: haiku/trunk/src/system/ldscripts/ppc/kernel.ld
===================================================================
--- haiku/trunk/src/system/ldscripts/ppc/kernel.ld      2010-01-02 10:13:21 UTC 
(rev 34855)
+++ haiku/trunk/src/system/ldscripts/ppc/kernel.ld      2010-01-02 10:19:05 UTC 
(rev 34856)
@@ -83,7 +83,6 @@
 
        /* unintialized data (in same segment as writable data) */
        __bss_start = .;
-       __bss_start = .;
        .sbss : { *(.sbss .sbss.* .gnu.linkonce.sb.*) }
        .bss : {
                *(.bss .bss.* .gnu.linkonce.b.*)


Other related posts:

  • » [haiku-commits] r34856 - haiku/trunk/src/system/ldscripts/ppc - superstippi