CVS log for src/distrib/amiga/miniroot/install.md
Up to [cvs.NetBSD.org] / src / distrib / amiga / miniroot
Request diff between arbitrary revisions
Keyword substitution: kv
Default branch: MAIN
Revision 1.35: download - view: text, markup, annotated - select for diffs
Sat May 28 21:57:39 2022 UTC (2 years, 7 months ago) by andvar
Branches: MAIN
CVS tags: perseant-exfatfs-base-20240630,
perseant-exfatfs-base,
perseant-exfatfs,
netbsd-10-base,
netbsd-10-1-RELEASE,
netbsd-10-0-RELEASE,
netbsd-10-0-RC6,
netbsd-10-0-RC5,
netbsd-10-0-RC4,
netbsd-10-0-RC3,
netbsd-10-0-RC2,
netbsd-10-0-RC1,
netbsd-10,
HEAD
Diff to: previous 1.34: preferred, colored
Changes since revision 1.34: +2 -2
lines
s/hierach/hierarch/
Revision 1.34: download - view: text, markup, annotated - select for diffs
Tue Nov 2 22:02:42 2021 UTC (3 years, 2 months ago) by abs
Branches: MAIN
Diff to: previous 1.33: preferred, colored
Changes since revision 1.33: +2 -2
lines
Update some distrib X11R6 references to X11R7
Some of these scripts and notes may no longer be relevant, but now
they are at least not relevant while referring to the current X
installation directory
Revision 1.33: download - view: text, markup, annotated - select for diffs
Sat Jun 26 00:28:19 2021 UTC (3 years, 7 months ago) by tsutsui
Branches: MAIN
Diff to: previous 1.32: preferred, colored
Changes since revision 1.32: +1 -2
lines
Remove an obsolete comment.
Revision 1.32: download - view: text, markup, annotated - select for diffs
Thu Feb 25 21:46:55 2021 UTC (3 years, 11 months ago) by rin
Branches: MAIN
CVS tags: cjep_sun2x-base1,
cjep_sun2x-base,
cjep_sun2x,
cjep_staticlib_x-base1,
cjep_staticlib_x-base,
cjep_staticlib_x
Diff to: previous 1.31: preferred, colored
Changes since revision 1.31: +2 -2
lines
Oops, forgot to commit this. One more adjust for amiga/boot ver 3.1.
Shuold fix build.
Revision 1.27.40.2: download - view: text, markup, annotated - select for diffs
Sat Dec 19 19:02:52 2020 UTC (4 years, 1 month ago) by martin
Branches: netbsd-8
CVS tags: netbsd-8-3-RELEASE
Diff to: previous 1.27.40.1: preferred, colored; branchpoint 1.27: preferred, colored; next MAIN 1.28: preferred, colored
Changes since revision 1.27.40.1: +3 -3
lines
Pull up following revision(s) (requested by tsutsui in ticket #1639):
distrib/miniroot/install.sub: revision 1.54 (patch)
distrib/miniroot/install.sub: revision 1.56 (patch)
distrib/miniroot/install.sub: revision 1.57 (patch)
distrib/miniroot/install.sub: revision 1.58 (patch)
distrib/miniroot/install.sub: revision 1.59 (patch)
distrib/hp300/miniroot/install.md: revision 1.20
distrib/miniroot/list: revision 1.36
distrib/mvme68k/miniroot/install.md: revision 1.9
distrib/mvme68k/miniroot/install.md: revision 1.10
distrib/sun3/miniroot/install.md: revision 1.6
distrib/miniroot/install.sub: revision 1.47 (patch)
distrib/sun3/miniroot/install.md: revision 1.7
distrib/sun2/miniroot/install.md: revision 1.6
distrib/sun2/miniroot/install.md: revision 1.7
distrib/amiga/miniroot/install.md: revision 1.31
distrib/mac68k/miniroot/install.md: revision 1.6
distrib/mac68k/miniroot/install.md: revision 1.7
distrib/mac68k/miniroot/install.md: revision 1.8
distrib/miniroot/upgrade.sh: revision 1.23
distrib/miniroot/install.sh: revision 1.26
distrib/miniroot/upgrade.sh: revision 1.24
distrib/miniroot/install.sh: revision 1.27
distrib/hp300/miniroot/install.md: revision 1.18
distrib/hp300/miniroot/install.md: revision 1.19
distrib/miniroot/install.sub: revision 1.50 (patch)
distrib/miniroot/install.sub: revision 1.51 (patch)
distrib/miniroot/install.sub: revision 1.52 (patch)
distrib/miniroot/install.sub: revision 1.53 (patch)
Remove uses of test ... -a ... and test ... -o ...
eXorcize and `` -> $()
Fix miniroot installation failure on network configuration. PR/54833
No particular comment in the PR.
Should be pulled up to netbsd-9.
Fix "[: SMALL test, no fallback usage" error on miniroot installation.
Avoid and replace use of '-a', '(' and ')' operatos marked obsolescent
by modern POSIX.1-2017:
https://pubs.opengroup.org/onlinepubs/9699919799/utilities/test.html#tag_20_128_16
as suggested by kre@ in PR/54835.
Should be pulled up to netbsd-9.
The idiom
set $whatever
while [ $# - gt 10 ]; do shift 10; done
eval echo \$$#
fails when $# turns out to be 10 (or any multiple), it would need
to be instead
while [ $# -ge 10 ]; do shift 9; done
but there hasn't been a shell that cannot handle ${10} (etc) correctly
in a very long time, so let's just use that instead (properly quoted,
in case IFS happens to contain a digit for some bizarre reason).
We should also "set -f" / "set +f" (or better, restore the prev setting of -f)
around the "set $whatever" part, but if that was ever going to cause a problem
here, it would have already, so leave that for now.
test ! -n "$foo" is just a quaint way of saying test -z "$foo"
and test ! -z "$foo" is really just test -n "$foo" so let's just
use the simple (and more obvious) forms.
NFCI.
The kernel and X sets should be specified in MD miniroot scripts.
Otherwise they are not listed at least on ftp installation.
The problem was reported by Martin Trusler on port-hp300@:
https://mail-index.netbsd.org/port-hp300/2020/11/21/msg000174.html
Should be pulled up to netbsd-9 and netbsd-8.
Add modules set for default sets on miniroot installation.
Should be pulled up to netbsd-9 and netbsd-8.
Add missing md_get_partition_range() that causes installation failure.
Also reported by Martin Trusler on testing hp300 miniroot.
Should be pulled up to netbsd-9 and netbsd-8.
Explicitly sort set names fetched via ftp nlist.
Several binary sets are stored as symbolic links on releases and
it seems some ftpd doesn't sort nlist outputs by name in such case.
Worth to pullup to netbsd-9 and netbsd-8.
Use proper release version strings ("9.1" rather than "91") in banners.
Also define and use "MACHINE" variable to describe port names
(no uname(1) or sysctl(8) in miniroot binary list by default).
I guess the short format like "91" by ${DISTRIBREV} was used only
for split sets for floppies in 1990's releases.
Worth to pullup to netbsd-9.
Inform the default installation directory in the official ftp server.
Fetch files via ftp using auto-fetching with URL per each binary set.
On slower machines, it takes more than five minutes to get a large
set binary and it could cause timeout of ftp control session, so
getting multiple binary sets in a single ftp session always fails.
Briefly tested on HP 9000/425e with 9.1 tree and ftp.netbsd.org binaries.
No particular comments on tech-install@ and port-hp300@.
Maybe should be pulled up to netbsd-9.
Revision 1.30.2.1: download - view: text, markup, annotated - select for diffs
Mon Dec 14 17:26:37 2020 UTC (4 years, 1 month ago) by martin
Branches: netbsd-9
CVS tags: netbsd-9-4-RELEASE,
netbsd-9-3-RELEASE,
netbsd-9-2-RELEASE
Diff to: previous 1.30: preferred, colored; next MAIN 1.31: preferred, colored
Changes since revision 1.30: +3 -3
lines
Pull up following revision(s) (requested by tsutsui in ticket #1151):
distrib/miniroot/install.sub: revision 1.54
distrib/miniroot/install.sub: revision 1.55
distrib/miniroot/install.sub: revision 1.56
distrib/miniroot/install.sub: revision 1.57
distrib/miniroot/install.sub: revision 1.58
distrib/miniroot/install.sub: revision 1.59
distrib/hp300/miniroot/install.md: revision 1.20
distrib/miniroot/list: revision 1.36
distrib/mvme68k/miniroot/install.md: revision 1.9
distrib/mvme68k/miniroot/install.md: revision 1.10
distrib/sun3/miniroot/install.md: revision 1.6
distrib/sun3/miniroot/install.md: revision 1.7
distrib/sun2/miniroot/install.md: revision 1.6
distrib/sun2/miniroot/install.md: revision 1.7
distrib/amiga/miniroot/install.md: revision 1.31
distrib/mac68k/miniroot/install.md: revision 1.6
distrib/mac68k/miniroot/install.md: revision 1.7
distrib/mac68k/miniroot/install.md: revision 1.8
distrib/hp300/miniroot/install.md: revision 1.18
distrib/hp300/miniroot/install.md: revision 1.19
distrib/miniroot/install.sub: revision 1.53
test ! -n "$foo" is just a quaint way of saying test -z "$foo"
and test ! -z "$foo" is really just test -n "$foo" so let's just
use the simple (and more obvious) forms.
NFCI.
-
Add modules set for default sets on miniroot installation.
Should be pulled up to netbsd-9 and netbsd-8.
-
The kernel and X sets should be specified in MD miniroot scripts.
Otherwise they are not listed at least on ftp installation.
The problem was reported by Martin Trusler on port-hp300@:
https://mail-index.netbsd.org/port-hp300/2020/11/21/msg000174.html
Should be pulled up to netbsd-9 and netbsd-8.
-
Appease awk warnings on suppressing dmesg timestamps.
awk: warning: escape sequence `\[' treated as plain `['
source line number 1
context is
{ h=$0; >>> gsub("^[ <<<
awk: warning: escape sequence `\]' treated as plain `]'
source line number 1
Should be pulled up to netbsd-9.
-
Explicitly sort set names fetched via ftp nlist.
Several binary sets are stored as symbolic links on releases and
it seems some ftpd doesn't sort nlist outputs by name in such case.
Worth to pullup to netbsd-9 and netbsd-8.
-
Use proper release version strings ("9.1" rather than "91") in banners.
Also define and use "MACHINE" variable to describe port names
(no uname(1) or sysctl(8) in miniroot binary list by default).
I guess the short format like "91" by ${DISTRIBREV} was used only
for split sets for floppies in 1990's releases.
Worth to pullup to netbsd-9.
-
Inform the default installation directory in the official ftp server.
-
Fetch files via ftp using auto-fetching with URL per each binary set.
On slower machines, it takes more than five minutes to get a large
set binary and it could cause timeout of ftp control session, so
getting multiple binary sets in a single ftp session always fails.
Briefly tested on HP 9000/425e with 9.1 tree and ftp.netbsd.org binaries.
No particular comments on tech-install@ and port-hp300@.
Maybe should be pulled up to netbsd-9.
-
Add missing md_get_partition_range() that causes installation failure.
Also reported by Martin Trusler on testing hp300 miniroot.
Should be pulled up to netbsd-9 and netbsd-8.
Revision 1.31: download - view: text, markup, annotated - select for diffs
Sat Dec 5 18:52:06 2020 UTC (4 years, 1 month ago) by tsutsui
Branches: MAIN
Diff to: previous 1.30: preferred, colored
Changes since revision 1.30: +3 -3
lines
Use proper release version strings ("9.1" rather than "91") in banners.
Also define and use "MACHINE" variable to describe port names
(no uname(1) or sysctl(8) in miniroot binary list by default).
I guess the short format like "91" by ${DISTRIBREV} was used only
for split sets for floppies in 1990's releases.
Worth to pullup to netbsd-9.
Revision 1.28.4.1: download - view: text, markup, annotated - select for diffs
Mon Jun 10 21:42:18 2019 UTC (5 years, 7 months ago) by christos
Branches: phil-wifi
Diff to: previous 1.28: preferred, colored; next MAIN 1.29: preferred, colored
Changes since revision 1.28: +16 -28
lines
Sync with HEAD
Revision 1.30: download - view: text, markup, annotated - select for diffs
Wed Apr 10 14:52:53 2019 UTC (5 years, 9 months ago) by christos
Branches: MAIN
CVS tags: phil-wifi-20200421,
phil-wifi-20200411,
phil-wifi-20200406,
phil-wifi-20191119,
phil-wifi-20190609,
netbsd-9-base,
netbsd-9-1-RELEASE,
netbsd-9-0-RELEASE,
netbsd-9-0-RC2,
netbsd-9-0-RC1,
is-mlppp-base,
is-mlppp
Branch point for: netbsd-9
Diff to: previous 1.29: preferred, colored
Changes since revision 1.29: +6 -18
lines
adjust miniroot scripts to deal with the time prefix in dmesg
Revision 1.29: download - view: text, markup, annotated - select for diffs
Thu Apr 4 21:00:19 2019 UTC (5 years, 9 months ago) by christos
Branches: MAIN
Diff to: previous 1.28: preferred, colored
Changes since revision 1.28: +12 -12
lines
modernize, and avoid -a -o
Revision 1.27.40.1: download - view: text, markup, annotated - select for diffs
Sat Sep 23 17:01:59 2017 UTC (7 years, 4 months ago) by snj
Branches: netbsd-8
CVS tags: netbsd-8-2-RELEASE,
netbsd-8-1-RELEASE,
netbsd-8-1-RC1,
netbsd-8-0-RELEASE,
netbsd-8-0-RC2,
netbsd-8-0-RC1,
matt-nb8-mediatek-base,
matt-nb8-mediatek
Diff to: previous 1.27: preferred, colored
Changes since revision 1.27: +4 -2
lines
Pull up following revision(s) (requested by mlelstv in ticket #275):
distrib/amiga/miniroot/install.md: revision 1.28
distrib/miniroot/install.sub: revision 1.46
distrib/notes/amiga/install: revision 1.36
sys/arch/amiga/amiga/disksubr.c: revision 1.68
Support installing from a CD9660 formatted disk partition.
--
Fix check of AmigaDOS environment vector for nonstandard disklabel values.
Don't set a default fsize for CD9660 partitions, the CD9660 filesystem
interprets it as a session offset.
--
Ask for the boot command. It's necessary for some hardware
configurations and also to enable a serial console in the installed
system.
--
Mention the installer question for the boot command.
Revision 1.28: download - view: text, markup, annotated - select for diffs
Tue Aug 15 12:07:23 2017 UTC (7 years, 5 months ago) by mlelstv
Branches: MAIN
CVS tags: phil-wifi-base,
pgoyette-compat-merge-20190127,
pgoyette-compat-base,
pgoyette-compat-20190127,
pgoyette-compat-20190118,
pgoyette-compat-1226,
pgoyette-compat-1126,
pgoyette-compat-1020,
pgoyette-compat-0930,
pgoyette-compat-0906,
pgoyette-compat-0728,
pgoyette-compat-0625,
pgoyette-compat-0521,
pgoyette-compat-0502,
pgoyette-compat-0422,
pgoyette-compat-0415,
pgoyette-compat-0407,
pgoyette-compat-0330,
pgoyette-compat-0322,
pgoyette-compat-0315,
pgoyette-compat
Branch point for: phil-wifi
Diff to: previous 1.27: preferred, colored
Changes since revision 1.27: +4 -2
lines
Ask for the boot command. It's necessary for some hardware
configurations and also to enable a serial console in the installed
system.
Revision 1.27: download - view: text, markup, annotated - select for diffs
Sun May 24 22:59:18 2009 UTC (15 years, 8 months ago) by mlelstv
Branches: MAIN
CVS tags: yamt-pagecache-tag8,
yamt-pagecache-base9,
yamt-pagecache-base8,
yamt-pagecache-base7,
yamt-pagecache-base6,
yamt-pagecache-base5,
yamt-pagecache-base4,
yamt-pagecache-base3,
yamt-pagecache-base2,
yamt-pagecache-base,
yamt-pagecache,
tls-maxphys-base,
tls-maxphys,
tls-earlyentropy-base,
tls-earlyentropy,
riastradh-xf86-video-intel-2-7-1-pre-2-21-15,
riastradh-drm2-base3,
riastradh-drm2-base2,
riastradh-drm2-base1,
riastradh-drm2-base,
riastradh-drm2,
prg-localcount2-base3,
prg-localcount2-base2,
prg-localcount2-base1,
prg-localcount2-base,
prg-localcount2,
pgoyette-localcount-base,
pgoyette-localcount-20170426,
pgoyette-localcount-20170320,
pgoyette-localcount-20170107,
pgoyette-localcount-20161104,
pgoyette-localcount-20160806,
pgoyette-localcount-20160726,
pgoyette-localcount,
perseant-stdc-iso10646-base,
perseant-stdc-iso10646,
netbsd-8-base,
netbsd-7-nhusb-base-20170116,
netbsd-7-nhusb-base,
netbsd-7-nhusb,
netbsd-7-base,
netbsd-7-2-RELEASE,
netbsd-7-1-RELEASE,
netbsd-7-1-RC2,
netbsd-7-1-RC1,
netbsd-7-1-2-RELEASE,
netbsd-7-1-1-RELEASE,
netbsd-7-1,
netbsd-7-0-RELEASE,
netbsd-7-0-RC3,
netbsd-7-0-RC2,
netbsd-7-0-RC1,
netbsd-7-0-2-RELEASE,
netbsd-7-0-1-RELEASE,
netbsd-7-0,
netbsd-7,
netbsd-6-base,
netbsd-6-1-RELEASE,
netbsd-6-1-RC4,
netbsd-6-1-RC3,
netbsd-6-1-RC2,
netbsd-6-1-RC1,
netbsd-6-1-5-RELEASE,
netbsd-6-1-4-RELEASE,
netbsd-6-1-3-RELEASE,
netbsd-6-1-2-RELEASE,
netbsd-6-1-1-RELEASE,
netbsd-6-1,
netbsd-6-0-RELEASE,
netbsd-6-0-RC2,
netbsd-6-0-RC1,
netbsd-6-0-6-RELEASE,
netbsd-6-0-5-RELEASE,
netbsd-6-0-4-RELEASE,
netbsd-6-0-3-RELEASE,
netbsd-6-0-2-RELEASE,
netbsd-6-0-1-RELEASE,
netbsd-6-0,
netbsd-6,
matt-premerge-20091211,
matt-nb6-plus-nbase,
matt-nb6-plus-base,
matt-nb6-plus,
matt-mips64-premerge-20101231,
localcount-20160914,
khorben-n900,
cherry-xenmp-base,
cherry-xenmp,
bouyer-socketcan-base1,
bouyer-socketcan-base,
bouyer-socketcan,
bouyer-quota2-nbase,
bouyer-quota2-base,
bouyer-quota2,
agc-symver-base,
agc-symver
Branch point for: netbsd-8
Diff to: previous 1.26: preferred, colored
Changes since revision 1.26: +2 -3
lines
file(1) no longer provides the plain text "magic" database.
change the install.md script to not need file(1) similar to what the
sparc port did.
Revision 1.25.20.2
Sun Oct 5 20:10:13 2008 UTC (16 years, 3 months ago) by mjf
Branches: mjf-devfs2
FILE REMOVED
Changes since revision 1.25.20.1: +1 -1
lines
Sync with HEAD.
Revision 1.25.20.1: download - view: text, markup, annotated - select for diffs
Mon Jun 2 13:21:12 2008 UTC (16 years, 7 months ago) by mjf
Branches: mjf-devfs2
Diff to: previous 1.25: preferred, colored
Changes since revision 1.25: +1 -8
lines
Sync with HEAD.
Revision 1.25.22.1: download - view: text, markup, annotated - select for diffs
Sun May 18 12:29:34 2008 UTC (16 years, 8 months ago) by yamt
Branches: yamt-pf42
Diff to: previous 1.25: preferred, colored; next MAIN 1.26: preferred, colored
Changes since revision 1.25: +1 -8
lines
sync with head.
Revision 1.26: download - view: text, markup, annotated - select for diffs
Wed Apr 30 13:10:47 2008 UTC (16 years, 9 months ago) by martin
Branches: MAIN
CVS tags: yamt-pf42-base4,
yamt-pf42-base3,
yamt-pf42-base2,
wrstuden-revivesa-base-3,
wrstuden-revivesa-base-2,
wrstuden-revivesa-base-1,
wrstuden-revivesa-base,
wrstuden-revivesa,
netbsd-5-base,
netbsd-5-2-RELEASE,
netbsd-5-2-RC1,
netbsd-5-2-3-RELEASE,
netbsd-5-2-2-RELEASE,
netbsd-5-2-1-RELEASE,
netbsd-5-2,
netbsd-5-1-RELEASE,
netbsd-5-1-RC4,
netbsd-5-1-RC3,
netbsd-5-1-RC2,
netbsd-5-1-RC1,
netbsd-5-1-5-RELEASE,
netbsd-5-1-4-RELEASE,
netbsd-5-1-3-RELEASE,
netbsd-5-1-2-RELEASE,
netbsd-5-1-1-RELEASE,
netbsd-5-1,
netbsd-5-0-RELEASE,
netbsd-5-0-RC4,
netbsd-5-0-RC3,
netbsd-5-0-RC2,
netbsd-5-0-RC1,
netbsd-5-0-2-RELEASE,
netbsd-5-0-1-RELEASE,
netbsd-5-0,
netbsd-5,
mjf-devfs2-base,
matt-nb5-pq3-base,
matt-nb5-pq3,
matt-nb5-mips64-u2-k2-k4-k7-k8-k9,
matt-nb5-mips64-u1-k1-k5,
matt-nb5-mips64-premerge-20101231,
matt-nb5-mips64-premerge-20091211,
matt-nb5-mips64-k15,
matt-nb5-mips64,
matt-nb4-mips64-k7-u2a-k9b,
matt-mips64-base2,
jym-xensuspend-nbase,
jym-xensuspend-base,
jym-xensuspend,
hpcarm-cleanup-nbase
Diff to: previous 1.25: preferred, colored
Changes since revision 1.25: +1 -8
lines
Convert TNF licenses to new 2 clause variant
Revision 1.23.6.1.2.1: download - view: text, markup, annotated - select for diffs
Fri Jan 27 22:45:49 2006 UTC (19 years ago) by tron
Branches: netbsd-3-0
CVS tags: netbsd-3-0-3-RELEASE,
netbsd-3-0-2-RELEASE,
netbsd-3-0-1-RELEASE
Diff to: previous 1.23.6.1: preferred, colored; next MAIN 1.23.6.2: preferred, colored
Changes since revision 1.23.6.1: +5 -1
lines
Pull up following revision(s) (requested by is in ticket #1130):
distrib/miniroot/install.sh: revision 1.23
distrib/miniroot/upgrade.sh: revision 1.21
distrib/amiga/miniroot/install.md: revision 1.25
Instead of abusing the function md_prep_label(), create a new (optional)
md_view_labels() and a variable to mark its availability, so checking of
the available disklabels can be done before the root device is chosen.
Suggested by Martin Bertelsmann.
Revision 1.23.6.2: download - view: text, markup, annotated - select for diffs
Fri Jan 27 22:45:44 2006 UTC (19 years ago) by tron
Branches: netbsd-3
CVS tags: netbsd-3-1-RELEASE,
netbsd-3-1-RC4,
netbsd-3-1-RC3,
netbsd-3-1-RC2,
netbsd-3-1-RC1,
netbsd-3-1-1-RELEASE,
netbsd-3-1
Diff to: previous 1.23.6.1: preferred, colored; branchpoint 1.23: preferred, colored; next MAIN 1.24: preferred, colored
Changes since revision 1.23.6.1: +5 -1
lines
Pull up following revision(s) (requested by is in ticket #1130):
distrib/miniroot/install.sh: revision 1.23
distrib/miniroot/upgrade.sh: revision 1.21
distrib/amiga/miniroot/install.md: revision 1.25
Instead of abusing the function md_prep_label(), create a new (optional)
md_view_labels() and a variable to mark its availability, so checking of
the available disklabels can be done before the root device is chosen.
Suggested by Martin Bertelsmann.
Revision 1.25: download - view: text, markup, annotated - select for diffs
Wed Jan 18 13:39:05 2006 UTC (19 years ago) by is
Branches: MAIN
CVS tags: yamt-pf42-baseX,
yamt-pf42-base,
wrstuden-fixsa-newbase,
wrstuden-fixsa-base-1,
wrstuden-fixsa-base,
wrstuden-fixsa,
netbsd-4-base,
netbsd-4-0-RELEASE,
netbsd-4-0-RC5,
netbsd-4-0-RC4,
netbsd-4-0-RC3,
netbsd-4-0-RC2,
netbsd-4-0-RC1,
netbsd-4-0-1-RELEASE,
netbsd-4-0,
netbsd-4,
mjf-devfs-base,
mjf-devfs,
matt-mips64-base,
matt-mips64,
matt-armv6-prevmlocking,
matt-armv6-nbase,
matt-armv6-base,
matt-armv6,
keiichi-mipv6-base,
keiichi-mipv6,
hpcarm-cleanup-base,
hpcarm-cleanup,
cube-autoconf-base,
cube-autoconf,
abandoned-netbsd-4-base,
abandoned-netbsd-4
Branch point for: yamt-pf42,
mjf-devfs2
Diff to: previous 1.24: preferred, colored
Changes since revision 1.24: +6 -2
lines
Instead of abusing the function md_prep_label(), create a new (optional)
md_view_labels() and a variable to mark its availability, so checking of
the available disklabels can be done before the root device is chosen.
Suggested by Martin Bertelsmann.
Revision 1.23.6.1: download - view: text, markup, annotated - select for diffs
Thu Dec 15 20:01:09 2005 UTC (19 years, 1 month ago) by tron
Branches: netbsd-3
CVS tags: netbsd-3-0-RELEASE
Branch point for: netbsd-3-0
Diff to: previous 1.23: preferred, colored
Changes since revision 1.23: +2 -2
lines
Pull up following revision(s) (requested by mhitch in ticket #1043):
distrib/amiga/miniroot/install.md: revision 1.24
Add xetc to the sets list.
Revision 1.24: download - view: text, markup, annotated - select for diffs
Wed Dec 7 18:25:43 2005 UTC (19 years, 1 month ago) by mhitch
Branches: MAIN
Diff to: previous 1.23: preferred, colored
Changes since revision 1.23: +2 -2
lines
Add xetc to the sets list.
Revision 1.23: download - view: text, markup, annotated - select for diffs
Sat Jan 17 05:30:01 2004 UTC (21 years ago) by lukem
Branches: MAIN
CVS tags: netbsd-3-base,
netbsd-3-0-RC6,
netbsd-3-0-RC5,
netbsd-3-0-RC4,
netbsd-3-0-RC3,
netbsd-3-0-RC2,
netbsd-3-0-RC1,
netbsd-2-base,
netbsd-2-1-RELEASE,
netbsd-2-1-RC6,
netbsd-2-1-RC5,
netbsd-2-1-RC4,
netbsd-2-1-RC3,
netbsd-2-1-RC2,
netbsd-2-1-RC1,
netbsd-2-1,
netbsd-2-0-base,
netbsd-2-0-RELEASE,
netbsd-2-0-RC5,
netbsd-2-0-RC4,
netbsd-2-0-RC3,
netbsd-2-0-RC2,
netbsd-2-0-RC1,
netbsd-2-0-3-RELEASE,
netbsd-2-0-2-RELEASE,
netbsd-2-0-1-RELEASE,
netbsd-2-0,
netbsd-2
Branch point for: netbsd-3
Diff to: previous 1.22: preferred, colored
Changes since revision 1.22: +2 -2
lines
Remove references to xcontrib and xmisc now that they've been merged
into xbase.
Revision 1.18.2.2: download - view: text, markup, annotated - select for diffs
Sun Jan 26 10:15:39 2003 UTC (22 years ago) by jmc
Branches: netbsd-1-6
CVS tags: netbsd-1-6-PATCH002-RELEASE,
netbsd-1-6-PATCH002-RC4,
netbsd-1-6-PATCH002-RC3,
netbsd-1-6-PATCH002-RC2,
netbsd-1-6-PATCH002-RC1,
netbsd-1-6-PATCH002,
netbsd-1-6-PATCH001-RELEASE,
netbsd-1-6-PATCH001-RC3,
netbsd-1-6-PATCH001-RC2,
netbsd-1-6-PATCH001-RC1,
netbsd-1-6-PATCH001
Diff to: previous 1.18.2.1: preferred, colored; branchpoint 1.18: preferred, colored; next MAIN 1.19: preferred, colored
Changes since revision 1.18.2.1: +1 -2
lines
Pullup revisions 1.19-1.20 (requested by is in ticket #1071)
Make it work more than one time. The old behaviour was very annoying.
Revision 1.22: download - view: text, markup, annotated - select for diffs
Wed Jan 15 07:20:52 2003 UTC (22 years ago) by mhitch
Branches: MAIN
Diff to: previous 1.21: preferred, colored
Changes since revision 1.21: +4 -4
lines
Use the MI /usr/sbin/installboot instead of /usr/mdec/installboot.
Revision 1.21: download - view: text, markup, annotated - select for diffs
Mon Jan 13 20:34:05 2003 UTC (22 years ago) by is
Branches: MAIN
Diff to: previous 1.20: preferred, colored
Changes since revision 1.20: +2 -2
lines
make this less confusing
Revision 1.20: download - view: text, markup, annotated - select for diffs
Sun Jan 12 14:41:20 2003 UTC (22 years ago) by is
Branches: MAIN
Diff to: previous 1.19: preferred, colored
Changes since revision 1.19: +2 -3
lines
Make it work more than one time. The old behaviour was very annoying.
Reviewed by hubertf.
Revision 1.18.2.1: download - view: text, markup, annotated - select for diffs
Tue Jul 23 07:05:27 2002 UTC (22 years, 6 months ago) by lukem
Branches: netbsd-1-6
CVS tags: netbsd-1-6-RELEASE,
netbsd-1-6-RC3,
netbsd-1-6-RC2,
netbsd-1-6-RC1
Diff to: previous 1.18: preferred, colored
Changes since revision 1.18: +122 -1
lines
Pull up revision 1.19 (requested by mhitch in ticket #538):
Add support for aout to ELF conversion to install.md, copied from the sparc
miniroot install.md. Add usr/bin/file and usr/share/misc/magic to the
miniroot - used by the install.md changes. Upgrades will now move the
standard a.out shared libraries to /emul/aout.
Revision 1.19: download - view: text, markup, annotated - select for diffs
Tue Jul 23 03:52:02 2002 UTC (22 years, 6 months ago) by mhitch
Branches: MAIN
CVS tags: fvdl_fs64_base
Diff to: previous 1.18: preferred, colored
Changes since revision 1.18: +122 -1
lines
Add support for aout to ELF conversion to install.md, copied from the sparc
miniroot install.md. Add usr/bin/file and usr/share/misc/magic to the
miniroot - used by the install.md changes. Upgrades will now move the
standard a.out shared libraries to /emul/aout.
Revision 1.18: download - view: text, markup, annotated - select for diffs
Mon Apr 15 02:48:17 2002 UTC (22 years, 9 months ago) by mhitch
Branches: MAIN
CVS tags: netbsd-1-6-base
Branch point for: netbsd-1-6
Diff to: previous 1.17: preferred, colored
Changes since revision 1.17: +2 -1
lines
Need to install /boot.amiga when installing/upgrading the bootblocks.
Revision 1.17: download - view: text, markup, annotated - select for diffs
Sat Mar 2 18:41:41 2002 UTC (22 years, 11 months ago) by mhitch
Branches: MAIN
Diff to: previous 1.16: preferred, colored
Changes since revision 1.16: +2 -2
lines
Adjust for change in kernel set naming.
Revision 1.16: download - view: text, markup, annotated - select for diffs
Mon Dec 17 05:59:20 2001 UTC (23 years, 1 month ago) by mhitch
Branches: MAIN
Diff to: previous 1.15: preferred, colored
Changes since revision 1.15: +2 -2
lines
Change to use the new two-stage boot loader when building the miniroot
filesystem.
Revision 1.11.8.4: download - view: text, markup, annotated - select for diffs
Sun Jul 29 20:38:22 2001 UTC (23 years, 6 months ago) by he
Branches: netbsd-1-5
CVS tags: netbsd-1-5-PATCH003,
netbsd-1-5-PATCH002
Diff to: previous 1.11.8.3: preferred, colored; branchpoint 1.11: preferred, colored; next MAIN 1.12: preferred, colored
Changes since revision 1.11.8.3: +2 -2
lines
Pull up revision 1.15 (requested by is):
Workaround for the changed ``mount'' behaviour, which no longer
defaults to ``ffs'' in certain circumstances.
Revision 1.15: download - view: text, markup, annotated - select for diffs
Thu Jul 26 21:58:46 2001 UTC (23 years, 6 months ago) by is
Branches: MAIN
Diff to: previous 1.14: preferred, colored
Changes since revision 1.14: +2 -2
lines
explicitly use ffs. As we currently are pretty much limited to ffs, for
bootblock reasons, this is ok...
XXX instead, mount should be changed to really guess what type is there, even
on mfs /kern/rootdev.
Revision 1.11.8.3: download - view: text, markup, annotated - select for diffs
Wed Nov 15 19:49:14 2000 UTC (24 years, 2 months ago) by tv
Branches: netbsd-1-5
CVS tags: netbsd-1-5-RELEASE,
netbsd-1-5-PATCH001
Diff to: previous 1.11.8.2: preferred, colored; branchpoint 1.11: preferred, colored
Changes since revision 1.11.8.2: +15 -1
lines
Pullup 1.14 [is]:
On upgrades, or on installs where kern.tgz was installed, ask user wether
the installed kernel should be replaced by the miniroot kernel.
Revision 1.14: download - view: text, markup, annotated - select for diffs
Tue Nov 14 22:37:58 2000 UTC (24 years, 2 months ago) by is
Branches: MAIN
Diff to: previous 1.13: preferred, colored
Changes since revision 1.13: +15 -1
lines
On upgrades, or on installs where kern.tgz was installed, ask user wether
the installed kernel should be replaced by the miniroot kernel.
Revision 1.11.8.2: download - view: text, markup, annotated - select for diffs
Mon Oct 30 23:36:16 2000 UTC (24 years, 3 months ago) by tv
Branches: netbsd-1-5
CVS tags: netbsd-1-5-BETA2
Diff to: previous 1.11.8.1: preferred, colored; branchpoint 1.11: preferred, colored
Changes since revision 1.11.8.1: +2 -2
lines
Pullup 1.13 [is]:
When no bootblock is installed, no more action, output etc. is to be
expected, so no need for "...". Pointed out by Petri Koistinen.
Revision 1.13: download - view: text, markup, annotated - select for diffs
Tue Oct 24 19:43:23 2000 UTC (24 years, 3 months ago) by is
Branches: MAIN
Diff to: previous 1.12: preferred, colored
Changes since revision 1.12: +2 -2
lines
When no bootblock is installed, no more action, output etc. is to be
expected, so no need for "...". Pointed out by Petri Koistinen.
Revision 1.11.8.1: download - view: text, markup, annotated - select for diffs
Tue Oct 17 19:56:24 2000 UTC (24 years, 3 months ago) by tv
Branches: netbsd-1-5
CVS tags: netbsd-1-5-BETA
Diff to: previous 1.11: preferred, colored
Changes since revision 1.11: +2 -2
lines
Pullup 1.12 [is]:
Now that we use an INSTALL kernel on the miniroot, give the user the
opportunity to install the GENERIC from kern.tgz.
Revision 1.12: download - view: text, markup, annotated - select for diffs
Sun Sep 17 21:07:10 2000 UTC (24 years, 4 months ago) by is
Branches: MAIN
Diff to: previous 1.11: preferred, colored
Changes since revision 1.11: +2 -2
lines
Now that we use an INSTALL kernel on the miniroot, give the user the
opportunity to install the GENERIC from kern.tgz.
Revision 1.9.2.2: download - view: text, markup, annotated - select for diffs
Fri Jul 2 18:08:33 1999 UTC (25 years, 7 months ago) by perry
Branches: netbsd-1-4
CVS tags: netbsd-1-4-PATCH003,
netbsd-1-4-PATCH002,
netbsd-1-4-PATCH001
Diff to: previous 1.9.2.1: preferred, colored; branchpoint 1.9: preferred, colored; next MAIN 1.10: preferred, colored
Changes since revision 1.9.2.1: +4 -3
lines
pullup 1.10->1.11 (is)
Revision 1.9.2.1: download - view: text, markup, annotated - select for diffs
Fri Jul 2 17:57:43 1999 UTC (25 years, 7 months ago) by perry
Branches: netbsd-1-4
Diff to: previous 1.9: preferred, colored
Changes since revision 1.9: +7 -1
lines
pullup 1.9->1.10 (is): warn users not to use partition c
Revision 1.11: download - view: text, markup, annotated - select for diffs
Tue Jun 29 20:32:54 1999 UTC (25 years, 7 months ago) by is
Branches: MAIN
CVS tags: wrstuden-devbsize-base,
wrstuden-devbsize-19991221,
wrstuden-devbsize,
netbsd-1-5-base,
netbsd-1-5-ALPHA2,
minoura-xpg4dl-base,
minoura-xpg4dl,
comdex-fall-1999-base,
comdex-fall-1999
Branch point for: netbsd-1-5
Diff to: previous 1.10: preferred, colored
Changes since revision 1.10: +4 -3
lines
Fix loop termination bug.
Won't try any longer to disklabel /dev/rdonec when exiting the
"look at disk label" loop (in md_prep_disklabel).
Revision 1.10: download - view: text, markup, annotated - select for diffs
Tue Jun 29 16:08:10 1999 UTC (25 years, 7 months ago) by is
Branches: MAIN
Diff to: previous 1.9: preferred, colored
Changes since revision 1.9: +7 -1
lines
Warn user not to use partition c for file systems
Revision 1.3.2.5: download - view: text, markup, annotated - select for diffs
Fri Nov 21 23:09:42 1997 UTC (27 years, 2 months ago) by is
Branches: netbsd-1-3
CVS tags: netbsd-1-3-RELEASE,
netbsd-1-3-PATCH003-CANDIDATE2,
netbsd-1-3-PATCH003-CANDIDATE1,
netbsd-1-3-PATCH003-CANDIDATE0,
netbsd-1-3-PATCH003,
netbsd-1-3-PATCH002,
netbsd-1-3-PATCH001,
netbsd-1-3-BETA
Diff to: previous 1.3.2.4: preferred, colored; branchpoint 1.3: preferred, colored; next MAIN 1.4: preferred, colored
Changes since revision 1.3.2.4: +12 -74
lines
Pullup from trunk:
Allow user to look at the disk labels before creating the fstab (abusing
md_prep_disklabel, which we can't do from inside NetBSD yet).
Revision 1.9: download - view: text, markup, annotated - select for diffs
Fri Nov 21 23:04:38 1997 UTC (27 years, 2 months ago) by is
Branches: MAIN
CVS tags: netbsd-1-4-base,
netbsd-1-4-RELEASE
Branch point for: netbsd-1-4
Diff to: previous 1.8: preferred, colored
Changes since revision 1.8: +12 -74
lines
Get rid of (commented out) remnant of Atari install.md md_prep_disklabel.
Add into ours (which previously did nothing) a loop which allows to look
at the existing disk label.
Revision 1.3.2.4: download - view: text, markup, annotated - select for diffs
Fri Nov 21 22:10:22 1997 UTC (27 years, 2 months ago) by is
Branches: netbsd-1-3
Diff to: previous 1.3.2.3: preferred, colored; branchpoint 1.3: preferred, colored
Changes since revision 1.3.2.3: +2 -2
lines
Sync with trunk: Offer to install the X11 sets, too.
Revision 1.8: download - view: text, markup, annotated - select for diffs
Fri Nov 21 21:59:46 1997 UTC (27 years, 2 months ago) by is
Branches: MAIN
Diff to: previous 1.7: preferred, colored
Changes since revision 1.7: +2 -2
lines
Offer to install the X11 sets, too.
Revision 1.3.2.3: download - view: text, markup, annotated - select for diffs
Fri Nov 21 21:46:12 1997 UTC (27 years, 2 months ago) by is
Branches: netbsd-1-3
Diff to: previous 1.3.2.2: preferred, colored; branchpoint 1.3: preferred, colored
Changes since revision 1.3.2.2: +7 -1
lines
Sync with trunk: install selected keyboardmap also in installed system.
Revision 1.7: download - view: text, markup, annotated - select for diffs
Fri Nov 21 21:16:41 1997 UTC (27 years, 2 months ago) by is
Branches: MAIN
Diff to: previous 1.6: preferred, colored
Changes since revision 1.6: +7 -1
lines
If we're (I)nstalling, add the same loadkmap call we use for the install
script to the end of rc.local.
Revision 1.3.2.2: download - view: text, markup, annotated - select for diffs
Fri Nov 14 10:11:00 1997 UTC (27 years, 2 months ago) by veego
Branches: netbsd-1-3
Diff to: previous 1.3.2.1: preferred, colored; branchpoint 1.3: preferred, colored
Changes since revision 1.3.2.1: +2 -2
lines
Pull up rev 1.6 from the trunk:
>md_native_fsopts don't need a '-', because install.sub use this
>variable for '-o $md_native_fsopts'.
>marmoset <pygmymarmoset@geocities.com> noticed the problem with
>mounting a ados filesystem.
Revision 1.6: download - view: text, markup, annotated - select for diffs
Fri Nov 14 10:09:08 1997 UTC (27 years, 2 months ago) by veego
Branches: MAIN
Diff to: previous 1.5: preferred, colored
Changes since revision 1.5: +2 -2
lines
md_native_fsopts don't need a '-', because install.sub use this
variable for '-o $md_native_fsopts'.
marmoset <pygmymarmoset@geocities.com> noticed the problem with
mounting a ados filesystem.
Revision 1.3.2.1: download - view: text, markup, annotated - select for diffs
Fri Oct 31 21:27:07 1997 UTC (27 years, 3 months ago) by mellon
Branches: netbsd-1-3
Diff to: previous 1.3: preferred, colored
Changes since revision 1.3: +3 -3
lines
Pull rev 1.4 and 1.5 up from trunk (mhitch)
Revision 1.5: download - view: text, markup, annotated - select for diffs
Fri Oct 31 04:41:47 1997 UTC (27 years, 3 months ago) by mhitch
Branches: MAIN
Diff to: previous 1.4: preferred, colored
Changes since revision 1.4: +2 -2
lines
Mount needs -u option to make root writable.
Revision 1.4: download - view: text, markup, annotated - select for diffs
Wed Oct 29 17:36:56 1997 UTC (27 years, 3 months ago) by mhitch
Branches: MAIN
Diff to: previous 1.3: preferred, colored
Changes since revision 1.3: +2 -2
lines
Fix md_installboot() to use the correct arguments for installboot.
Revision 1.3: download - view: text, markup, annotated - select for diffs
Thu Oct 9 07:25:45 1997 UTC (27 years, 3 months ago) by jtc
Branches: MAIN
CVS tags: netbsd-1-3-base
Branch point for: netbsd-1-3
Diff to: previous 1.2: preferred, colored
Changes since revision 1.2: +3 -3
lines
Fix tipo inherited from old version of TNF copyright template.
Revision 1.2: download - view: text, markup, annotated - select for diffs
Tue Sep 23 13:48:33 1997 UTC (27 years, 4 months ago) by is
Branches: MAIN
Diff to: previous 1.1: preferred, colored
Changes since revision 1.1: +1 -9
lines
We don't need md_get_ifdevs any more; install.sub calls ifconfig -l
nowadays.
Revision 1.1: download - view: text, markup, annotated - select for diffs
Tue Sep 9 23:07:05 1997 UTC (27 years, 4 months ago) by is
Branches: MAIN
First hack at generic miniroot installation for NetBSD/Amiga.
Needs refinement at a few places, probably, and the docs still need to be
rewritten.
And we _still_ don't have a native partition table editor in the tree.
CVSweb <webmaster@jp.NetBSD.org>