sortix-mirror/sysinstall
Jonas 'Sortie' Termansen 29555d72bb Fix <fcntl.h> including <sys/stat.h> namespace pollution.
POSIX allows <fcntl.h> to include <sys/stat.h>, but doesn't require it.
There's little reason to do that, since they are separate headers, and
<fcntl.h> just needs the mode_t constants. Fix the code accidentally
relying on <fcntl.h> including <sys/stat.h>. The mode_t constants are now
provided in their own kernel header <sortix/mode.h>.

Additionally fix <sys/stat.h> pulling in all of <sys/types.h>, which is not
allowed by POSIX, which only requires a few types to be declared. Fix the
code accidentally relying on <sys/stat.h> including <sys/types.h>.

Finally fix <dirent.h> pulling in <stdint.h> through <sortix/dirent.h>.

The <sortix/__/dt.h> and <sortix/__/stat.h> headers are no longer required
and their contents have been merged into <sortix/__/dirent.h>.
2018-08-06 23:59:34 +02:00
..
.gitignore Add sysinstall(8), sysmerge(8), and sysupgrade(8). 2016-02-21 18:41:11 +01:00
Makefile Default to installing GRUB if an existing installation uses GRUB. 2016-10-04 00:34:50 +02:00
conf.c Fix getline(3) and getdelim(3) usage. 2016-05-15 19:32:04 +02:00
conf.h Relicense Sortix to the ISC license. 2016-03-05 22:21:50 +01:00
devices.c Add sysinstall(8) tip for selecting devices in disked(8). 2016-10-04 00:34:50 +02:00
devices.h Add sysinstall(8) tip for selecting devices in disked(8). 2016-10-04 00:34:50 +02:00
execute.c Relicense Sortix to the ISC license. 2016-03-05 22:21:50 +01:00
execute.h Relicense Sortix to the ISC license. 2016-03-05 22:21:50 +01:00
fileops.c Mix in fresh randomness when writing out /boot/random.seed. 2017-09-06 23:41:05 +02:00
fileops.h Check architecture compatibility during sysmerge(8)/sysupgrade(8). 2017-04-12 14:05:03 -05:00
hooks.c Refactor sysmerge(8) and sysupgrade(8) ABI and version comparisons. 2017-09-06 23:41:05 +02:00
hooks.h Refactor sysmerge(8) and sysupgrade(8) compatibility hooks. 2016-10-04 00:34:50 +02:00
interactive.c Highlight installer, upgrader and disked interactive prompts. 2017-08-26 16:43:54 +02:00
interactive.h Allow canceling sysinstall(8) and sysupgrade(8) gracefully. 2016-10-04 00:34:50 +02:00
manifest.c Fix <fcntl.h> including <sys/stat.h> namespace pollution. 2018-08-06 23:59:34 +02:00
manifest.h Relicense Sortix to the ISC license. 2016-03-05 22:21:50 +01:00
release.c Refactor sysmerge(8) and sysupgrade(8) ABI and version comparisons. 2017-09-06 23:41:05 +02:00
release.h Refactor sysmerge(8) and sysupgrade(8) ABI and version comparisons. 2017-09-06 23:41:05 +02:00
sysinstall.8 Fix date format in manual pages. 2017-07-02 22:07:39 +02:00
sysinstall.c Fix typo when sysinstall(8) says have to set up bootloading yourself. 2018-04-08 21:38:50 +02:00
sysmerge.8 Fix date format in manual pages. 2017-07-02 22:07:39 +02:00
sysmerge.c Fix <fcntl.h> including <sys/stat.h> namespace pollution. 2018-08-06 23:59:34 +02:00
sysupgrade.8 Fix date format in manual pages. 2017-07-02 22:07:39 +02:00
sysupgrade.c Refactor sysmerge(8) and sysupgrade(8) ABI and version comparisons. 2017-09-06 23:41:05 +02:00