diff options
Diffstat (limited to 'ANDROID_3.4.5/arch/powerpc/boot/zImage.ps3.lds.S')
-rw-r--r-- | ANDROID_3.4.5/arch/powerpc/boot/zImage.ps3.lds.S | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/ANDROID_3.4.5/arch/powerpc/boot/zImage.ps3.lds.S b/ANDROID_3.4.5/arch/powerpc/boot/zImage.ps3.lds.S deleted file mode 100644 index aaa469c1..00000000 --- a/ANDROID_3.4.5/arch/powerpc/boot/zImage.ps3.lds.S +++ /dev/null @@ -1,50 +0,0 @@ -OUTPUT_ARCH(powerpc:common) -ENTRY(_zimage_start) -EXTERN(_zimage_start) -SECTIONS -{ - _vmlinux_start = .; - .kernel:vmlinux.bin : { *(.kernel:vmlinux.bin) } - _vmlinux_end = .; - - . = ALIGN(4096); - _dtb_start = .; - .kernel:dtb : { *(.kernel:dtb) } - _dtb_end = .; - - . = ALIGN(4096); - _initrd_start = .; - .kernel:initrd : { *(.kernel:initrd) } - _initrd_end = .; - - _start = .; - .text : - { - *(.text) - *(.fixup) - } - _etext = .; - . = ALIGN(4096); - .data : - { - *(.rodata*) - *(.data*) - *(.sdata*) - __got2_start = .; - *(.got2) - __got2_end = .; - } - - . = ALIGN(4096); - _edata = .; - - . = ALIGN(4096); - __bss_start = .; - .bss : - { - *(.sbss) - *(.bss) - } - . = ALIGN(4096); - _end = . ; -} |