feat: release notes for 0.1.9; NetSurf license notices; bump version to 0.2.0

Cut two 0.1.9 x86_64 images: montauk-0.1.9-x86_64.iso (29 MB) and
montauk-0.1.9-sdk-x86_64.iso (194 MB). Both include the NetSurf port and
exclude the WIP git port; only the SDK image carries 0:/sdk.

GNUmakefile: add RELEASE_WITHOUT_SDK=1 to the release target, mirroring
RELEASE_WITH_PORTS. Needed because devkit is .PHONY and repopulates
programs/bin/sdk on every build, so the SDK cannot be held out by hand.
sdk/tcc and sdk/lua stay (installed by their own targets), as does 0:/tmp,
which the libc uses for tmpnam() and not just compiler intermediates.

Also strip .release-tmp/boot/kernel. The ramdisk carries its own copy of
the kernel -- the image the Installer lays down on the target disk -- and
it is not named *.elf, so the existing find missed it. It was shipping
unstripped at 6.2 MB against 0.7 MB.

Licensing: NetSurf (GPLv2, MIT artwork), the ten NetSurf project libraries
(MIT), utf8proc (MIT) and zlib now ship in both images and had no
attribution anywhere. Add notices for each, and broaden the stb_image
section to cover stb_truetype, which the GUI apps have always linked. The
component lists in license.txt and license.html were stale to match;
license.txt is the source for 0:/os/licenses/LICENSE.txt, so it ships.

downloads.html: 0.1.9 card with separate download links for the plain and
SDK images; 0.1.8 moves to the archive.

