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

2020-06-06 Thread Izumi Tsutsui
Module Name:src
Committed By:   tsutsui
Date:   Sun Jun  7 03:02:42 UTC 2020

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

Log Message:
Use -fno-unwind-tables to shrink boot binaries a bit.


To generate a diff of this commit:
cvs rdiff -u -r1.24 -r1.25 src/sys/arch/ews4800mips/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/ews4800mips/stand/boot/Makefile
diff -u src/sys/arch/ews4800mips/stand/boot/Makefile:1.24 src/sys/arch/ews4800mips/stand/boot/Makefile:1.25
--- src/sys/arch/ews4800mips/stand/boot/Makefile:1.24	Mon Dec 23 19:28:04 2019
+++ src/sys/arch/ews4800mips/stand/boot/Makefile	Sun Jun  7 03:02:42 2020
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.24 2019/12/23 19:28:04 christos Exp $
+#	$NetBSD: Makefile,v 1.25 2020/06/07 03:02:42 tsutsui Exp $
 
 WARNS		?= 1
 NOMAN		=
@@ -62,7 +62,7 @@ MIPSFLAGS	= -mips1 -G 0 -mno-abicalls
 DEBUGFLAGS	= -Wall -Werror
 DEBUGFLAGS	+= -Wmissing-prototypes -Wstrict-prototypes -Wpointer-arith
 DEBUGFLAGS	+= -Wno-format-zero-length -Wno-sign-compare
-OPTFLAGS	= -Os -mmemcpy
+OPTFLAGS	= -Os -mmemcpy -fno-unwind-tables
 FLAGS		= ${MIPSFLAGS} ${DEBUGFLAGS} ${OPTFLAGS}
 AFLAGS		= -xassembler-with-cpp -D_LOCORE ${FLAGS}
 CFLAGS		= ${FLAGS} -ffreestanding



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

2019-12-23 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Mon Dec 23 19:28:04 UTC 2019

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

Log Message:
Bump size.


To generate a diff of this commit:
cvs rdiff -u -r1.23 -r1.24 src/sys/arch/ews4800mips/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/ews4800mips/stand/boot/Makefile
diff -u src/sys/arch/ews4800mips/stand/boot/Makefile:1.23 src/sys/arch/ews4800mips/stand/boot/Makefile:1.24
--- src/sys/arch/ews4800mips/stand/boot/Makefile:1.23	Tue Jan  1 14:41:04 2019
+++ src/sys/arch/ews4800mips/stand/boot/Makefile	Mon Dec 23 14:28:04 2019
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.23 2019/01/01 19:41:04 christos Exp $
+#	$NetBSD: Makefile,v 1.24 2019/12/23 19:28:04 christos Exp $
 
 WARNS		?= 1
 NOMAN		=
@@ -38,7 +38,7 @@ SRCS		+= boot_device.c floppy_2d.c flopp
 #SRCS		+= floppy_2hc.c
 SRCS		+= console.c cons_rom.c cons_fb.c cons_zskbd.c cons_zs.c
 BINKERNEL_C	= ${COMMON}/binkernel.c
-BINKERNEL_SIZE	= '2 * 1024 * 1024 + 32 * 1024'
+BINKERNEL_SIZE	= 2143232	# '2 * 1024 * 1024 + 45 * 1024'
 BINKERNEL_O	= binkernel.o
 BINKERNEL_DUMMY_O= binkernel_dummy.o
 



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

2016-09-20 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Tue Sep 20 20:56:57 UTC 2016

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

Log Message:
The booter contains a kernel which contains a ramdisk. The kernel grew
and does not fit in the booter anymore, grow it a bit.


