Changeset efa9b73 in mainline for arch/ppc/boot
- Timestamp:
- 2005-08-17T12:01:35Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c723d7a1
- Parents:
- 3902f8a4
- Location:
- arch/ppc/boot
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
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:
Note:
See TracChangeset
for help on using the changeset viewer.