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]>
218 lines
8.4 KiB
HTML
218 lines
8.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="description" content="MontaukOS Software License">
|
|
<title>License - MontaukOS</title>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap" rel="stylesheet">
|
|
<style>
|
|
body {
|
|
font-family: 'Open Sans', Arial, sans-serif;
|
|
max-width: 960px;
|
|
margin: 0 auto;
|
|
padding: 1em;
|
|
line-height: 1.5;
|
|
display: flex;
|
|
gap: 2em;
|
|
}
|
|
p { margin: 0 0 0.5em; }
|
|
h2 { margin: 0.75em 0 0.25em; }
|
|
.sidebar {
|
|
width: 160px;
|
|
flex-shrink: 0;
|
|
}
|
|
.sidebar ul {
|
|
list-style: none;
|
|
padding: 0;
|
|
}
|
|
.sidebar li {
|
|
margin: 0.5em 0;
|
|
}
|
|
.sidebar a {
|
|
color: #0066CC;
|
|
text-decoration: none;
|
|
font-weight: 600;
|
|
}
|
|
.sidebar a:hover {
|
|
color: #004499;
|
|
text-decoration: underline;
|
|
}
|
|
.main {
|
|
flex: 1;
|
|
min-width: 0;
|
|
}
|
|
.lettered-list {
|
|
list-style: none;
|
|
padding-left: 2em;
|
|
}
|
|
a { color: #0000EE; }
|
|
a:visited { color: #0066CC; }
|
|
hr { border-style: solid; border-width: 1px 0 0 0; border-color: #999; }
|
|
.center { text-align: center; }
|
|
@media (max-width: 700px) {
|
|
body {
|
|
flex-direction: column;
|
|
gap: 1em;
|
|
padding: 1em 0.75em;
|
|
}
|
|
.sidebar {
|
|
width: auto;
|
|
}
|
|
.sidebar ul {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 0 1em;
|
|
}
|
|
.sidebar hr {
|
|
width: 100%;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<div class="sidebar">
|
|
<ul>
|
|
<li><a href="index.html">Home</a></li>
|
|
<li><a href="downloads.html">Downloads</a></li>
|
|
<li><a href="docs/index.html">Documentation</a></li>
|
|
<li><a href="https://git.montaukos.org/daniel/MontaukOS/issues">Issue tracker</a></li>
|
|
<li><a href="https://git.montaukos.org/daniel/MontaukOS">Git</a></li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="main">
|
|
<div class="center">
|
|
<h1>MontaukOS Software License</h1>
|
|
</div>
|
|
|
|
<hr>
|
|
|
|
<p>Copyright (c) 2025-2026 Montauk Operating System Project (the "MontaukOS Project").</p>
|
|
|
|
<p>This document governs the use of MontaukOS, including its kernel, userspace
|
|
programs, libraries, bootable images, documentation, artwork, and all
|
|
accompanying materials (collectively, the "Software"), except for the
|
|
third-party components described in Section 5. MontaukOS is open-source
|
|
software: its source code is published for anyone to read, build, and modify,
|
|
subject to the terms below.</p>
|
|
|
|
<p>A plain-text version of this license is available at
|
|
<a href="license.txt">license.txt</a>.</p>
|
|
|
|
<h2>1. Grant of Rights</h2>
|
|
|
|
<p>Subject to the conditions in Section 2, the MontaukOS Project grants you a
|
|
worldwide, royalty-free, non-exclusive license to:</p>
|
|
|
|
<ul class="lettered-list">
|
|
<li>(a) use and run the Software on any device, for any purpose;</li>
|
|
<li>(b) view, study, and build the Software from source;</li>
|
|
<li>(c) copy and redistribute the Software, in source or binary form;</li>
|
|
<li>(d) modify the Software and create derivative works of it; and</li>
|
|
<li>(e) copy and redistribute your modified versions, in source or binary form.</li>
|
|
</ul>
|
|
|
|
<h2>2. Conditions</h2>
|
|
|
|
<p>The rights in Section 1 are conditioned on the following:</p>
|
|
|
|
<ul class="lettered-list">
|
|
<li>(a) <strong>Attribution.</strong> Redistributions, modified or not, must retain the above
|
|
copyright notice, this license text, and the THIRD-PARTY-NOTICES file. You may
|
|
not remove or obscure copyright or license notices in the Software.</li>
|
|
<li>(b) <strong>No misrepresentation.</strong> You must not misrepresent the origin of the
|
|
Software. Modified versions must be clearly marked as modified and must not be
|
|
presented as official MontaukOS releases.</li>
|
|
<li>(c) <strong>Noncommercial distribution.</strong> You may not sell the Software or modified
|
|
versions of it, charge a fee for access to them, or distribute them as part of
|
|
a commercial product or paid service, without prior written permission from
|
|
the MontaukOS Project. Using the Software internally (including in a
|
|
commercial setting) and distributing it free of charge are permitted.</li>
|
|
<li>(d) <strong>Names and marks.</strong> This license does not grant rights to use the
|
|
"MontaukOS" name or logos, except as needed for the factual attribution
|
|
required above.</li>
|
|
</ul>
|
|
|
|
<h2>3. Contributions and Feedback</h2>
|
|
|
|
<p>If you submit code, suggestions, or other feedback to the MontaukOS Project,
|
|
you grant the MontaukOS Project a perpetual, irrevocable, worldwide,
|
|
royalty-free license to use, modify, and incorporate it for any purpose.</p>
|
|
|
|
<h2>4. Termination</h2>
|
|
|
|
<p>This license terminates automatically if you materially breach its terms and
|
|
fail to cure the breach within 30 days of becoming aware of it. Upon
|
|
termination you must stop distributing the Software; copies already lawfully
|
|
obtained by others are unaffected. Sections 3, 5, 6, and 7 survive
|
|
termination.</p>
|
|
|
|
<h2>5. Third-Party Components</h2>
|
|
|
|
<p>The Software incorporates or is distributed alongside third-party components
|
|
that remain the property of their respective owners and are licensed under
|
|
their own terms, including the Limine bootloader, Flanterm, BearSSL, stb_image
|
|
and stb_truetype, the DOOM engine (via doomgeneric), the NetSurf web browser and
|
|
the NetSurf project libraries (libcss, libdom, libhubbub, libparserutils,
|
|
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)
|
|
under the GNU GPLv3, with the GCC Runtime Library Exception where applicable.
|
|
Copyright (C) 1987-2024 Free Software Foundation, Inc.; additional copyrights
|
|
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
|
|
applicable to those components; to the extent of any conflict, the third-party
|
|
license controls for that component. The applicable copyright notices and
|
|
license texts are set out in the
|
|
<a href="THIRD-PARTY-NOTICES.txt">THIRD-PARTY-NOTICES</a> file that accompanies
|
|
the Software (also on the MontaukOS ISO at <code>0:/os/licenses/</code>).</p>
|
|
|
|
<h2>6. No Warranty</h2>
|
|
|
|
<p>THE SOFTWARE IS PROVIDED "AS IS" AND "AS AVAILABLE," WITHOUT WARRANTY OF ANY
|
|
KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE, AND NON-INFRINGEMENT.
|
|
MONTAUKOS IS EXPERIMENTAL, HOBBYIST SYSTEM SOFTWARE THAT OPERATES AT A LOW
|
|
LEVEL AND MAY CAUSE LOSS OF DATA OR DAMAGE TO HARDWARE; YOU USE IT ENTIRELY AT
|
|
YOUR OWN RISK.</p>
|
|
|
|
<h2>7. Limitation of Liability</h2>
|
|
|
|
<p>TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT SHALL THE
|
|
MONTAUKOS PROJECT OR ITS AUTHOR BE LIABLE FOR ANY INDIRECT, INCIDENTAL,
|
|
SPECIAL, CONSEQUENTIAL, OR PUNITIVE DAMAGES, OR FOR ANY LOSS OF PROFITS, DATA,
|
|
USE, OR GOODWILL, ARISING OUT OF OR RELATED TO YOUR USE OF OR INABILITY TO USE
|
|
THE SOFTWARE, WHETHER BASED IN CONTRACT, TORT, OR ANY OTHER LEGAL THEORY, EVEN
|
|
IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. THE TOTAL AGGREGATE LIABILITY OF
|
|
THE MONTAUKOS PROJECT SHALL NOT EXCEED THE AMOUNT YOU PAID, IF ANY, FOR THE
|
|
SOFTWARE.</p>
|
|
|
|
<h2>8. General</h2>
|
|
|
|
<p>If any provision of this license is held unenforceable, the remaining
|
|
provisions remain in full force and effect. The failure to enforce any
|
|
provision is not a waiver of the right to do so later.</p>
|
|
|
|
<p>For licensing inquiries (including commercial distribution), contact:
|
|
[email protected]</p>
|
|
|
|
<hr>
|
|
|
|
<div class="center">
|
|
<a href="index.html">Back to Home</a>
|
|
</div>
|
|
|
|
</div>
|
|
</body>
|
|
</html>
|