? linux-2.0.x/arch/m68knommu/kernel/.depend ? linux-2.0.x/arch/m68knommu/lib/.depend ? linux-2.0.x/arch/m68knommu/mm/.depend ? linux-2.0.x/arch/m68knommu/platform/5272/.depend ? linux-2.0.x/arch/m68knommu/platform/5307/.depend ? linux-2.0.x/arch/m68knommu/platform/68328/.depend ? linux-2.0.x/arch/m68knommu/platform/68332/.depend ? linux-2.0.x/arch/m68knommu/platform/68EZ328/.depend ? linux-2.0.x/arch/m68knommu/platform/68EZ328/ucsimm/bootlogo.rh Index: linux-2.0.x/arch/m68knommu/platform/68EZ328/ucsimm/rom.ld =================================================================== RCS file: /cvs/sw/linux-2.0.x/arch/m68knommu/platform/68EZ328/ucsimm/rom.ld,v retrieving revision 1.3 diff -c -r1.3 rom.ld *** linux-2.0.x/arch/m68knommu/platform/68EZ328/ucsimm/rom.ld 27 Jun 2002 11:30:07 -0000 1.3 --- linux-2.0.x/arch/m68knommu/platform/68EZ328/ucsimm/rom.ld 8 Jul 2002 00:50:36 -0000 *************** *** 1,59 **** ! MEMORY ! { romvec : ORIGIN = 0x10c10000, LENGTH = 0x00400 flash : ORIGIN = 0x10c10400, LENGTH = 0xfec00 eflash : ORIGIN = 0x10d00000, LENGTH = 1 ramvec : ORIGIN = 0x00000000, LENGTH = 1024 ! ram : ORIGIN = 0x00020000, LENGTH = 0x00800000 - 0x20000 eram : ORIGIN = 0x00800000, LENGTH = 1 ! } ! SECTIONS ! { ! .romvec : ! { ! _romvec = . ; ! __rom_start = . ; } > romvec ! .text : ! { ! text_start = . ; ! *(.text) ! *(.rodata) ! _etext = . ; ! __data_rom_start = ALIGN ( 4 ) ; ! } > flash ! .eflash : ! { ! _flashend = . ; } > eflash ! .ramvec : ! { ! __ram_start = . ; ! _ramvec = . ; } > ramvec ! .data : ! { ! _sdata = . ; ! __data_start = . ; ! *(.data) ! _edata = . ; ! edata = ALIGN( 0x10 ) ; ! } > ram ! .bss : ! { ! _sbss = ALIGN( 0x10 ) ; ! __bss_start = ALIGN( 0x10 ) ; ! __data_end = ALIGN( 0x10 ) ; ! *(.bss) ! *(COMMON) ! _ebss = . ; ! __bss_end = . ; ! end = ALIGN( 0x10 ) ; ! _end = ALIGN( 0x10 ) ; } > ram ! .eram : ! { ! _ramend = . ; } > eram } --- 1,67 ---- ! MEMORY { romvec : ORIGIN = 0x10c10000, LENGTH = 0x00400 flash : ORIGIN = 0x10c10400, LENGTH = 0xfec00 eflash : ORIGIN = 0x10d00000, LENGTH = 1 ramvec : ORIGIN = 0x00000000, LENGTH = 1024 ! ram : ORIGIN = 0x00020000, LENGTH = 0x00800000 - 0x20000 eram : ORIGIN = 0x00800000, LENGTH = 1 ! } ! SECTIONS { ! ! .romvec : { ! . = ALIGN(4) ; ! _romvec = . ; ! __rom_start = . ; } > romvec ! ! .text : { ! . = ALIGN(4) ; ! text_start = . ; ! *(.text) ! *(.rodata) ! . = ALIGN(4) ; ! _etext = . ; ! __data_rom_start = . ; ! } > flash ! ! .eflash : { ! . = ALIGN(4) ; ! _flashend = . ; } > eflash ! ! .ramvec : { ! . = ALIGN(4) ; ! __ram_start = . ; ! _ramvec = . ; } > ramvec ! ! .data : { ! . = ALIGN(4) ; ! _sdata = . ; ! __data_start = . ; ! *(.data) ! . = ALIGN( 0x10 ) ; ! _edata = . ; ! edata = . ; ! } > ram ! ! .bss : { ! . = ALIGN( 0x10 ) ; ! _sbss = . ; ! __bss_start = . ; ! __data_end = . ; ! *(.bss) ! *(COMMON) ! . = ALIGN(0x10) ; ! _ebss = . ; ! __bss_end = . ; ! end = . ; ! _end = . ; } > ram ! ! .eram : { ! . = ALIGN(4) ; ! _ramend = . ; } > eram }