summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen Roovers <jer@gentoo.org>2017-02-15 09:02:24 +0100
committerJeroen Roovers <jer@gentoo.org>2017-02-15 09:02:46 +0100
commit29613bc12d55d561bcd62358841b91accf4b9351 (patch)
tree70cf08fc149965f1d36dd5445fb9e0b0dd314271 /sys-boot/palo/files
parentsys-boot/palo: Stable for HPPA too. (diff)
downloadgentoo-29613bc12d55d561bcd62358841b91accf4b9351.tar.gz
gentoo-29613bc12d55d561bcd62358841b91accf4b9351.tar.bz2
gentoo-29613bc12d55d561bcd62358841b91accf4b9351.zip
sys-boot/palo: Old.
Package-Manager: Portage-2.3.3, Repoman-2.3.1
Diffstat (limited to 'sys-boot/palo/files')
-rw-r--r--sys-boot/palo/files/palo-1.95-iplboot-gcc-4.9.patch36
-rw-r--r--sys-boot/palo/files/palo-1.95-toolchain.patch27
2 files changed, 0 insertions, 63 deletions
diff --git a/sys-boot/palo/files/palo-1.95-iplboot-gcc-4.9.patch b/sys-boot/palo/files/palo-1.95-iplboot-gcc-4.9.patch
deleted file mode 100644
index bff0f4c65270..000000000000
--- a/sys-boot/palo/files/palo-1.95-iplboot-gcc-4.9.patch
+++ /dev/null
@@ -1,36 +0,0 @@
-From eb869303b0c140e806f81f022211648e42290d6d Mon Sep 17 00:00:00 2001
-From: Helge Deller <deller@gmx.de>
-Date: Wed, 18 Feb 2015 21:26:43 +0100
-Subject: Add -fno-delete-null-pointer-checks compiler option
-
-Otherwise gcc-4.9 will miscompile the IPL bootloader since it
-will optimize out accesses to PAGE0
----
- ipl/Makefile | 4 +---
- 1 file changed, 1 insertion(+), 3 deletions(-)
-
-diff --git a/ipl/Makefile b/ipl/Makefile
-index 7695ea5..6b8e105 100644
---- a/ipl/Makefile
-+++ b/ipl/Makefile
-@@ -38,7 +38,7 @@ endif
- # Source sharing with palo
- VPATH=../lib:.
-
--CFLAGS = -DIPL_LOADER -I. -I../lib -I../include -O2 -mdisable-fpregs -Wall
-+CFLAGS = -DIPL_LOADER -I. -I../lib -I../include -O2 -mdisable-fpregs -Wall -fno-delete-null-pointer-checks
- LDFLAGS = -N --section-start .init=0x60000 -e '$$START$$'
-
- all: iplelf
-@@ -61,8 +61,6 @@ distclean: clean
- .S.o:
- $(CC) -D__ASSEMBLY__ $(AFLAGS) -traditional -c -o $*.o $<
-
--###############}
--
- byteio.o \
- ext2.o \
- fileio.o \
---
-cgit v0.12
-
diff --git a/sys-boot/palo/files/palo-1.95-toolchain.patch b/sys-boot/palo/files/palo-1.95-toolchain.patch
deleted file mode 100644
index 1e70f2d5ebf0..000000000000
--- a/sys-boot/palo/files/palo-1.95-toolchain.patch
+++ /dev/null
@@ -1,27 +0,0 @@
---- a/palo/Makefile
-+++ b/palo/Makefile
-@@ -12,13 +12,12 @@
- OS := $(shell uname -s)
- CC?=cc
- ifeq ($(strip ${OS}),HP-UX)
--CFLAGS=-g -O -I../include -I../lib -I$(PA)/include
-+CFLAGS=-O -I../include -I../lib -I$(PA)/include
- else
--CFLAGS=-g -O -I../include -I../lib -D_FILE_OFFSET_BITS=64
-+CFLAGS=-O -I../include -I../lib -D_FILE_OFFSET_BITS=64
- endif
-
- # LDFLAGS=-Wl,-Bstatic
--LDFLAGS=
-
- OFILES2=mkbootable.o elf64.o load.o paloio.o elf32.o error.o gzip.o
-
-@@ -34,7 +33,7 @@
- $(CC) $(CFLAGS) $(LDFLAGS) -o palo palo.a build.o
-
- palo.a: $(OFILES)
-- ar rv palo.a $?
-+ $(AR) rv palo.a $?
-
- mkbootable: $(OFILES2)
- $(CC) $(CFLAGS) $(LDFLAGS) -o mkbootable $(OFILES2)