Re: CVS commit: src/distrib/i386/installimage

2023-02-14 Thread David Brownlee
On Tue, 14 Feb 2023 at 14:45, Martin Husemann  wrote:

> On Tue, Feb 14, 2023 at 11:39:23PM +0900, Izumi Tsutsui wrote:
> > > Module Name:src
> > > Committed By:   abs
> > > Date:   Sun Feb 12 19:18:41 UTC 2023
> > >
> > > Modified Files:
> > > src/distrib/i386/installimage: install.sh
> > >
> > > Log Message:
> > > Switch install.sh to use /usr/sbin/sysinst for sysinst rather than
> ./sysinst
> > >
> > > Matches i386/cdroms/install.sh and amd64/installimage/install.sh
> >
> > Then maybe you should also update Makefile and spec files
> > that prepared the ./sysinst binary.
> >
> https://github.com/NetBSD/src/commit/a32111f404058f1cc54d20b36a289a4d9bbb02c3
>

OK, thanks - was not aware of that, will take a look

Also are you *sure* this install medium has /usr/sbin/sysinst ?
> (I don't know and haven't checked, but found it not always obvious to
> answer)
>

I tested that both the img and floppy i386 installer loaded sysinst after
the change, just in case :)


Re: CVS commit: src/distrib/i386/installimage

2023-02-14 Thread Martin Husemann
On Tue, Feb 14, 2023 at 11:39:23PM +0900, Izumi Tsutsui wrote:
> > Module Name:src
> > Committed By:   abs
> > Date:   Sun Feb 12 19:18:41 UTC 2023
> > 
> > Modified Files:
> > src/distrib/i386/installimage: install.sh
> > 
> > Log Message:
> > Switch install.sh to use /usr/sbin/sysinst for sysinst rather than ./sysinst
> > 
> > Matches i386/cdroms/install.sh and amd64/installimage/install.sh
> 
> Then maybe you should also update Makefile and spec files
> that prepared the ./sysinst binary.
>  https://github.com/NetBSD/src/commit/a32111f404058f1cc54d20b36a289a4d9bbb02c3

Also are you *sure* this install medium has /usr/sbin/sysinst ?
(I don't know and haven't checked, but found it not always obvious to answer)

Martin


Re: CVS commit: src/distrib/i386/installimage

2023-02-14 Thread Izumi Tsutsui
> Module Name:  src
> Committed By: abs
> Date: Sun Feb 12 19:18:41 UTC 2023
> 
> Modified Files:
>   src/distrib/i386/installimage: install.sh
> 
> Log Message:
> Switch install.sh to use /usr/sbin/sysinst for sysinst rather than ./sysinst
> 
> Matches i386/cdroms/install.sh and amd64/installimage/install.sh

Then maybe you should also update Makefile and spec files
that prepared the ./sysinst binary.
 https://github.com/NetBSD/src/commit/a32111f404058f1cc54d20b36a289a4d9bbb02c3

---
Izumi Tsutsui


CVS commit: src/distrib/i386/installimage

2023-02-12 Thread David Brownlee
Module Name:src
Committed By:   abs
Date:   Sun Feb 12 19:18:41 UTC 2023

Modified Files:
src/distrib/i386/installimage: install.sh

Log Message:
Switch install.sh to use /usr/sbin/sysinst for sysinst rather than ./sysinst

Matches i386/cdroms/install.sh and amd64/installimage/install.sh

resultant install image verified to still run sysinst correctly


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/distrib/i386/installimage/install.sh

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

Modified files:

Index: src/distrib/i386/installimage/install.sh
diff -u src/distrib/i386/installimage/install.sh:1.3 src/distrib/i386/installimage/install.sh:1.4
--- src/distrib/i386/installimage/install.sh:1.3	Sat Feb 11 17:52:19 2023
+++ src/distrib/i386/installimage/install.sh	Sun Feb 12 19:18:41 2023
@@ -1,5 +1,5 @@
 #! /bin/sh -m
-# $NetBSD: install.sh,v 1.3 2023/02/11 17:52:19 abs Exp $
+# $NetBSD: install.sh,v 1.4 2023/02/12 19:18:41 abs Exp $
 #
 # -
 #  Copyright (c) 2010 The NetBSD Foundation, Inc.
