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

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.