update homepage and CHANGELOG

This commit is contained in:
Tobias Powalowski 2024-07-19 16:51:17 +02:00
parent fc8ff10503
commit 627ec205ad
2 changed files with 28 additions and 4 deletions

View file

@ -2,7 +2,8 @@ On the road to 2024.07:
Environment: Environment:
- kernel 6.10.x - kernel 6.10.x
- OpenSSH 9.8 - OpenSSH 9.8
- use 3cpio with zstd for multi cpio archive initramfs decompression - use 3cpio with zstd for concatenated cpio archive initramfs
decompression
- updated MOTD - updated MOTD
- optimized init.sh and login.sh - optimized init.sh and login.sh
- changed eza default date colour to white - changed eza default date colour to white
@ -14,7 +15,7 @@ Environment:
- removed hfs, hfsplus, isofs, nfsv2, nfsv3 and udf filesystems - removed hfs, hfsplus, isofs, nfsv2, nfsv3 and udf filesystems
- removed makepkg - removed makepkg
cpio: cpio:
- create multi cpio archive initramfs files => up to 25% faster - create concatenated cpio archive initramfs files => up to 25% faster
1st part: all directories 1st part: all directories
2nd part: all already compressed files 2nd part: all already compressed files
3rd part: zstd compressed rootfs 3rd part: zstd compressed rootfs

View file

@ -17,7 +17,7 @@
<h1>Archboot Home | <a href="https://archboot.com/gallery.html">Gallery</a> | <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=Z7GXKW4MKHK7C"><img src="donate.png" alt="Donate"></a></h1> <h1>Archboot Home | <a href="https://archboot.com/gallery.html">Gallery</a> | <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=Z7GXKW4MKHK7C"><img src="donate.png" alt="Donate"></a></h1>
<h2>2024 Fundraise: 0% <progress max="100" value="38">0%</progress> 100%</h2> <h2>2024 Fundraise: 0% <progress max="100" value="38">0%</progress> 100%</h2>
<p><strong>&copy; 2006 - 2024 | <a href=mailto:tpowa@archlinux.org>Tobias Powalowski</a></strong> | Arch Linux Developer <strong><a href="https://archlinux.org/people/developers/#tpowa">tpowa</a></strong><br> <p><strong>&copy; 2006 - 2024 | <a href=mailto:tpowa@archlinux.org>Tobias Powalowski</a></strong> | Arch Linux Developer <strong><a href="https://archlinux.org/people/developers/#tpowa">tpowa</a></strong><br>
<strong>Last update: 19.07.2024 12:46</strong></p> <strong>Last update: 19.07.2024 16:50</strong></p>
<nav id="TOC" role="doc-toc"> <nav id="TOC" role="doc-toc">
<ul> <ul>
<li><a href="#introduction" id="toc-introduction"><strong><span class="toc-section-number">1.</span> Introduction</strong></a></li> <li><a href="#introduction" id="toc-introduction"><strong><span class="toc-section-number">1.</span> Introduction</strong></a></li>
@ -1066,8 +1066,31 @@ The archboot initrd toolchain uses its <strong>own</strong> cpio generator. Some
<li>libraries outside of lib/ are <strong>not</strong> checked!</li> <li>libraries outside of lib/ are <strong>not</strong> checked!</li>
<li><strong>tar</strong> is used for copying/renaming files and directories. It's faster than install and cp!</li> <li><strong>tar</strong> is used for copying/renaming files and directories. It's faster than install and cp!</li>
<li><strong>mkdir</strong> is used for creating directories. It's faster than install!</li> <li><strong>mkdir</strong> is used for creating directories. It's faster than install!</li>
<li><strong>3cpio</strong> can be used to examine/extract/list the initramfs files.</li>
</ul> </ul>
<strong>Concatenated Cpio Initramfs Layout:</strong>
<p><a href="https://github.com/bdrung/3cpio" title="3cpio"><strong>3cpio</strong></a> can be used to examine/extract/list the initramfs files.</p>
<table>
<thead>
<tr class="header">
<th>Part</th>
<th>Function</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td><strong>1</strong></td>
<td>All directories</td>
</tr>
<tr class="even">
<td><strong>2</strong></td>
<td>All already compressed files</td>
</tr>
<tr class="odd">
<td><strong>3</strong></td>
<td>ZSTD compressed rootfs</td>
</tr>
</tbody>
</table>
Options supported in <strong>/etc/archboot/&lt;profile&gt;.conf</strong> files:<br> Options supported in <strong>/etc/archboot/&lt;profile&gt;.conf</strong> files:<br>
<table> <table>
<thead> <thead>