@@ -87,7 +87,7 @@ fi
 
 # run the installation or upgrade script.
 cd /
-cmd=./sysinst
+cmd=/usr/sbin/sysinst
 
 while [ -n "${cmd}" ]
 do



CVS commit: src/distrib/i386/installimage

2023-02-12 Thread David Brownlee
Module Name:src
Committed By:   abs
Date:   Sun Feb 12 19:18:41 UTC 2023

Modified Files:
src/distrib/i386/installimage: install.sh

Log Message:
Switch install.sh to use /usr/sbin/sysinst for sysinst rather than ./sysinst

Matches i386/cdroms/install.sh and amd64/installimage/install.sh

resultant install image verified to still run sysinst correctly


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/distrib/i386/installimage/install.sh

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



CVS commit: src/distrib/i386/installimage

2021-12-31 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Fri Dec 31 16:43:04 UTC 2021

Modified Files:
src/distrib/i386/installimage: Makefile

Log Message:
Grow to fit debug kernels


To generate a diff of this commit:
cvs rdiff -u -r1.21 -r1.22 src/distrib/i386/installimage/Makefile

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

Modified files:

Index: src/distrib/i386/installimage/Makefile
diff -u src/distrib/i386/installimage/Makefile:1.21 src/distrib/i386/installimage/Makefile:1.22
--- src/distrib/i386/installimage/Makefile:1.21	Mon May 31 03:59:02 2021
+++ src/distrib/i386/installimage/Makefile	Fri Dec 31 11:43:04 2021
@@ -1,10 +1,10 @@
-#	$NetBSD: Makefile,v 1.21 2021/05/31 07:59:02 martin Exp $
+#	$NetBSD: Makefile,v 1.22 2021/12/31 16:43:04 christos Exp $
 
 .include 
 
 INSTIMGBASE=	NetBSD-${DISTRIBVER}-i386-install	# gives ${IMGBASE}.img
 
-INSTIMAGEMB?=	2100			# for all installation binaries
+INSTIMAGEMB?=	3000			# for all installation binaries
 
 PRIMARY_BOOT=		bootxx_ffsv1
 SECONDARY_BOOT=		boot



CVS commit: src/distrib/i386/installimage

2021-12-31 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Fri Dec 31 16:43:04 UTC 2021

Modified Files:
src/distrib/i386/installimage: Makefile

Log Message:
Grow to fit debug kernels


To generate a diff of this commit:
cvs rdiff -u -r1.21 -r1.22 src/distrib/i386/installimage/Makefile

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



CVS commit: src/distrib/i386/installimage

2021-05-31 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Mon May 31 07:59:02 UTC 2021

Modified Files:
src/distrib/i386/installimage: Makefile

Log Message:
bump slightly harder


To generate a diff of this commit:
cvs rdiff -u -r1.20 -r1.21 src/distrib/i386/installimage/Makefile

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

Modified files:

Index: src/distrib/i386/installimage/Makefile
diff -u src/distrib/i386/installimage/Makefile:1.20 src/distrib/i386/installimage/Makefile:1.21
--- src/distrib/i386/installimage/Makefile:1.20	Sun May 30 09:54:56 2021
+++ src/distrib/i386/installimage/Makefile	Mon May 31 07:59:02 2021
@@ -1,10 +1,10 @@
-#	$NetBSD: Makefile,v 1.20 2021/05/30 09:54:56 martin Exp $
+#	$NetBSD: Makefile,v 1.21 2021/05/31 07:59:02 martin Exp $
 
 .include 
 
 INSTIMGBASE=	NetBSD-${DISTRIBVER}-i386-install	# gives ${IMGBASE}.img
 
-INSTIMAGEMB?=	2000			# for all installation binaries
+INSTIMAGEMB?=	2100			# for all installation binaries
 
 PRIMARY_BOOT=		bootxx_ffsv1
 SECONDARY_BOOT=		boot



CVS commit: src/distrib/i386/installimage

2021-05-31 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Mon May 31 07:59:02 UTC 2021

Modified Files:
src/distrib/i386/installimage: Makefile

Log Message:
bump slightly harder


