Commit graph

127 commits

Author SHA1 Message Date
Jonas 'Sortie' Termansen
069f3b3887 Fix bad manual references without the section. 2025-02-18 17:43:18 +01:00
Jonas 'Sortie' Termansen
e40bec6441 Fix manual reference to stty(1). 2025-02-18 17:43:18 +01:00
Jonas 'Sortie' Termansen
65752cf4ee Fix manual reference to pthread_attr_setstacksize(3). 2025-02-18 17:43:17 +01:00
Jonas 'Sortie' Termansen
aecd4134a5 Fix the hook_ports_set_* hooks. 2025-02-12 14:50:58 +01:00
Jonas 'Sortie' Termansen
39aad96d26 Move /etc/sortix-release to /lib and deprecate /etc/machine.
/etc/sortix-release is temporarily a symbolic link to /lib/sortix-release,
as the file is required to upgrade from source on Sortix 1.0.

/etc/machine is temporarily a symbolic link to /lib/machine, as the file
is required to upgrade from source on Sortix 1.0. However, the
/lib/machine file is obsolescent and will be removed after the next
release, when the compatibility can be dropped

/etc/os-release is moved to /lib/os-release, which is allowed per the
standard since /usr is a symbolic link to the current directory. Nothing
needed the file to be in its old location.
2025-01-26 14:08:46 +01:00
Jonas 'Sortie' Termansen
03e8ed9415 Recognize read-only block devices.
Add tcgetblob(2) harddisk-writable key that says whether a block device is
writable.

Prefer writable block devices in disked(8).

Ignore read-only block devices in sysinstall(8) and sysupgrade(8) when
searching for existing installations and other operating systems.

This is a compatible ABI change.
2025-01-26 14:04:11 +01:00
Jonas 'Sortie' Termansen
e39bf9df95 Add tix-metabuild(8).
This new tool builds all the binary packages from a ports directory and
replaces the latter half of build-aux/build-ports.sh. Meanwhile it has
gained cleaning support and build-aux/clean-ports.sh is merged into
build-aux/build-ports.sh for simplicity.
2024-12-29 23:58:53 +01:00
Jonas 'Sortie' Termansen
e57c84c5e6 Add com(4) terminal and console support.
Implement com(4) interrupt support for receiving data.

Add termios terminal support to the com(4) driver with tcsetattr(2)
support for configuring the hardware serial settings.

Add kernel(7) --console option which can be used to initialize the
com(4) driver early for the kernel console with the specified serial
settings and window size.

Add kernel(7) --text option for overriding the TERM environment variable.

Add kernel(7) --disable-logo option for disabling writing the the
operating system logo to the console on boot.

Add advanced bootloader option to select booting to a serial console on
com1. Add bootloader variables and hooks to customize this behavior.

Add tix-iso-bootconfig(8) --console, --grub-serial, --serial, and
--serial-console options as a convenince to opt into booting to the
serial console by default.

Add tix-iso-bootconfig(8) --kernel-options option for forwarding
additional options to the kernel.

The logterminal driver used for tty1 currently assumes that it controls
the kernel log, which is not true when com(4) is used as the console,
therefore the tty1 driver is currently disabled if a serial console is
selected, as a temporary workaround.
2024-12-16 17:37:37 +01:00
Jonas 'Sortie' Termansen
1444f907c6 Convert minimal, basic, and all sets to ports. 2024-12-01 20:50:55 +01:00
Jonas 'Sortie' Termansen
91952d7e51 Add tix-repository(8).
Support renaming, splitting, and deleting ports via RENAMES.
2024-12-01 20:50:55 +01:00
Jonas 'Sortie' Termansen
102e19b0dc Add port runtime dependencies. 2024-11-19 18:08:56 +01:00
Jonas 'Sortie' Termansen
4a8a3f5a3e Fix wrong paths to /etc/default/grub.d/10_sortix. 2024-11-03 15:15:06 +01:00
Jonas 'Sortie' Termansen
04ebd50176 Fix missing period in tcp(4) retransmission documentation. 2024-10-17 10:59:18 +02:00
Jonas 'Sortie' Termansen
e4f18b8049 Collect entropy. 2024-10-10 13:24:16 +02:00
Jonas 'Sortie' Termansen
248612d3e0 Fix references to removed multiboot module --tar and --tix options. 2024-10-10 13:16:58 +02:00
Jonas 'Sortie' Termansen
cb42021e4c Add service(8). 2024-10-10 12:31:13 +02:00
Jonas 'Sortie' Termansen
15f496a57d Run daemons in their own session. 2024-09-07 21:32:02 +02:00
Jonas 'Sortie' Termansen
a3c905dc2b Add init groups.
Every process now has an init process like it has a session, and each
session belong to an init. Orphaned processes are reparented to its init
process. All descendent processes are SIGKILL'd when an init process exits
and creating additional processes/threads fails.

