CVS commit: src/sys/arch/x68k/stand/boot

2022-06-21 Thread Tetsuya Isaki
Module Name:src
Committed By:   isaki
Date:   Tue Jun 21 12:45:46 UTC 2022

Modified Files:
src/sys/arch/x68k/stand/boot: version

Log Message:
x68k/stand: Bump boot's version.  Fix blocksize parameter passes to SCSI IOCS.


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 src/sys/arch/x68k/stand/boot/version

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/x68k/stand/boot/version
diff -u src/sys/arch/x68k/stand/boot/version:1.8 src/sys/arch/x68k/stand/boot/version:1.9
--- src/sys/arch/x68k/stand/boot/version:1.8	Sat Jun 25 14:35:58 2016
+++ src/sys/arch/x68k/stand/boot/version	Tue Jun 21 12:45:46 2022
@@ -1,4 +1,4 @@
-$NetBSD: version,v 1.8 2016/06/25 14:35:58 isaki Exp $
+$NetBSD: version,v 1.9 2022/06/21 12:45:46 isaki Exp $
 
 NOTE ANY CHANGES YOU MAKE TO THE BOOTBLOCKS HERE.  The format of this
 file is important - make sure the entries are appended on end, last item
@@ -14,3 +14,4 @@ is taken as the current.
 	non ASCII keys (CTRL, OPT.1 etc.) are pressed during boot.
 1.6:	Disable slow gunzip CRC32 calculation.
 1.7:	Integrate netboot.
+1.8:	Fix blocksize parameter passes to SCSI IOCS.



CVS commit: src/sys/arch/x68k/stand/boot

2022-06-21 Thread Tetsuya Isaki
Module Name:src
Committed By:   isaki
Date:   Tue Jun 21 12:45:46 UTC 2022

Modified Files:
src/sys/arch/x68k/stand/boot: version

Log Message:
x68k/stand: Bump boot's version.  Fix blocksize parameter passes to SCSI IOCS.


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 src/sys/arch/x68k/stand/boot/version

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/arch/x68k/stand/boot

2019-06-14 Thread Tetsuya Isaki
Module Name:src
Committed By:   isaki
Date:   Fri Jun 14 14:15:53 UTC 2019

Modified Files:
src/sys/arch/x68k/stand/boot: Makefile

Log Message:
boot_ufs (primary bootloader) expects /boot OMAGIC a.out.


To generate a diff of this commit:
cvs rdiff -u -r1.30 -r1.31 src/sys/arch/x68k/stand/boot/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/arch/x68k/stand/boot

2019-06-14 Thread Tetsuya Isaki
Module Name:src
Committed By:   isaki
Date:   Fri Jun 14 14:15:53 UTC 2019

Modified Files:
src/sys/arch/x68k/stand/boot: Makefile

Log Message:
boot_ufs (primary bootloader) expects /boot OMAGIC a.out.


To generate a diff of this commit:
cvs rdiff -u -r1.30 -r1.31 src/sys/arch/x68k/stand/boot/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/x68k/stand/boot/Makefile
diff -u src/sys/arch/x68k/stand/boot/Makefile:1.30 src/sys/arch/x68k/stand/boot/Makefile:1.31
--- src/sys/arch/x68k/stand/boot/Makefile:1.30	Wed Jan  2 00:48:13 2019
+++ src/sys/arch/x68k/stand/boot/Makefile	Fri Jun 14 14:15:53 2019
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.30 2019/01/02 00:48:13 christos Exp $
+#	$NetBSD: Makefile,v 1.31 2019/06/14 14:15:53 isaki Exp $
 
 NOMAN=		# defined
 
@@ -42,6 +42,7 @@ CPPFLAGS+=	-DSUPPORT_BOOTP -DSUPPORT_DHC
 #CPPFLAGS+=	-DDEBUG
 CFLAGS=		-Wno-main -Os -m68020-60
 LINKFLAGS=	-N -static -T ${.CURDIR}/../boot/boot.ldscript
+ELF2AOUT_OPTS=	-O
 LIBIOCS!=	cd $M/stand/libiocs && ${PRINTOBJDIR}
 LIBSA!=		cd $M/stand/libsa && ${PRINTOBJDIR}
 L=		${LIBSA}/lib
@@ -55,7 +56,7 @@ ${PROG}:	${OBJS} ${LDLIBS}
 	${_MKTARGET_LINK}
 	${LD} ${LINKFLAGS} -o ${PROG}.sym ${OBJS} ${LDLIBS}
 	${STRIP} ${PROG}.sym -o ${PROG}.strip
-	${M68K_ELF2AOUT} ${PROG}.strip ${PROG}
+	${M68K_ELF2AOUT} ${ELF2AOUT_OPTS} ${PROG}.strip ${PROG}
 
 CLEANFILES+=	${PROG}.sym ${PROG}.strip