To generate a diff of this commit:
cvs rdiff -u -r1.20 -r1.21 src/distrib/i386/installimage/Makefile

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



CVS commit: src/distrib/i386/installimage

2021-05-30 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Sun May 30 09:54:56 UTC 2021

Modified Files:
src/distrib/i386/installimage: Makefile

Log Message:
Bump image size slightly (for gcc 10)


To generate a diff of this commit:
cvs rdiff -u -r1.19 -r1.20 src/distrib/i386/installimage/Makefile

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



CVS commit: src/distrib/i386/installimage

2021-05-30 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Sun May 30 09:54:56 UTC 2021

Modified Files:
src/distrib/i386/installimage: Makefile

Log Message:
Bump image size slightly (for gcc 10)


To generate a diff of this commit:
cvs rdiff -u -r1.19 -r1.20 src/distrib/i386/installimage/Makefile

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

Modified files:

Index: src/distrib/i386/installimage/Makefile
diff -u src/distrib/i386/installimage/Makefile:1.19 src/distrib/i386/installimage/Makefile:1.20
--- src/distrib/i386/installimage/Makefile:1.19	Wed May  6 09:18:10 2020
+++ src/distrib/i386/installimage/Makefile	Sun May 30 09:54:56 2021
@@ -1,10 +1,10 @@
-#	$NetBSD: Makefile,v 1.19 2020/05/06 09:18:10 bouyer Exp $
+#	$NetBSD: Makefile,v 1.20 2021/05/30 09:54:56 martin Exp $
 
 .include 
 
 INSTIMGBASE=	NetBSD-${DISTRIBVER}-i386-install	# gives ${IMGBASE}.img
 
-INSTIMAGEMB?=	1900			# for all installation binaries
+INSTIMAGEMB?=	2000			# for all installation binaries
 
 PRIMARY_BOOT=		bootxx_ffsv1
 SECONDARY_BOOT=		boot



CVS commit: src/distrib/i386/installimage

2020-05-06 Thread Manuel Bouyer
Module Name:src
Committed By:   bouyer
Date:   Wed May  6 09:18:10 UTC 2020

Modified Files:
src/distrib/i386/installimage: Makefile

Log Message:
Bump INSTIMAGEMB, hopefully fix releng autobuilds


To generate a diff of this commit:
cvs rdiff -u -r1.18 -r1.19 src/distrib/i386/installimage/Makefile

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



CVS commit: src/distrib/i386/installimage

2020-05-06 Thread Manuel Bouyer
Module Name:src
Committed By:   bouyer
Date:   Wed May  6 09:18:10 UTC 2020

Modified Files:
src/distrib/i386/installimage: Makefile

Log Message:
Bump INSTIMAGEMB, hopefully fix releng autobuilds


To generate a diff of this commit:
cvs rdiff -u -r1.18 -r1.19 src/distrib/i386/installimage/Makefile

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

Modified files:

Index: src/distrib/i386/installimage/Makefile
diff -u src/distrib/i386/installimage/Makefile:1.18 src/distrib/i386/installimage/Makefile:1.19
--- src/distrib/i386/installimage/Makefile:1.18	Tue May  5 16:04:07 2020
+++ src/distrib/i386/installimage/Makefile	Wed May  6 09:18:10 2020
@@ -1,10 +1,10 @@
-#	$NetBSD: Makefile,v 1.18 2020/05/05 16:04:07 christos Exp $
+#	$NetBSD: Makefile,v 1.19 2020/05/06 09:18:10 bouyer Exp $
 
 .include 
 
 INSTIMGBASE=	NetBSD-${DISTRIBVER}-i386-install	# gives ${IMGBASE}.img
 
-INSTIMAGEMB?=	1871			# for all installation binaries
+INSTIMAGEMB?=	1900			# for all installation binaries
 
 PRIMARY_BOOT=		bootxx_ffsv1
 SECONDARY_BOOT=		boot



CVS commit: src/distrib/i386/installimage

2020-05-05 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Tue May  5 16:04:07 UTC 2020

Modified Files:
src/distrib/i386/installimage: Makefile

Log Message:
A tiny little more.


To generate a diff of this commit:
cvs rdiff -u -r1.17 -r1.18 src/distrib/i386/installimage/Makefile

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