Add setinit(2) for becoming the init process for your child processes and
add getinit(2) for locating your init process.

Add TIOCSCTTY force flag that releases a terminal from its current session
and makes it the controlling terminal for the current session. This ioctl
is essential to transferring the controlling terminal to a nested init,
which has its own session.

Add TIOCUCTTY that releases the terminal as the controlling terminal for
its current session.

Remove INIT_PID as it is replaced by getinit(2).
2024-09-07 21:13:41 +02:00
Jonas 'Sortie' Termansen
c7b827d336 Add init(5) type feature. 2024-09-07 20:53:51 +02:00
Jonas 'Sortie' Termansen
a0d8aff7e2 Update to gcc-14.2.0 and binutils-2.43.1. 2024-09-07 11:25:24 +02:00
Jonas 'Sortie' Termansen
9a573e0b05 Update to grub-2.12.
Enable EFI support and split each grub core platform into its own port.
2024-09-07 11:23:14 +02:00
Jonas 'Sortie' Termansen
ad61419d02 Add kernel(7) --firmware option. 2024-09-07 11:16:34 +02:00
Jonas 'Sortie' Termansen
ee0e6506a9 Add port(5) UPGRADE_BLOCKED for ports that cannot be upgraded at the moment.
Fix detecting new releases on github by using the json API.

Fix detecting versions older than the current version.

Use wget --spider to speed up the download check.
2024-09-05 21:36:29 +02:00
Jonas 'Sortie' Termansen
522560050d Support combining CONFIGURE_USE_BUILD_DIRECTORY and SUBDIR. 2024-08-30 22:03:16 +02:00
Jonas 'Sortie' Termansen
8938db3f91 Simplify sysmerge --booting as a real daemon. 2024-08-07 17:18:42 +02:00
Jonas 'Sortie' Termansen
1ac7bd8753 Add init(5) echo feature. 2024-08-07 17:18:42 +02:00
Jonas 'Sortie' Termansen
5b586bb65f Add source code and additional files to releases. 2024-07-19 19:27:35 +02:00
Jonas 'Sortie' Termansen
e170ecaed7 Delay implementing getresgid, getresuid, setresgid, setresuid. 2024-06-25 15:27:14 +02:00
Jonas 'Sortie' Termansen
7c76ebdc4d Reject posix_getdents(2) for now. 2024-06-25 15:27:14 +02:00
Jonas 'Sortie' Termansen
d86fbea34a Reject posix_devctl(2). 2024-06-25 15:27:14 +02:00
Jonas 'Sortie' Termansen
52e8105402 Reject posix_close(3). 2024-06-25 15:27:13 +02:00
Jonas 'Sortie' Termansen
2955e11211 Upgrading releases from source has been supported for a while. 2024-03-25 23:12:50 +01:00
Jonas 'Sortie' Termansen
2465f9b5dc Package the system as a tix binary package. 2023-12-24 12:58:53 +01:00
Jonas 'Sortie' Termansen
95cf3fba98 Save kernel options upon installation. 2023-12-19 00:05:42 +01:00
Jonas 'Sortie' Termansen
4aadc182a6 Fix broken manual references. 2023-12-19 00:05:42 +01:00
Jonas 'Sortie' Termansen
938f2390dd Support system upgrades and configuration in GRUB.
Move /etc/default/grub to /etc/grub as it's owned by the sysadmin.

Move /etc/grub.d to /etc/default/grub.d as it's owned by the system.

