diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2002-07-18 04:33:04 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2002-07-18 04:33:04 +0000 |
commit | a12af22dd53de0816c7e2b0d0a2932e41984d69c (patch) | |
tree | e4e943e526247a8602c554b65d221a5e63c57e79 | |
parent | 9742c8a87bc4835f4e5715c73b84c2e0d6070e11 (diff) |
move kernel higher.
request 7000 scheduling if only pa7000 is configured.
-rw-r--r-- | sys/arch/hppa/conf/Makefile.hppa | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/hppa/conf/Makefile.hppa b/sys/arch/hppa/conf/Makefile.hppa index 836233bd474..cfcaf4ab413 100644 --- a/sys/arch/hppa/conf/Makefile.hppa +++ b/sys/arch/hppa/conf/Makefile.hppa @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.hppa,v 1.13 2002/06/22 14:05:51 millert Exp $ +# $OpenBSD: Makefile.hppa,v 1.14 2002/07/18 04:33:03 mickey Exp $ # Makefile for OpenBSD # @@ -46,14 +46,14 @@ CMACHFLAGS= -mfast-indirect-calls -mportable-runtime -mno-space-regs COPTS?= -Os CFLAGS= ${DEBUG} ${COPTS} ${CWARNFLAGS} ${CMACHFLAGS} ${PIPE} AFLAGS= -x assembler-with-cpp -traditional-cpp -D_LOCORE -LINKFLAGS= -T ${HPPA}/conf/ld.script -Ttext 12000 -Map bsd.map +LINKFLAGS= -T ${HPPA}/conf/ld.script -Ttext 80000 -Map bsd.map STRIPFLAGS= -g -X -x .if ${IDENT:M-DDDB} != "" CFLAGS+= -fno-omit-frame-pointer .endif -.if ${IDENT:M-DHP7[01]00_CPU} != "" +.if ${IDENT:M-DHP7000_CPU} != "" CFLAGS+= -mpa-risc-1-0 -mschedule=700 .elif ${IDENT:M-DHP8*_CPU} != "" CFLAGS+= -mpa-risc-2-0 |