CVS commit: src/distrib/i386/installimage

2020-05-05 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Tue May  5 16:04:07 UTC 2020

Modified Files:
src/distrib/i386/installimage: Makefile

Log Message:
A tiny little more.


To generate a diff of this commit:
cvs rdiff -u -r1.17 -r1.18 src/distrib/i386/installimage/Makefile

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

Modified files:

Index: src/distrib/i386/installimage/Makefile
diff -u src/distrib/i386/installimage/Makefile:1.17 src/distrib/i386/installimage/Makefile:1.18
--- src/distrib/i386/installimage/Makefile:1.17	Sun May  3 09:29:04 2020
+++ src/distrib/i386/installimage/Makefile	Tue May  5 12:04:07 2020
@@ -1,10 +1,10 @@
-#	$NetBSD: Makefile,v 1.17 2020/05/03 13:29:04 christos Exp $
+#	$NetBSD: Makefile,v 1.18 2020/05/05 16:04:07 christos Exp $
 
 .include 
 
 INSTIMGBASE=	NetBSD-${DISTRIBVER}-i386-install	# gives ${IMGBASE}.img
 
-INSTIMAGEMB?=	1870			# for all installation binaries
+INSTIMAGEMB?=	1871			# for all installation binaries
 
 PRIMARY_BOOT=		bootxx_ffsv1
 SECONDARY_BOOT=		boot



CVS commit: src/distrib/i386/installimage

2020-05-03 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sun May  3 13:29:04 UTC 2020

Modified Files:
src/distrib/i386/installimage: Makefile

Log Message:
bump caused by the module debug sets


To generate a diff of this commit:
cvs rdiff -u -r1.16 -r1.17 src/distrib/i386/installimage/Makefile

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

Modified files:

Index: src/distrib/i386/installimage/Makefile
diff -u src/distrib/i386/installimage/Makefile:1.16 src/distrib/i386/installimage/Makefile:1.17
--- src/distrib/i386/installimage/Makefile:1.16	Sat Jan 25 14:09:38 2020
+++ src/distrib/i386/installimage/Makefile	Sun May  3 09:29:04 2020
@@ -1,10 +1,10 @@
-#	$NetBSD: Makefile,v 1.16 2020/01/25 19:09:38 christos Exp $
+#	$NetBSD: Makefile,v 1.17 2020/05/03 13:29:04 christos Exp $
 
 .include 
 
 INSTIMGBASE=	NetBSD-${DISTRIBVER}-i386-install	# gives ${IMGBASE}.img
 
-INSTIMAGEMB?=	1790			# for all installation binaries
+INSTIMAGEMB?=	1870			# for all installation binaries
 
 PRIMARY_BOOT=		bootxx_ffsv1
 SECONDARY_BOOT=		boot



CVS commit: src/distrib/i386/installimage

2020-05-03 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sun May  3 13:29:04 UTC 2020

Modified Files:
src/distrib/i386/installimage: Makefile

Log Message:
bump caused by the module debug sets


To generate a diff of this commit:
cvs rdiff -u -r1.16 -r1.17 src/distrib/i386/installimage/Makefile

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



CVS commit: src/distrib/i386/installimage

2020-01-25 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sat Jan 25 19:09:38 UTC 2020

Modified Files:
src/distrib/i386/installimage: Makefile

Log Message:
grow for clang


To generate a diff of this commit:
cvs rdiff -u -r1.15 -r1.16 src/distrib/i386/installimage/Makefile

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

Modified files:

Index: src/distrib/i386/installimage/Makefile
diff -u src/distrib/i386/installimage/Makefile:1.15 src/distrib/i386/installimage/Makefile:1.16
--- src/distrib/i386/installimage/Makefile:1.15	Tue May 14 11:41:23 2019
+++ src/distrib/i386/installimage/Makefile	Sat Jan 25 14:09:38 2020
@@ -1,10 +1,10 @@
-#	$NetBSD: Makefile,v 1.15 2019/05/14 15:41:23 christos Exp $
+#	$NetBSD: Makefile,v 1.16 2020/01/25 19:09:38 christos Exp $
 
 .include 
 
 INSTIMGBASE=	NetBSD-${DISTRIBVER}-i386-install	# gives ${IMGBASE}.img
 
