You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.6 KiB
49 lines
1.6 KiB
# --- SDE-COPYRIGHT-NOTE-BEGIN --- |
|
# This copyright note is auto-generated by ./scripts/Create-CopyPatch. |
|
# |
|
# Filename: package/.../yaboot/powerpc64.patch |
|
# Copyright (C) 2004 - 2006 The T2 SDE Project |
|
# |
|
# More information can be found in the files COPYING and README. |
|
# |
|
# This patch file is dual-licensed. It is available under the license the |
|
# patched project is licensed under, as long as it is an OpenSource license |
|
# as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms |
|
# of the GNU General Public License as published by the Free Software |
|
# Foundation; either version 2 of the License, or (at your option) any later |
|
# version. |
|
# --- SDE-COPYRIGHT-NOTE-END --- |
|
|
|
Rediffed Fedora Core patch, triviality anyway. |
|
|
|
- Rene Rebe <rene@exactcode.de> |
|
|
|
--- yaboot-1.3.13/Makefile.orig 2004-07-11 23:12:03.000000000 +0300 |
|
+++ yaboot-1.3.13/Makefile 2005-10-31 20:06:40.295786056 +0200 |
|
@@ -30,7 +30,7 @@ |
|
|
|
# The flags for the yaboot binary. |
|
# |
|
-YBCFLAGS = -Os $(CFLAGS) -nostdinc -Wall -isystem `gcc -print-file-name=include` -fsigned-char |
|
+YBCFLAGS = -Os -m32 $(CFLAGS) -nostdinc -Wall -isystem `$(CC) -m32 -print-file-name=include` -fsigned-char |
|
YBCFLAGS += -DVERSION=\"${VERSION}\" #" |
|
YBCFLAGS += -DTEXTADDR=$(TEXTADDR) -DDEBUG=$(DEBUG) |
|
YBCFLAGS += -DMALLOCADDR=$(MALLOCADDR) -DMALLOCSIZE=$(MALLOCSIZE) |
|
@@ -59,7 +59,7 @@ |
|
|
|
# Link flags |
|
# |
|
-LFLAGS = -Ttext $(TEXTADDR) -Bstatic |
|
+LFLAGS = -Ttext $(TEXTADDR) -Bstatic -melf32ppclinux |
|
|
|
# Libraries |
|
# |
|
@@ -99,7 +99,7 @@ |
|
AS := $(CROSS)as |
|
OBJCOPY := $(CROSS)objcopy |
|
|
|
-lgcc = `$(CC) -print-libgcc-file-name` |
|
+lgcc = `$(CC) -m32 -print-libgcc-file-name` |
|
|
|
all: yaboot addnote mkofboot |
|
|
|
|