1
0
mirror of https://github.com/openbsd/src.git synced 2025-01-10 06:47:55 -08:00
Commit Graph

9150 Commits

Author SHA1 Message Date
kettenis
ea8cfa21a9 Installer bits for powerpc64. 2020-07-04 21:11:03 +00:00
kettenis
2273c6c2f8 More powerpc64 sets. 2020-07-03 12:42:06 +00:00
kettenis
b67cf2cf2b Sets for powerpc64. 2020-07-03 12:29:10 +00:00
visa
473a7c2951 Remove obsolete <machine/stdarg.h> header. Nowadays the vararg
functionality is provided by <sys/stdarg.h> using compiler builtins.

Tested in a ports bulk build on amd64 by naddy@

OK naddy@ mpi@
2020-06-30 15:41:55 +00:00
deraadt
c193e3284e sync 2020-06-30 01:42:18 +00:00
deraadt
fa9e9b8bbb reduce differences from src/*/installboot/Makefile 2020-06-28 14:52:19 +00:00
afresh1
c45dd97e4f sync perl cleanup 2020-06-27 20:44:50 +00:00
deraadt
a284d5af97 convert macppc, octeon, and loongson to use MI installboot, removing
special case scripting in install.md.
(macppc still requires manual steps for HFS bootmode)
tested by krw, visa, gkoehler
2020-06-27 15:35:27 +00:00
sthen
7a9418aa8f sync 2020-06-27 01:26:02 +00:00
deraadt
99b09185e1 sync 2020-06-25 18:17:19 +00:00
deraadt
04b4043383 sync 2020-06-25 12:35:28 +00:00
deraadt
12ae8423d6 sync 2020-06-24 18:24:07 +00:00
deraadt
10caf9481f kernel no longer has to be placed into the boot area, because
we have proper bootblocks.
ok visa
2020-06-24 03:54:02 +00:00
deraadt
53362fccfc sync 2020-06-21 23:40:07 +00:00
deraadt
bb4b803b64 sync 2020-06-21 00:30:42 +00:00
deraadt
644f2474d3 sync 2020-06-19 00:59:40 +00:00
deraadt
8056075b7a sync 2020-06-17 05:45:26 +00:00
sthen
a2f7f3f6f2 sync again, oops wrong file 2020-06-16 09:37:03 +00:00
sthen
05e556b492 sync 2020-06-16 09:35:58 +00:00
deraadt
3421c9e79d sync 2020-06-12 17:58:32 +00:00
deraadt
7ecf57c65a sync 2020-06-11 03:31:02 +00:00
deraadt
106f3a18ea sync 2020-06-10 20:31:27 +00:00
deraadt
8717b3bd09 growth 2020-06-08 15:21:38 +00:00
deraadt
6dde330cea sync 2020-06-05 16:11:25 +00:00
deraadt
4182ca743d sync 2020-06-04 16:31:03 +00:00
afresh1
3df5759b38 Sync new perldelta 2020-06-04 01:35:48 +00:00
deraadt
76080ec20e sync 2020-06-03 21:02:19 +00:00
deraadt
85563f1889 sync 2020-06-02 23:05:45 +00:00
deraadt
12fc8b74d5 sync 2020-06-01 04:08:13 +00:00
deraadt
0edfb2b8da sync 2020-05-31 22:36:32 +00:00
deraadt
3d4a33286c sync 2020-05-29 20:33:35 +00:00
deraadt
3786cbb67d sync 2020-05-29 12:51:55 +00:00
deraadt
b255a2a556 sync 2020-05-29 04:45:57 +00:00
deraadt
e4dd526e34 sync 2020-05-27 17:39:57 +00:00
visa
9df0f941a9 Retire <machine/varargs.h>.
Nothing uses the header anymore.

OK deraadt@ mpi@
2020-05-27 15:16:04 +00:00
florian
ad62da3fe6 In the first version of sysupgrade(8) I made the mistake of generating
auto_upgrade.conf in bsd.rd instead of sysupgrade(8) itself.
ajacoutot@ fixed this, but had to introduce a bunch of compat code in
bsd.rd.
It is time to retire this. Only 6.5-current contained this flaw,
sysupgrade(8)ing from there to -current will no longer work but we
never made any promises that it would anyway.
OK deraadt, ajacoutot
2020-05-26 16:21:00 +00:00
otto
91b8c64f83 make non-root filesystems ffs2 for landisk, sgi and luna88k; ok aoyama@ visa@ 2020-05-25 06:18:53 +00:00
deraadt
906c90c3e8 sync 2020-05-24 17:42:56 +00:00
tb
bbda8d7c11 Adjust the sanity check for patch file names to allow a hyphen.
ok aja
2020-05-24 16:48:35 +00:00
deraadt
c3235327f9 sync 2020-05-24 13:29:53 +00:00
kn
88c728ccd4 Revert the following commit as it breaks hostname.if(5) lines with a
backslash at the end for line continuation

Breaking long lines into multiple ones must still be possible and does
require to treat the backslash as an escape character.

Breakage reported by Mark Patruck <mark at wrapped dot cx >, thanks!

---
distrib/miniroot/install.sub revision 1.1151
etc/netstart revision 1.203
date: 2020/05/21 11:54:41;  author: kn;  state: Exp;  lines: +2 -2;
Do not treat backslashe as an escape character in hostname.if(5) lines

ifstart() should always pass such lines unaltered, especially if they
contain "nwid" or "description" lines with arbitrary strings.

<bsdlisten at gmail dot com> reported SSIDs such as "Mike's" during
installation end as broken;  this was because the installer escaped
the single quote using backslashes which ended up being treated as
escape characters much later during hostname.if parsing in netstart(8).

Ok deraadt
2020-05-22 13:38:43 +00:00
kn
9ed80bb094 Fix stripcom() description wrt. comments not on their own line
Neither netstart's nor install.sub's (subtly different) implementations
remove trailing comments on lines not starting as a comment, e.g.,
lines like "up #not down" go through unaltered and without "#not down"
being removed.

Only lines *beginning* with the comment sign ("#") are stripped.

No functional change, just updating function descriptions.
2020-05-21 13:42:02 +00:00
kn
2bf3771424 Do not treat backslashe as an escape character in hostname.if(5) lines
ifstart() should always pass such lines unaltered, especially if they
contain "nwid" or "description" lines with arbitrary strings.

<bsdlisten at gmail dot com> reported SSIDs such as "Mike's" during
installation end as broken;  this was because the installer escaped
the single quote using backslashes which ended up being treated as
escape characters much later during hostname.if parsing in netstart(8).

Ok deraadt
2020-05-21 11:54:41 +00:00
deraadt
507490d3ff sync 2020-05-20 17:09:32 +00:00
otto
6bc807e4d8 Make ffs2 the default for newfs; change all calls to create e.g. floppy
filesystems or ramdisks to use explicit -O 1; installer already does that.
ok sthen@
2020-05-18 06:20:43 +00:00
deraadt
4675fc66a8 Change install images called *.fs to *.img. These are UFS filesystem images,
but additionally have a bootblock in the first 8K (since UFS does not use that
space).  There are some UEFI direct-from-internet bootloaders that require
the name *.img.  So this makes things more convenient for those, while keeping
it consistant in all architectures.
ok kettenis beck kn
2020-05-17 17:04:27 +00:00
schwarze
2fa8b46cca move section 3 manual page to the usual set 2020-05-17 16:27:24 +00:00
deraadt
aff5167c5f sync 2020-05-16 18:41:22 +00:00
benno
dda1a9012f There have been no floppy images since the 6.2 release. Remove mention
of boot floppies from the INSTALL.alpha notes.
ok deraadt@
2020-04-28 13:02:10 +00:00
sthen
9e7c8a5b67 sync 2020-04-28 10:49:37 +00:00