From: Joerg Sonnenberger Date: Sat, 10 Apr 2004 12:07:20 +0000 (+0000) Subject: Explicitly build the boot2.c without propolice. We can't really handle X-Git-Tag: v2.0.1~11542 X-Git-Url: https://gitweb.dragonflybsd.org/dragonfly.git/commitdiff_plain/9ca8a416e685933d94e22734cbba701ab2be0e94 Explicitly build the boot2.c without propolice. We can't really handle faults here anyway and it is size-sensitive too. --- diff --git a/sys/boot/i386/boot2/Makefile b/sys/boot/i386/boot2/Makefile index 972af3ea8f..109e0d8f78 100644 --- a/sys/boot/i386/boot2/Makefile +++ b/sys/boot/i386/boot2/Makefile @@ -1,5 +1,5 @@ # $FreeBSD: src/sys/boot/i386/boot2/Makefile,v 1.47 2003/06/26 03:51:57 peter Exp $ -# $DragonFly: src/sys/boot/i386/boot2/Attic/Makefile,v 1.5 2004/03/04 00:06:58 dillon Exp $ +# $DragonFly: src/sys/boot/i386/boot2/Attic/Makefile,v 1.6 2004/04/10 12:07:20 joerg Exp $ PROG= boot2 NOMAN= @@ -39,7 +39,7 @@ BOOT2_UFS?= UFS1_ONLY # -fno-guess-branch-probability # -mno-align-long-strings -CFLAGS= -elf -ffreestanding -Os -fno-builtin \ +CFLAGS= -elf -ffreestanding -Os -fno-builtin -fno-stack-protector \ -fomit-frame-pointer \ -mrtd \ -D${BOOT2_UFS} \ diff --git a/sys/boot/pc32/boot2/Makefile b/sys/boot/pc32/boot2/Makefile index 32b0a3226f..18eb07ef13 100644 --- a/sys/boot/pc32/boot2/Makefile +++ b/sys/boot/pc32/boot2/Makefile @@ -1,5 +1,5 @@ # $FreeBSD: src/sys/boot/i386/boot2/Makefile,v 1.47 2003/06/26 03:51:57 peter Exp $ -# $DragonFly: src/sys/boot/pc32/boot2/Makefile,v 1.5 2004/03/04 00:06:58 dillon Exp $ +# $DragonFly: src/sys/boot/pc32/boot2/Makefile,v 1.6 2004/04/10 12:07:20 joerg Exp $ PROG= boot2 NOMAN= @@ -39,7 +39,7 @@ BOOT2_UFS?= UFS1_ONLY # -fno-guess-branch-probability # -mno-align-long-strings -CFLAGS= -elf -ffreestanding -Os -fno-builtin \ +CFLAGS= -elf -ffreestanding -Os -fno-builtin -fno-stack-protector \ -fomit-frame-pointer \ -mrtd \ -D${BOOT2_UFS} \