Changeset 38de8a5 in mainline for arch/mips/_link.ld


Ignore:
Timestamp:
2005-09-09T13:50:54Z (20 years ago)
Author:
Ondrej Palkovsky <ondrap@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
b02e5d1
Parents:
b0edf3b2
Message:

MIPS architecture now works without any problems in

  • msim: compile as OUTPUT_FORMAT(binary)
  • gxemul: compile as OUTPUT_FORMAT(ecoff-littlemips), or create

configuration file for binary format (will be done later)

  • simics: compile as OUTPUT_FORMAT(elf32-little), might work with binary

format, didn't try yet.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • arch/mips/_link.ld

    rb0edf3b2 r38de8a5  
    77 */
    88
     9/* OUTPUT_FORMAT(ecoff-littlemips) */
    910OUTPUT_FORMAT(binary)
     11/* OUTPUT_FORMAT(elf32-little) */
     12
    1013ENTRY(kernel_image_start)
    1114
    1215SECTIONS {
    13         .image 0x80000000: AT (0x80000000) {
     16        .image 0x80000000: AT (0) {
    1417                _gp = 0x00000000;
    1518               
     
    2831                *(.sdata);
    2932                *(.sbss);
     33                *(.comment);
     34                *(.pdr);
     35
    3036                hardcoded_ktext_size = .;
    3137                LONG(ktext_end - ktext_start); 
     
    4349                kdata_end = .;
    4450
    45         } = 0x00000000
     51        }
    4652}
Note: See TracChangeset for help on using the changeset viewer.