To generate a diff of this commit:
cvs rdiff -u -r1.20 -r1.21 src/sys/arch/ews4800mips/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/ews4800mips/stand/boot/Makefile
diff -u src/sys/arch/ews4800mips/stand/boot/Makefile:1.20 src/sys/arch/ews4800mips/stand/boot/Makefile:1.21
--- src/sys/arch/ews4800mips/stand/boot/Makefile:1.20	Thu Sep  8 10:42:33 2016
+++ src/sys/arch/ews4800mips/stand/boot/Makefile	Tue Sep 20 16:56:57 2016
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.20 2016/09/08 14:42:33 christos Exp $
+#	$NetBSD: Makefile,v 1.21 2016/09/20 20:56:57 christos Exp $
 
 WARNS		?= 1
 NOMAN		=
@@ -38,7 +38,7 @@ SRCS		+= boot_device.c floppy_2d.c flopp
 #SRCS		+= floppy_2hc.c
 SRCS		+= console.c cons_rom.c cons_fb.c cons_zskbd.c cons_zs.c
 BINKERNEL_C	= ${COMMON}/binkernel.c
-BINKERNEL_SIZE	= '2 * 1024 * 1024'
+BINKERNEL_SIZE	= '2 * 1024 * 1024 + 32 * 1024'
 BINKERNEL_O	= binkernel.o
 BINKERNEL_DUMMY_O= binkernel_dummy.o
 



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

2011-07-10 Thread Matt Thomas
Module Name:src
Committed By:   matt
Date:   Sun Jul 10 23:35:12 UTC 2011

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

Log Message:
Use TOOL_GZIP


To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.14 src/sys/arch/ews4800mips/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/ews4800mips/stand/boot/Makefile
diff -u src/sys/arch/ews4800mips/stand/boot/Makefile:1.13 src/sys/arch/ews4800mips/stand/boot/Makefile:1.14
--- src/sys/arch/ews4800mips/stand/boot/Makefile:1.13	Thu Jul  7 06:01:30 2011
+++ src/sys/arch/ews4800mips/stand/boot/Makefile	Sun Jul 10 23:35:12 2011
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.13 2011/07/07 06:01:30 mrg Exp $
+#	$NetBSD: Makefile,v 1.14 2011/07/10 23:35:12 matt Exp $
 
 WARNS		?= 1
 NOMAN		=
@@ -138,7 +138,7 @@
 	${BINKERNEL_O}
 	mv ${BOOT_KERNEL}.elf ${BOOT_KERNEL}
 	${OBJDUMP} -h ${BOOT_KERNEL}
-	gzip -9c ${BOOT_KERNEL}  ${.TARGET}.tmp
+	${TOOL_GZIP} -9c ${BOOT_KERNEL}  ${.TARGET}.tmp
 	mv ${.TARGET}.tmp ${.TARGET}
 	ls -al ${.TARGET}
 



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

2011-07-07 Thread matthew green
Module Name:src
Committed By:   mrg
Date:   Thu Jul  7 06:01:30 UTC 2011

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

Log Message:
apply some -fno-strict-aliasing


To generate a diff of this commit:
cvs rdiff -u -r1.12 -r1.13 src/sys/arch/ews4800mips/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/ews4800mips/stand/boot/Makefile
diff -u src/sys/arch/ews4800mips/stand/boot/Makefile:1.12 src/sys/arch/ews4800mips/stand/boot/Makefile:1.13
--- src/sys/arch/ews4800mips/stand/boot/Makefile:1.12	Sat Jan 22 19:19:17 2011
+++ src/sys/arch/ews4800mips/stand/boot/Makefile	Thu Jul  7 06:01:30 2011
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.12 2011/01/22 19:19:17 joerg Exp $
+#	$NetBSD: Makefile,v 1.13 2011/07/07 06:01:30 mrg Exp $
 
 WARNS		?= 1
 NOMAN		=
@@ -141,3 +141,5 @@
 	gzip -9c ${BOOT_KERNEL}  ${.TARGET}.tmp
 	mv ${.TARGET}.tmp ${.TARGET}
 	ls -al ${.TARGET}
+
+COPTS.ustarfs.c+=	-fno-strict-aliasing