-INSTIMAGEMB?=	1750			# for all installation binaries
+INSTIMAGEMB?=	1790			# for all installation binaries
 
 PRIMARY_BOOT=		bootxx_ffsv1
 SECONDARY_BOOT=		boot



CVS commit: src/distrib/i386/installimage

2020-01-25 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sat Jan 25 19:09:38 UTC 2020

Modified Files:
src/distrib/i386/installimage: Makefile

Log Message:
grow for clang


To generate a diff of this commit:
cvs rdiff -u -r1.15 -r1.16 src/distrib/i386/installimage/Makefile

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



CVS commit: src/distrib/i386/installimage

2019-05-14 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Tue May 14 15:41:23 UTC 2019

Modified Files:
src/distrib/i386/installimage: Makefile

Log Message:
clang binaries are so much bigger.


To generate a diff of this commit:
cvs rdiff -u -r1.14 -r1.15 src/distrib/i386/installimage/Makefile

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

Modified files:

Index: src/distrib/i386/installimage/Makefile
diff -u src/distrib/i386/installimage/Makefile:1.14 src/distrib/i386/installimage/Makefile:1.15
--- src/distrib/i386/installimage/Makefile:1.14	Sun Apr  7 01:29:00 2019
+++ src/distrib/i386/installimage/Makefile	Tue May 14 11:41:23 2019
@@ -1,10 +1,10 @@
-#	$NetBSD: Makefile,v 1.14 2019/04/07 05:29:00 rin Exp $
+#	$NetBSD: Makefile,v 1.15 2019/05/14 15:41:23 christos Exp $
 
 .include 
 
 INSTIMGBASE=	NetBSD-${DISTRIBVER}-i386-install	# gives ${IMGBASE}.img
 
-INSTIMAGEMB?=	1600			# for all installation binaries
+INSTIMAGEMB?=	1750			# for all installation binaries
 
 PRIMARY_BOOT=		bootxx_ffsv1
 SECONDARY_BOOT=		boot



CVS commit: src/distrib/i386/installimage

2019-05-14 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Tue May 14 15:41:23 UTC 2019

Modified Files:
src/distrib/i386/installimage: Makefile

Log Message:
clang binaries are so much bigger.


To generate a diff of this commit:
cvs rdiff -u -r1.14 -r1.15 src/distrib/i386/installimage/Makefile

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



CVS commit: src/distrib/i386/installimage

2019-04-06 Thread Rin Okuyama
Module Name:src
Committed By:   rin
Date:   Sun Apr  7 05:29:00 UTC 2019

Modified Files:
src/distrib/i386/installimage: Makefile

Log Message:
Bump for recent Mesa update.


To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.14 src/distrib/i386/installimage/Makefile

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



CVS commit: src/distrib/i386/installimage

2019-04-06 Thread Rin Okuyama
Module Name:src
Committed By:   rin
Date:   Sun Apr  7 05:29:00 UTC 2019

Modified Files:
src/distrib/i386/installimage: Makefile

Log Message:
Bump for recent Mesa update.


To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.14 src/distrib/i386/installimage/Makefile

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

Modified files:

Index: src/distrib/i386/installimage/Makefile
diff -u src/distrib/i386/installimage/Makefile:1.13 src/distrib/i386/installimage/Makefile:1.14
--- src/distrib/i386/installimage/Makefile:1.13	Sat Dec 15 18:03:17 2018
+++ src/distrib/i386/installimage/Makefile	Sun Apr  7 05:29:00 2019
@@ -1,10 +1,10 @@
-#	$NetBSD: Makefile,v 1.13 2018/12/15 18:03:17 gson Exp $
+#	$NetBSD: Makefile,v 1.14 2019/04/07 05:29:00 rin Exp $
 
 .include 
 
 INSTIMGBASE=	NetBSD-${DISTRIBVER}-i386-install	# gives ${IMGBASE}.img
 
-INSTIMAGEMB?=	1450			# for all installation binaries
+INSTIMAGEMB?=	1600			# for all installation binaries
 
 PRIMARY_BOOT=		bootxx_ffsv1
 SECONDARY_BOOT=		boot



CVS commit: src/distrib/i386/installimage

