Changeset efa9b73 in mainline
- Timestamp:
- 2005-08-17T12:01:35Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c723d7a1
- Parents:
- 3902f8a4
- Location:
- arch/ppc
- Files:
-
- 4 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/ppc/Makefile.inc
r3902f8a4 refa9b73 1 PPC_TARGET=ppc-linux-gnu 2 1 3 PPC_CC_DIR=/usr/local/ppc/bin 2 CC=$(PPC_CC_DIR)/ppc-linux-gnu-gcc 3 AS=$(PPC_CC_DIR)/ppc-linux-gnu-as 4 LD=$(PPC_CC_DIR)/ppc-linux-gnu-ld 4 PPC_BINUTILS_DIR=/usr/local/ppc/bin 5 6 CC=$(PPC_CC_DIR)/$(PPC_TARGET)-gcc 7 AS=$(PPC_BINUTILS_DIR)/$(PPC_TARGET)-as 8 LD=$(PPC_BINUTILS_DIR)/$(PPC_TARGET)-ld 5 9 6 10 ASFLAGS= … … 15 19 arch/fpu_context.c \ 16 20 arch/dummy.s \ 17 arch/start.S 21 arch/start.S \ 22 arch/asm.s \ 23 arch/putchar.c \ 24 arch/mm/frame.c \ 25 arch/mm/page.c -
arch/ppc/_link.ld
r3902f8a4 refa9b73 15 15 *(K_TEXT_START) 16 16 *(.text); 17 *(.rodata); 18 *(.rodata.*); 19 *(.data); /* initialized data */ 20 *(.sdata); 21 *(.sbss); 22 *(.bss); /* uninitialized static variables */ 23 *(COMMON); /* global variables */ 17 24 ktext_end = .; 18 25 -
arch/ppc/boot/Makefile
r3902f8a4 refa9b73 1 PPC_BINUTILS_DIR=/usr/local/ppc/bin 2 PPC_TARGET=ppc-linux-gnu 3 1 4 .PHONY: nothing build 2 5 … … 6 9 cp boot.bin ../../../src/load.bin 7 10 8 AS= /usr/local/mips/bin/decstation-ultrix-as9 LD= /usr/local/mips/bin/decstation-ultrix-ld11 AS=$(PPC_BINUTILS_DIR)/$(PPC_TARGET)-as 12 LD=$(PPC_BINUTILS_DIR)/$(PPC_TARGET)-ld 10 13 11 ASFLAGS= -mips2 -EL12 LFLAGS=--oformat=binary - mips2 -EL -e start14 ASFLAGS= 15 LFLAGS=--oformat=binary -e start 13 16 14 17 boot.bin: boot.o -
arch/ppc/boot/boot.s
r3902f8a4 refa9b73 1 1 # 2 # Copyright (C) 200 1-2004 Jakub Jermar2 # Copyright (C) 2005 Martin Decky 3 3 # All rights reserved. 4 4 # … … 29 29 .text 30 30 31 .set noreorder32 .set nomacro33 34 31 .global start 35 32 start: -
arch/ppc/src/dummy.s
r3902f8a4 refa9b73 48 48 .global arch_late_init 49 49 .global calibrate_delay_loop 50 .global asm_delay_loop 50 51 .global dummy 51 52
Note:
See TracChangeset
for help on using the changeset viewer.