summaryrefslogtreecommitdiff
path: root/sys/arch/hp300/stand/common
diff options
context:
space:
mode:
authorJason Downs <downsj@cvs.openbsd.org>1999-08-16 09:43:12 +0000
committerJason Downs <downsj@cvs.openbsd.org>1999-08-16 09:43:12 +0000
commitd179eff9bd4cb760c09a5931364ce2c6dac77ecf (patch)
tree202b2b77f440ffbf0d160763f8993756a1e7153e /sys/arch/hp300/stand/common
parentac1b38ac019548d858278911a2672d18a25d17f5 (diff)
Implement real CD booting, aka SYS_CDBOOT, the LIF file small enough to
fit in the begining of an ISO9660 image...
Diffstat (limited to 'sys/arch/hp300/stand/common')
-rw-r--r--sys/arch/hp300/stand/common/Makefile4
-rw-r--r--sys/arch/hp300/stand/common/version.c6
2 files changed, 6 insertions, 4 deletions
diff --git a/sys/arch/hp300/stand/common/Makefile b/sys/arch/hp300/stand/common/Makefile
index 79a2a66cb10..e7016d178b2 100644
--- a/sys/arch/hp300/stand/common/Makefile
+++ b/sys/arch/hp300/stand/common/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.3 1997/09/14 12:54:22 downsj Exp $
+# $OpenBSD: Makefile,v 1.4 1999/08/16 09:43:08 downsj Exp $
LIB= common
@@ -9,7 +9,7 @@ SRCS= apci.c autoconf.c cons.c ct.c dca.c dcm.c dnkbd.c \
ite_subr.c ite_tc.c ite_hy.c kbd.c kbdconf.c machdep.c \
nhpib.c prf.c scsi.c sd.c version.c
-CFLAGS= -O3 -msoft-float -I${.CURDIR}/../include \
+CFLAGS= -O2 -msoft-float -I${.CURDIR}/../include \
-I${.CURDIR}/../../.. -I${.CURDIR}/../../../.. -DCD9660_DUMMYLABEL
${OBJS}: ${.CURDIR}/../Makefile.inc
diff --git a/sys/arch/hp300/stand/common/version.c b/sys/arch/hp300/stand/common/version.c
index f19cfc2ff60..ba1ad275830 100644
--- a/sys/arch/hp300/stand/common/version.c
+++ b/sys/arch/hp300/stand/common/version.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: version.c,v 1.3 1998/05/10 11:31:20 downsj Exp $ */
+/* $OpenBSD: version.c,v 1.4 1999/08/16 09:43:08 downsj Exp $ */
/*
* Record major changes in the boot code here, and increment the version
@@ -16,6 +16,8 @@
*
* 2.4 Added/fixed 425e support.
*
+ * 2.5 Added SYS_CDBOOT.
+ *
*/
-const char version[] = "2.4";
+const char version[] = "2.5";