2018-10-30 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Tue Oct 30 20:18:30 UTC 2018

Modified Files:
src/distrib/i386/installimage: Makefile

Log Message:
bump for clang


To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 src/distrib/i386/installimage/Makefile

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

Modified files:

Index: src/distrib/i386/installimage/Makefile
diff -u src/distrib/i386/installimage/Makefile:1.11 src/distrib/i386/installimage/Makefile:1.12
--- src/distrib/i386/installimage/Makefile:1.11	Mon Sep 18 10:42:16 2017
+++ src/distrib/i386/installimage/Makefile	Tue Oct 30 16:18:30 2018
@@ -1,11 +1,11 @@
-#	$NetBSD: Makefile,v 1.11 2017/09/18 14:42:16 joerg Exp $
+#	$NetBSD: Makefile,v 1.12 2018/10/30 20:18:30 christos Exp $
 
 .include 
 
 INSTIMGBASE=	NetBSD-${DISTRIBVER}-i386-install	# gives ${IMGBASE}.img
 
 BOOTDISK=	sd0			# for USB flash etc.
-INSTIMAGEMB?=	1400			# for all installation binaries
+INSTIMAGEMB?=	1450			# for all installation binaries
 
 PRIMARY_BOOT=		bootxx_ffsv1
 SECONDARY_BOOT=		boot



CVS commit: src/distrib/i386/installimage

2018-10-30 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Tue Oct 30 20:18:30 UTC 2018

Modified Files:
src/distrib/i386/installimage: Makefile

Log Message:
bump for clang


To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 src/distrib/i386/installimage/Makefile

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



CVS commit: src/distrib/i386/installimage

2016-02-20 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sat Feb 20 16:40:15 UTC 2016

Modified Files:
src/distrib/i386/installimage: Makefile

Log Message:
bump more.


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 src/distrib/i386/installimage/Makefile

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



CVS commit: src/distrib/i386/installimage

2016-02-20 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sat Feb 20 16:40:15 UTC 2016

Modified Files:
src/distrib/i386/installimage: Makefile

Log Message:
bump more.


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 src/distrib/i386/installimage/Makefile

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

Modified files:

Index: src/distrib/i386/installimage/Makefile
diff -u src/distrib/i386/installimage/Makefile:1.8 src/distrib/i386/installimage/Makefile:1.9
--- src/distrib/i386/installimage/Makefile:1.8	Mon Feb  1 16:24:33 2016
+++ src/distrib/i386/installimage/Makefile	Sat Feb 20 11:40:15 2016
@@ -1,11 +1,11 @@
-#	$NetBSD: Makefile,v 1.8 2016/02/01 21:24:33 christos Exp $
+#	$NetBSD: Makefile,v 1.9 2016/02/20 16:40:15 christos Exp $
 
 .include 
 
 INSTIMGBASE=	NetBSD-${DISTRIBVER}-i386-install	# gives ${IMGBASE}.img
 
 BOOTDISK=	sd0			# for USB flash etc.
-INSTIMAGEMB?=	900			# for all installation binaries
+INSTIMAGEMB?=	1200			# for all installation binaries
 
 PRIMARY_BOOT=		bootxx_ffsv1
 SECONDARY_BOOT=		boot



CVS commit: src/distrib/i386/installimage

2016-02-01 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Mon Feb  1 21:24:33 UTC 2016

Modified Files:
src/distrib/i386/installimage: Makefile

Log Message:
bump image size


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/distrib/i386/installimage/Makefile

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



CVS commit: src/distrib/i386/installimage

2016-02-01 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Mon Feb  1 21:24:33 UTC 2016

Modified Files:
src/distrib/i386/installimage: Makefile

Log Message:
bump image size


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/distrib/i386/installimage/Makefile

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

Modified files:

Index: src/distrib/i386/installimage/Makefile
diff -u src/distrib/i386/installimage/Makefile:1.7 src/distrib/i386/installimage/Makefile:1.8
--- src/distrib/i386/installimage/Makefile:1.7	Mon Mar  9 14:12:47 2015
+++ src/distrib/i386/installimage/Makefile	Mon Feb  1 16:24:33 2016
@@ -1,11 +1,11 @@
-#	$NetBSD: Makefile,v 1.7 2015/03/09 18:12:47 christos Exp $
+#	$NetBSD: Makefile,v 1.8 2016/02/01 21:24:33 christos Exp $
 
 .include 
 
 INSTIMGBASE=	NetBSD-${DISTRIBVER}-i386-install	# gives ${IMGBASE}.img
 
 BOOTDISK=	sd0			# for USB flash etc.