Support /etc/grub's GRUB_CMDLINE_SORTIX in 10_sortix.

Remove the old /etc/grub.d/10_sortix.cache with a compatibility hook as it
has moved to /etc/default/grub.d/10_sortix.cache.
2023-09-03 14:47:08 +02:00
Jonas 'Sortie' Termansen
4533a2ade2 Remove mkinitrd(8). 2023-08-26 14:15:12 +02:00
Jonas 'Sortie' Termansen
d189183900 Third generation Tix.
The .tix.tar.xz binary package format now stores the contents in the root
rather than the data/ subdirectory and the tix metadata now has the same
layout as the loose files in /tix, such that a .tix.tar.xz package can
simply be directly extracted into the filesystem. The /tix/manifest/ is now
included in the binary package rather than being generated on installation.

The /tix/collection.conf and /tix/tixinfo metadata files are now in the
tix-vars(1) format in the style of port(5).

The /tix/installed.list file has been removed since it isn't loose file
compatible and one can list the /tix/tixinfo directory instead.

The /tix/repository.list file has been removed since the feature is unused
and doesn't match the future direction of tix.

The kernel support for tix binary packages has been removed since it will
simply install by extracting the tar archive into the root filesystem.

Add the post-install sha256sum to the port version stamp.
2023-07-15 16:43:27 +02:00
Jonas 'Sortie' Termansen
b819428bd2 Remove outdated statement that ports can't be built natively. 2023-07-12 23:10:39 +02:00
Jonas 'Sortie' Termansen
e933eb5a1c Replace mkinitrd(1) with tar(1).
The custom initrd format was originally useful when it was mounted,
however it has been extracted into the ramfs for a very long time and
has no advantages over the standard tar format which can be readily
created and modified using standard tools. The kernel initrd(7) support
already supports tar, so this change simply switches the format.
2023-07-12 21:45:11 +02:00
Jonas 'Sortie' Termansen
917722cf70 Add display server.
This change adds the display(1) graphical user interface and desktop
environment with basic windowing support and the graphical terminal(1)
emulator along with integrations in chkblayout(1), chvideomode(1),
sysinstall(8), sysupgrade(8), as well as the games and ports.

Adopt the Aurora procedural wallpaper in display(1) and login(8).

Remove the obsolete dispd.

Juhani contributed keyboard and video mode APIs to the display protocol
and other miscellaneous changes.

dzwdz contributed the initial functioning window buttons, improved title
bar, window tiling, and minor bug fixes

Co-authored-by: Juhani Krekelä <juhani@krekelä.fi>
Co-authored-by: dzwdz <kg67199@gmail.com>
2023-06-24 00:43:36 +02:00
Jonas 'Sortie' Termansen
9d4eec4267 Add reinit support to init(8). 2023-06-08 22:50:03 +02:00
Jonas 'Sortie' Termansen
1e17e7fab7 Add automatic installer and upgrader. 2023-05-15 23:25:19 +02:00
Jonas 'Sortie' Termansen
e9e57dc9af Add ntpd port. 2023-03-27 00:06:33 +02:00
Jonas 'Sortie' Termansen
9033153c47 Add sub_leap_seconds(3) and add_leap_seconds(3).
Advertise leap seconds being counted via CLOCK_REALTIME_HAS_LEAP_SECONDS.
2023-03-27 00:06:33 +02:00
Jonas 'Sortie' Termansen
97c57ca604 Add strptime(3). 2023-03-22 00:16:15 +01:00
Jonas 'Sortie' Termansen
c57ff050e9 Add include and comment support to passwd(5) and group(5). 2023-03-19 21:53:21 +01:00
Jonas 'Sortie' Termansen
da86ca1873 Fix typo in ssh instructions in installation(7). 2023-03-19 11:08:01 +01:00
Jonas 'Sortie' Termansen
8a4548db7d Add memory statistics to struct psctl_stat.
This is an incompatible ABI change.
2023-03-09 20:27:18 +01:00
Jonas 'Sortie' Termansen
2cd7361294 Add memusage(2).
Switch xz to memusage(2) and fix native self-cross issue.

This is a compatible ABI change.
2023-03-09 20:27:17 +01:00