Co-Authored-By: Claude Opus 5 <[email protected]>
This commit is contained in:
2026-08-13 10:54:42 +02:00
co-authored by Claude Opus 5
parent a28b8ad0b2
commit 86e3ebfe33
7 changed files with 349 additions and 14 deletions
+14
View File
@@ -270,8 +270,22 @@ ifneq ($(RELEASE_WITH_PORTS),1)
done done
else else
@echo "release: RELEASE_WITH_PORTS=1 - including out-of-tree port bundles" @echo "release: RELEASE_WITH_PORTS=1 - including out-of-tree port bundles"
endif
# The Montauk SDK (native GCC + binutils and their target sysroot under
# 0:/sdk) dominates the image size. Pass RELEASE_WITHOUT_SDK=1 to cut a slim
# ISO without it. Only the devkit-owned subtrees go: sdk/tcc and sdk/lua are
# installed by their own targets and stay, as does 0:/tmp, which the libc
# uses for tmpnam() and not just for compiler intermediates.
ifeq ($(RELEASE_WITHOUT_SDK),1)
@echo "release: RELEASE_WITHOUT_SDK=1 - excluding the Montauk SDK (0:/sdk dev tools)"
rm -rf .release-tmp/sdk/bin .release-tmp/sdk/lib .release-tmp/sdk/include \
.release-tmp/sdk/libexec .release-tmp/sdk/x86_64-montauk
endif endif
find .release-tmp -name '*.elf' -exec strip {} + find .release-tmp -name '*.elf' -exec strip {} +
# The ramdisk carries its own copy of the kernel at 0:/boot/kernel -- that is
# the image the Installer lays down on the target disk -- and it is not named
# *.elf, so the find above misses it. Unstripped it is ~6 MB against ~0.7 MB.
strip .release-tmp/boot/kernel
./scripts/mkramdisk.sh .release-tmp iso_root/boot/ramdisk.tar ./scripts/mkramdisk.sh .release-tmp iso_root/boot/ramdisk.tar
rm -rf .release-tmp rm -rf .release-tmp
mkdir -p iso_root/boot/limine mkdir -p iso_root/boot/limine
+67
View File
@@ -1,3 +1,70 @@
MontaukOS 0.1.9 (August 13, 2026)
(a28b8ad0b2932203b812e967f35f029f060fd6b5)
New
====
* Intel Wi-Fi (AX210/AX211) support
* Wi-Fi support in the desktop panel and the Network settings app
* wifi command-line tool
* NetSurf web browser ported as a native MontaukOS app
* SSH server (sshd) with an SSH Server app for managing it
* NTP client (configured via 0:/config/ntp.toml and Time applet)
* init now discovers services from 0:/config/init.toml rather than a hardcoded sequence
* New Display app for managing monitors, modes, and layout
* Expanded Intel GPU display management in the kernel
* Audio stack now mixes concurrent streams and switches output devices live
* New audio device switching UI in Audio app and the desktop panel
* Filesystems can be mounted and unmounted at runtime
* File metadata across all filesystems, exposed through a new stat syscall
* ext2 now saves timestamps and supports utime
* New mkdir, rmdir, and memtest commands
* Expanded support in the PDF Viewer app
* Files shows modified dates in the Properties dialog
* Desktop UI consistency improvements
* Crash reports now capture a stack snapshot
* Userspace heap and virtual memory overhauled
* pread, pwrite, strndup, scandir, alphasort, usleep, ftruncate, M_PI, and a non-blocking stdin readiness probe added to libc
* DOOM moved out of the OS tree into the mtkports project
Fixed
=====
* Numerous kernel concurrency, interrupt-context, and user virtual-address fixes
* Hardened the TCP/IP stack and unified the HTTP clients; fixed several networking bugs and regressions
* Improved Bluetooth reliability
* Corrected Intel GGTT setup and DP AUX EDID reads
* IPC handle slots are no longer reused while an object is still being torn down
* The ramdisk no longer packs symlinks as zero-byte files
* Fixed a ramdisk readdir inconsistency
* Processes now inherit their parent's environment
* getcwd reports a truncated buffer as ERANGE instead of silently truncating
* Improved stdio and argument handling
* Clarified Intel iwlwifi firmware licensing
Included in ISO
================
Two x86_64 images are published for this release.
montauk-0.1.9-sdk-x86_64.iso additionally carries the
Montauk SDK (gcc, binutils, etc.)
* MontaukOS SMP kernel
* Userspace bootstrap (0:/os/init.elf) and other essential system utilities
* MontaukOS desktop environment and graphical apps
* NetSurf web browser (0:/apps/netsurf)
* Manual pages (0:/man), readable via man command
* Service and system configuration (0:/config: init.toml, ssh.toml, ntp.toml, timezonedata.toml)
* System CA certificates (0:/os/certs/ca-certificates.crt)
* Intel Bluetooth controller and Wi-Fi (iwlwifi) firmware (0:/os/firmware/intel)
* Third-party license texts and notices (0:/os/licenses)
* Tiny C Compiler (tcc) with MontaukOS headers and libraries (0:/sdk/tcc)
* Lua 5.4 interpreter (lua) with headers and static library (0:/sdk/lua)
* Montauk SDK - native GCC/G++ and binutils (0:/sdk) - SDK image only
* Flat Remix icon pack
* JetBrains Mono, Noto Serif, Roboto, and C059 Roman (open Century Schoolbook) TrueType fonts
* DOOM engine with SDL_mixer audio support (game data not included)
* Experimental HTTP server (httpd) and default page (0:/www/index.html)
* Default wallpaper - blossoms by Nikhil Kumar, Unsplash (0:/os/wallpapers)
MontaukOS 0.1.8 (July 18, 2026) MontaukOS 0.1.8 (July 18, 2026)
(71c66f803516558012be13ee38cb02a9a0ba476a) (71c66f803516558012be13ee38cb02a9a0ba476a)
+1 -1
View File
@@ -17,7 +17,7 @@ namespace montauk::abi {
// Copy strings into fixed-size arrays (user-accessible) // Copy strings into fixed-size arrays (user-accessible)
const char* name = "MontaukOS"; const char* name = "MontaukOS";
const char* ver = "0.1.9"; const char* ver = "0.2.0";
for (int i = 0; name[i]; i++) outInfo->osName[i] = name[i]; for (int i = 0; name[i]; i++) outInfo->osName[i] = name[i];
outInfo->osName[9] = '\0'; outInfo->osName[9] = '\0';
for (int i = 0; ver[i]; i++) outInfo->osVersion[i] = ver[i]; for (int i = 0; ver[i]; i++) outInfo->osVersion[i] = ver[i];
+159 -2
View File
@@ -82,13 +82,17 @@ License: MIT License
================================================================================ ================================================================================
3. stb_image (JPEG image decoding) 3. stb_image and stb_truetype (image decoding and font rasterisation)
================================================================================ ================================================================================
Used as the single-header image decoder behind MontaukOS image/JPEG support Used as the single-header image decoder behind MontaukOS image/JPEG support
(programs/include/gui/stb_image.h). This is the "libjpeg" component referenced in (programs/include/gui/stb_image.h). This is the "libjpeg" component referenced in
the build; it is in fact stb_image by Sean Barrett. the build; it is in fact stb_image by Sean Barrett.
stb_image is dual-licensed (MIT OR public domain). MontaukOS relies on the MIT stb_truetype, by the same author, is the TrueType rasteriser linked into the
graphical applications and into the NetSurf browser port, where it renders the
system fonts.
Both are dual-licensed (MIT OR public domain). MontaukOS relies on the MIT
option, reproduced here: option, reproduced here:
License: MIT License License: MIT License
@@ -498,6 +502,159 @@ notices and license terms; those notices remain applicable.
including MontaukOS's GCC and Binutils port patches, is available in the including MontaukOS's GCC and Binutils port patches, is available in the
MontaukOS source tree. MontaukOS source tree.
================================================================================
19. NetSurf (web browser)
================================================================================
Shipped as the bundled "netsurf" application (0:/apps/netsurf/netsurf.elf), built
from NetSurf 3.11 (git 39da3c3a4). The MontaukOS build reuses NetSurf's monkey
frontend glue with a native MontaukOS window frontend, replaces the libcurl and
OpenSSL fetchers with a BearSSL-backed one, and builds without JavaScript. The
port's patches, compatibility shims, and frontend sources are in the mtkports
tree under www-client/netsurf/.
The resource tree installed at 0:/apps/netsurf/res/ (Messages, default.css,
quirks.css, and the bundled artwork) is part of NetSurf and is covered by this
notice.
Copyright (C) the NetSurf Browser Project and its respective contributors.
Upstream: https://www.netsurf-browser.org/
https://github.com/netsurf-browser/netsurf
License: GNU General Public License, version 2 (GPLv2), for the source code,
documentation, translatable message files, and UI definitions; MIT License for
the visual artwork.
NetSurf is free software; you can redistribute it and/or modify it under the
terms of the GNU General Public License as published by the Free Software
Foundation; version 2 of the License.
This program is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE. See the GNU General Public License for more details.
Upstream NetSurf grants a special exception permitting the code to be linked
against the OpenSSL project's "OpenSSL" library. The MontaukOS port does not
link OpenSSL -- HTTPS is provided by BearSSL (section 2) -- so that exception
is not relied upon here.
IMPORTANT: The NetSurf application (netsurf.elf) is licensed under GPLv2,
separately from MontaukOS itself. The MontaukOS Software License does NOT apply
to netsurf.elf or to the NetSurf source. The full GPLv2 license text is
included on the MontaukOS ISO at 0:/os/licenses/GPL-2.0.txt.
WRITTEN OFFER FOR SOURCE: The complete corresponding source code for the
NetSurf application, including the MontaukOS port's patches and frontend
sources, under the terms of GPLv2, is available on request and is provided
alongside MontaukOS distributions. Contact: [email protected].
================================================================================
20. NetSurf project libraries
================================================================================
Linked into the NetSurf application: libcss (CSS parsing and selection), libdom
(DOM), libhubbub (HTML5 parsing), libparserutils (parser building blocks),
libwapcaplet (interned strings), libnsutils (time and base64 helpers), libnslog
(filtered logging), libnspsl (public suffix list), libnsgif (GIF decoding), and
libnsbmp (BMP/ICO decoding).
Copyright (C) 2007-2008 J-M Bell (libparserutils, libhubbub, libcss, libdom)
Copyright (C) 2009 The NetSurf Browser Project (libwapcaplet)
Copyright (C) 2014, 2016 Vincent Sanders (libnsutils, libnslog, libnspsl)
Copyright (C) 2004, 2006 Richard Wilson (libnsgif, libnsbmp)
Copyright (C) 2008 Sean Fox (libnsgif, libnsbmp)
Copyright (C) 2013-2021 Michael Drake (libnsgif)
Copyright (C) the respective NetSurf Browser Project contributors.
Upstream: https://www.netsurf-browser.org/projects/
License: MIT License
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
================================================================================
21. utf8proc
================================================================================
Linked into the NetSurf application for Unicode normalisation and case folding,
via the NetSurf project's libutf8proc fork.
Copyright (C) 2014-2019 Steven G. Johnson, Jiahao Chen, Tony Kelman, Jonas
Fonseca, and other contributors listed in the git history.
Copyright (C) 2006-2013 Jan Behrens and the Public Software Group e. V.,
Berlin, Germany (original utf8proc).
Upstream: https://juliastrings.github.io/utf8proc/
License: MIT License
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
This library also incorporates Unicode Character Database data, which is
distributed under the Unicode, Inc. license agreement for data files and
software; that notice is reproduced in the upstream LICENSE.md.
================================================================================
22. zlib (compression)
================================================================================
Linked into the NetSurf application for HTTP content decoding and PNG/gzip
stream decompression.
Copyright (C) 1995-2022 Jean-loup Gailly and Mark Adler
Upstream: https://zlib.net/
License: zlib License
This software is provided 'as-is', without any express or implied warranty.
In no event will the authors be held liable for any damages arising from the
use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
Jean-loup Gailly Mark Adler
[email protected] [email protected]
================================================================================ ================================================================================
For licensing inquiries regarding MontaukOS itself, contact: [email protected] For licensing inquiries regarding MontaukOS itself, contact: [email protected]
================================================================================ ================================================================================
+84 -1
View File
@@ -119,6 +119,7 @@
<hr> <hr>
<ul> <ul>
<li><a href="#latest">Latest Release</a></li> <li><a href="#latest">Latest Release</a></li>
<li><a href="#v019">v0.1.9</a></li>
<li><a href="#v018">v0.1.8</a></li> <li><a href="#v018">v0.1.8</a></li>
<li><a href="#v017">v0.1.7</a></li> <li><a href="#v017">v0.1.7</a></li>
<li><a href="#v016">v0.1.6</a></li> <li><a href="#v016">v0.1.6</a></li>
@@ -139,6 +140,89 @@
<hr> <hr>
<h2 id="latest">Latest Release</h2> <h2 id="latest">Latest Release</h2>
<div class="box release-card" id="v019">
<h3>MontaukOS 0.1.9</h3>
<p class="release-meta">August 13, 2026</p>
<p>It is recommended that users run MontaukOS in a virtual machine rather than on real hardware.</p>
<h4>Links</h4>
<ul>
<li><a href="downloads/montauk-0.1.9-x86_64.iso">Download ISO</a> (29 MB) - recommended</li>
<li><a href="downloads/montauk-0.1.9-sdk-x86_64.iso">Download ISO with Montauk SDK</a> (194 MB) - includes gcc/g++/binutils toolchain</li>
<li><a href="license.html">License</a></li>
<li><a href="docs/usersmanual/index.html">Tutorials</a></li>
<li><a href="docs/man/index.html">Manual pages</a></li>
</ul>
<blockquote>
For questions or comments, please mail to [email protected].
</blockquote>
<h4>New</h4>
<ul>
<li>Intel Wi-Fi (AX210/AX211) support</li>
<li>Wi-Fi support in the desktop panel and the Network settings app</li>
<li><code>wifi</code> command-line tool</li>
<li>NetSurf web browser ported as a native MontaukOS app</li>
<li>SSH server (<code>sshd</code>) with an SSH Server app for managing it</li>
<li>NTP client (configured via <code>0:/config/ntp.toml</code> and Time applet)</li>
<li><code>init</code> now discovers services from <code>0:/config/init.toml</code> rather than a hardcoded sequence</li>
<li>New Display app for managing monitors, modes, and layout</li>
<li>Expanded Intel GPU display management in the kernel</li>
<li>Audio stack now mixes concurrent streams and switches output devices live</li>
<li>New audio device switching UI in Audio app and the desktop panel</li>
<li>Filesystems can be mounted and unmounted at runtime</li>
<li>File metadata across all filesystems, exposed through a new <code>stat</code> syscall</li>
<li>ext2 now saves timestamps and supports <code>utime</code></li>
<li>New <code>mkdir</code>, <code>rmdir</code>, and <code>memtest</code> commands</li>
<li>Expanded support in the PDF Viewer app</li>
<li>Files shows modified dates in the Properties dialog</li>
<li>Desktop UI consistency improvements</li>
<li>Crash reports now capture a stack snapshot</li>
<li>Userspace heap and virtual memory overhauled</li>
<li><code>pread</code>, <code>pwrite</code>, <code>strndup</code>, <code>scandir</code>, <code>alphasort</code>, <code>usleep</code>, <code>ftruncate</code>, <code>M_PI</code>, and a non-blocking stdin readiness probe added to libc</li>
<li>DOOM moved out of the OS tree into the mtkports project</li>
</ul>
<h4>Fixed</h4>
<ul>
<li>Numerous kernel concurrency, interrupt-context, and user virtual-address fixes</li>
<li>Hardened the TCP/IP stack and unified the HTTP clients; fixed several networking bugs and regressions</li>
<li>Improved Bluetooth reliability</li>
<li>Corrected Intel GGTT setup and DP AUX EDID reads</li>
<li>IPC handle slots are no longer reused while an object is still being torn down</li>
<li>The ramdisk no longer packs symlinks as zero-byte files</li>
<li>Fixed a ramdisk readdir inconsistency</li>
<li>Processes now inherit their parent's environment</li>
<li><code>getcwd</code> reports a truncated buffer as <code>ERANGE</code> instead of silently truncating</li>
<li>Improved stdio and argument handling</li>
<li>Clarified Intel iwlwifi firmware licensing</li>
</ul>
<h4>Known issues</h4>
<ul>
<li>Intel GPU may struggle to wake up from S3 sleep, causing a black screen requiring a reset. S3 sleep is highly experimental and users are discouraged from relying on it.</li>
<li>Due to licensing restrictions, the proprietary DOOM WAD cannot be shipped; the DOOM engine warns at launch when no compatible WAD file is present, and game content is unavailable until the user supplies one.</li>
</ul>
<h4>Included in ISO</h4>
<p>Two x86_64 images are published for this release. <code>montauk-0.1.9-sdk-x86_64.iso</code> additionally carries the Montauk SDK (gcc, binutils, etc.)</p>
<ul>
<li>MontaukOS SMP kernel</li>
<li>Userspace bootstrap (<code>0:/os/init.elf</code>) and other essential system utilities</li>
<li>MontaukOS desktop environment and graphical apps</li>
<li>NetSurf web browser (<code>0:/apps/netsurf</code>)</li>
<li>Manual pages (<code>0:/man</code>), readable via <code>man</code> command</li>
<li>Service and system configuration (<code>0:/config</code>: init.toml, ssh.toml, ntp.toml, timezonedata.toml)</li>
<li>System CA certificates (<code>0:/os/certs/ca-certificates.crt</code>)</li>
<li>Intel Bluetooth controller and Wi-Fi (iwlwifi) firmware (<code>0:/os/firmware/intel</code>)</li>
<li>Third-party license texts and notices (<code>0:/os/licenses</code>)</li>
<li>Tiny C Compiler (<code>tcc</code>) with MontaukOS headers and libraries (<code>0:/sdk/tcc</code>)</li>
<li>Lua 5.4 interpreter (<code>lua</code>) with headers and static library (<code>0:/sdk/lua</code>)</li>
<li>Montauk SDK - native GCC/G++ and binutils (<code>0:/sdk</code>) - SDK image only</li>
<li>Flat Remix icon pack</li>
<li>JetBrains Mono, Noto Serif, Roboto, and C059 Roman (open Century Schoolbook) TrueType fonts</li>
<li>DOOM engine with SDL_mixer audio support (game data not included)</li>
<li>Experimental HTTP server (<code>httpd</code>) and default page (<code>0:/www/index.html</code>)</li>
<li>Default wallpaper - blossoms by Nikhil Kumar, Unsplash (<code>0:/os/wallpapers</code>)</li>
</ul>
</div>
<h2>Release Archive</h2>
<div class="box release-card" id="v018"> <div class="box release-card" id="v018">
<h3>MontaukOS 0.1.8</h3> <h3>MontaukOS 0.1.8</h3>
<p class="release-meta">July 18, 2026</p> <p class="release-meta">July 18, 2026</p>
@@ -197,7 +281,6 @@
</ul> </ul>
</div> </div>
<h2>Release Archive</h2>
<div class="box release-card" id="v017"> <div class="box release-card" id="v017">
<h3>MontaukOS 0.1.7</h3> <h3>MontaukOS 0.1.7</h3>
<p class="release-meta">July 9, 2026</p> <p class="release-meta">July 9, 2026</p>
+12 -5
View File
@@ -155,14 +155,21 @@ termination.</p>
<p>The Software incorporates or is distributed alongside third-party components <p>The Software incorporates or is distributed alongside third-party components
that remain the property of their respective owners and are licensed under that remain the property of their respective owners and are licensed under
their own terms, including the Limine bootloader, BearSSL, stb_image, the DOOM their own terms, including the Limine bootloader, Flanterm, BearSSL, stb_image
engine (via doomgeneric), the Tiny C Compiler, Lua, the GNU Compiler Collection and stb_truetype, the DOOM engine (via doomgeneric), the NetSurf web browser and
(GCC), GNU Binutils, the Flat Remix icon theme, the bundled fonts, the Mozilla the NetSurf project libraries (libcss, libdom, libhubbub, libparserutils,
CA certificate bundle, and Intel Bluetooth firmware. GCC and GNU Binutils are libwapcaplet, libnsutils, libnslog, libnspsl, libnsgif, libnsbmp), utf8proc,
zlib, the Tiny C Compiler, Lua, the GNU Compiler Collection (GCC), GNU Binutils,
the Flat Remix icon theme, the bundled fonts, the Mozilla CA certificate bundle,
Intel Bluetooth and Wi-Fi (iwlwifi) firmware, and the default wallpaper
photograph. GCC and GNU Binutils are
included as the native MontaukOS SDK toolchain (GCC 14.2.0 and Binutils 2.43.1) included as the native MontaukOS SDK toolchain (GCC 14.2.0 and Binutils 2.43.1)
under the GNU GPLv3, with the GCC Runtime Library Exception where applicable. under the GNU GPLv3, with the GCC Runtime Library Exception where applicable.
Copyright (C) 1987-2024 Free Software Foundation, Inc.; additional copyrights Copyright (C) 1987-2024 Free Software Foundation, Inc.; additional copyrights
belong to the respective GCC, GNU Binutils, and other contributors. belong to the respective GCC, GNU Binutils, and other contributors. The NetSurf
application is included under the GNU GPLv2; its visual artwork is under the MIT
License. Copyright (C) the NetSurf Browser Project and its respective
contributors.
Nothing in this license modifies, supersedes, or limits the license terms Nothing in this license modifies, supersedes, or limits the license terms
applicable to those components; to the extent of any conflict, the third-party applicable to those components; to the extent of any conflict, the third-party
license controls for that component. The applicable copyright notices and license controls for that component. The applicable copyright notices and
+12 -5
View File
@@ -71,14 +71,21 @@ obtained by others are unaffected. Sections 3, 5, 6, and 7 survive termination.
------------------------- -------------------------
The Software incorporates or is distributed alongside third-party components The Software incorporates or is distributed alongside third-party components
that remain the property of their respective owners and are licensed under that remain the property of their respective owners and are licensed under
their own terms, including the Limine bootloader, BearSSL, stb_image, the DOOM their own terms, including the Limine bootloader, Flanterm, BearSSL, stb_image
engine (via doomgeneric), the Tiny C Compiler, Lua, the GNU Compiler Collection and stb_truetype, the DOOM engine (via doomgeneric), the NetSurf web browser and
(GCC), GNU Binutils, the Flat Remix icon theme, the bundled fonts, the Mozilla the NetSurf project libraries (libcss, libdom, libhubbub, libparserutils,
CA certificate bundle, and Intel Bluetooth firmware. GCC and GNU Binutils are libwapcaplet, libnsutils, libnslog, libnspsl, libnsgif, libnsbmp), utf8proc,
zlib, the Tiny C Compiler, Lua, the GNU Compiler Collection (GCC), GNU Binutils,
the Flat Remix icon theme, the bundled fonts, the Mozilla CA certificate bundle,
Intel Bluetooth and Wi-Fi (iwlwifi) firmware, and the default wallpaper
photograph. GCC and GNU Binutils are
included as the native MontaukOS SDK toolchain (GCC 14.2.0 and Binutils 2.43.1) included as the native MontaukOS SDK toolchain (GCC 14.2.0 and Binutils 2.43.1)
under the GNU GPLv3, with the GCC Runtime Library Exception where applicable. under the GNU GPLv3, with the GCC Runtime Library Exception where applicable.
Copyright (C) 1987-2024 Free Software Foundation, Inc.; additional copyrights Copyright (C) 1987-2024 Free Software Foundation, Inc.; additional copyrights
belong to the respective GCC, GNU Binutils, and other contributors. belong to the respective GCC, GNU Binutils, and other contributors. The NetSurf
application is included under the GNU GPLv2; its visual artwork is under the MIT
License. Copyright (C) the NetSurf Browser Project and its respective
contributors.
Nothing in this license modifies, supersedes, or limits the license terms Nothing in this license modifies, supersedes, or limits the license terms
applicable to those components; to the extent of any conflict, the third-party applicable to those components; to the extent of any conflict, the third-party
license controls for that component. The applicable copyright notices and license controls for that component. The applicable copyright notices and