-INSTIMAGEMB?=	550			# for all installation binaries
+INSTIMAGEMB?=	900			# for all installation binaries
 
 PRIMARY_BOOT=		bootxx_ffsv1
 SECONDARY_BOOT=		boot



CVS commit: src/distrib/i386/installimage

2015-03-09 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Mon Mar  9 18:12:48 UTC 2015

Modified Files:
src/distrib/i386/installimage: Makefile

Log Message:
match amd64, we ran out of space.


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/distrib/i386/installimage/Makefile

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

Modified files:

Index: src/distrib/i386/installimage/Makefile
diff -u src/distrib/i386/installimage/Makefile:1.6 src/distrib/i386/installimage/Makefile:1.7
--- src/distrib/i386/installimage/Makefile:1.6	Sat Nov 15 07:33:04 2014
+++ src/distrib/i386/installimage/Makefile	Mon Mar  9 14:12:47 2015
@@ -1,11 +1,11 @@
-#	$NetBSD: Makefile,v 1.6 2014/11/15 12:33:04 uebayasi Exp $
+#	$NetBSD: Makefile,v 1.7 2015/03/09 18:12:47 christos Exp $
 
 .include bsd.own.mk
 
 INSTIMGBASE=	NetBSD-${DISTRIBVER}-i386-install	# gives ${IMGBASE}.img
 
 BOOTDISK=	sd0			# for USB flash etc.
-INSTIMAGEMB?=	520			# for all installation binaries
+INSTIMAGEMB?=	550			# for all installation binaries
 
 PRIMARY_BOOT=		bootxx_ffsv1
 SECONDARY_BOOT=		boot



CVS commit: src/distrib/i386/installimage

2015-03-09 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Mon Mar  9 18:12:48 UTC 2015

Modified Files:
src/distrib/i386/installimage: Makefile

Log Message:
match amd64, we ran out of space.


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/distrib/i386/installimage/Makefile

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



CVS commit: src/distrib/i386/installimage

2014-11-15 Thread Masao Uebayashi
Module Name:src
Committed By:   uebayasi
Date:   Sat Nov 15 12:33:04 UTC 2014

Modified Files:
src/distrib/i386/installimage: Makefile

Log Message:
Bump image size from 512MB to 520MB.


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/distrib/i386/installimage/Makefile

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

Modified files:

Index: src/distrib/i386/installimage/Makefile
diff -u src/distrib/i386/installimage/Makefile:1.5 src/distrib/i386/installimage/Makefile:1.6
--- src/distrib/i386/installimage/Makefile:1.5	Sat Sep 13 10:18:24 2014
+++ src/distrib/i386/installimage/Makefile	Sat Nov 15 12:33:04 2014
@@ -1,11 +1,11 @@
-#	$NetBSD: Makefile,v 1.5 2014/09/13 10:18:24 roy Exp $
+#	$NetBSD: Makefile,v 1.6 2014/11/15 12:33:04 uebayasi Exp $
 
 .include bsd.own.mk
 
 INSTIMGBASE=	NetBSD-${DISTRIBVER}-i386-install	# gives ${IMGBASE}.img
 
 BOOTDISK=	sd0			# for USB flash etc.
-INSTIMAGEMB?=	512			# for all installation binaries
+INSTIMAGEMB?=	520			# for all installation binaries
 
 PRIMARY_BOOT=		bootxx_ffsv1
 SECONDARY_BOOT=		boot



CVS commit: src/distrib/i386/installimage

2014-11-15 Thread Masao Uebayashi
Module Name:src
Committed By:   uebayasi
Date:   Sat Nov 15 12:33:04 UTC 2014

Modified Files:
src/distrib/i386/installimage: Makefile

Log Message:
Bump image size from 512MB to 520MB.


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/distrib/i386/installimage/Makefile

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