Deploying to gh-pages from @ 5ee1ff6d5a 🚀

This commit is contained in:
mudler
2023-02-02 11:00:44 +00:00
parent 08a02cde9d
commit 6d295ad354
40 changed files with 188 additions and 188 deletions

View File

@@ -27,12 +27,12 @@
<meta property="og:type" content="article" />
<meta property="og:url" content="https://luet.io/docs/resources/arm/" /><meta property="article:section" content="docs" />
<meta property="article:modified_time" content="2022-10-18T08:22:08+00:00" /><meta property="og:site_name" content="Luet" />
<meta property="article:modified_time" content="2023-02-02T11:59:57+01:00" /><meta property="og:site_name" content="Luet" />
<meta itemprop="name" content="ARM images">
<meta itemprop="description" content="Use Luet to build, track, and release OTA update for your embedded devices.
">
<meta itemprop="dateModified" content="2022-10-18T08:22:08+00:00" />
<meta itemprop="dateModified" content="2023-02-02T11:59:57+01:00" />
<meta itemprop="wordCount" content="292">
<meta itemprop="keywords" content="" /><meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content="ARM images"/>
@@ -372,7 +372,7 @@ $&gt; sudo make build-all
</code></pre>
<p>At the end of the process, a file <code>luet_os.img</code>, ready to be flashed to an SD card, should be present in the current directory.</p>
<h2 id="add-packages">Add packages</h2>
<p>In order to build and add <a href="/docs/docs/concepts/packages/">packages</a> to the exiting repository, simply add or edit the <a href="/docs/docs/concepts/specfile">specfiles</a> under the <code>distro</code> folder. When doing <code>make rebuild-all</code> the packages will be automatically compiled and made available to the local repository.</p>
<p>In order to build and add <a href="/docs/concepts/packages/">packages</a> to the exiting repository, simply add or edit the <a href="/docs/concepts/packages/specfile">specfiles</a> under the <code>distro</code> folder. When doing <code>make rebuild-all</code> the packages will be automatically compiled and made available to the local repository.</p>
<style>
@@ -439,7 +439,7 @@ $&gt; sudo make build-all
<div class="text-muted mt-5 pt-3 border-top">
Last modified October 18, 2022: <a href="https://github.com/mudler/luet/commit/2513760b00de6aebb0444e6a7221ac8967d62b6c">Tag 0.33.0 (2513760)</a>
Last modified February 2, 2023: <a href="https://github.com/mudler/luet/commit/5ee1ff6d5aee5e5bb6d98382ff232b5d828afd36">:arrow_up: Bump to go 1.19 as requirement for building (#319) (5ee1ff6)</a>
</div>
</div>
@@ -481,7 +481,7 @@ $&gt; sudo make build-all
</div>
<div class="col-12 col-sm-4 text-center py-2 order-sm-2">
<small class="text-white">&copy; 2022 Ettore Di Giacinto All Rights Reserved</small>
<small class="text-white">&copy; 2023 Ettore Di Giacinto All Rights Reserved</small>
<small class="ml-1"><a href="https://policies.google.com/privacy" target="_blank" rel="noopener">Privacy Policy</a></small>
<p class="mt-2"><a href="/about/">About Luet</a></p>

View File

@@ -27,12 +27,12 @@
<meta property="og:type" content="article" />
<meta property="og:url" content="https://luet.io/docs/resources/building/" /><meta property="article:section" content="docs" />
<meta property="article:modified_time" content="2022-10-18T08:22:08+00:00" /><meta property="og:site_name" content="Luet" />
<meta property="article:modified_time" content="2023-02-02T11:59:57+01:00" /><meta property="og:site_name" content="Luet" />
<meta itemprop="name" content="Building">
<meta itemprop="description" content="Examples to build with Luet
">
<meta itemprop="dateModified" content="2022-10-18T08:22:08+00:00" />
<meta itemprop="dateModified" content="2023-02-02T11:59:57+01:00" />
<meta itemprop="wordCount" content="200">
<meta itemprop="keywords" content="" /><meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content="Building"/>
@@ -320,7 +320,7 @@ if (!doNotTrack) {
</header>
<h2 id="simple-package-build">Simple package build</h2>
<p>Creating and building a simple <a href="/docs/docs/concepts/packages/">package</a>:</p>
<p>Creating and building a simple <a href="/docs/concepts/packages/">package</a>:</p>
<pre tabindex="0"><code>$&gt; mkdir package
$&gt; cat &lt;&lt;EOF &gt; package/build.yaml
@@ -347,7 +347,7 @@ $&gt; luet build --all
...
</code></pre><h3 id="build-packages">Build packages</h3>
<p>In order to build a specific version, a full <a href="/docs/docs/concepts/packages/">package</a> definition (triple of <code>category</code>, <code>name</code> and <code>version</code>) has to be specified.
<p>In order to build a specific version, a full <a href="/docs/concepts/packages/">package</a> definition (triple of <code>category</code>, <code>name</code> and <code>version</code>) has to be specified.
In this example we will also enable package compression (gzip).</p>
<pre tabindex="0"><code>$&gt; mkdir package
@@ -441,7 +441,7 @@ $&gt; luet build bar/foo-0.1 --compression gzip
<div class="text-muted mt-5 pt-3 border-top">
Last modified October 18, 2022: <a href="https://github.com/mudler/luet/commit/2513760b00de6aebb0444e6a7221ac8967d62b6c">Tag 0.33.0 (2513760)</a>
Last modified February 2, 2023: <a href="https://github.com/mudler/luet/commit/5ee1ff6d5aee5e5bb6d98382ff232b5d828afd36">:arrow_up: Bump to go 1.19 as requirement for building (#319) (5ee1ff6)</a>
</div>
</div>
@@ -483,7 +483,7 @@ $&gt; luet build bar/foo-0.1 --compression gzip
</div>
<div class="col-12 col-sm-4 text-center py-2 order-sm-2">
<small class="text-white">&copy; 2022 Ettore Di Giacinto All Rights Reserved</small>
<small class="text-white">&copy; 2023 Ettore Di Giacinto All Rights Reserved</small>
<small class="ml-1"><a href="https://policies.google.com/privacy" target="_blank" rel="noopener">Privacy Policy</a></small>
<p class="mt-2"><a href="/about/">About Luet</a></p>

View File

@@ -27,12 +27,12 @@
<meta property="og:type" content="article" />
<meta property="og:url" content="https://luet.io/docs/resources/faq/" /><meta property="article:section" content="docs" />
<meta property="article:modified_time" content="2022-10-18T08:22:08+00:00" /><meta property="og:site_name" content="Luet" />
<meta property="article:modified_time" content="2023-02-02T11:59:57+01:00" /><meta property="og:site_name" content="Luet" />
<meta itemprop="name" content="Frequently Asked Questions">
<meta itemprop="description" content="FAQ
">
<meta itemprop="dateModified" content="2022-10-18T08:22:08+00:00" />
<meta itemprop="dateModified" content="2023-02-02T11:59:57+01:00" />
<meta itemprop="wordCount" content="210">
<meta itemprop="keywords" content="" /><meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content="Frequently Asked Questions"/>
@@ -394,7 +394,7 @@ if (!doNotTrack) {
<div class="text-muted mt-5 pt-3 border-top">
Last modified October 18, 2022: <a href="https://github.com/mudler/luet/commit/2513760b00de6aebb0444e6a7221ac8967d62b6c">Tag 0.33.0 (2513760)</a>
Last modified February 2, 2023: <a href="https://github.com/mudler/luet/commit/5ee1ff6d5aee5e5bb6d98382ff232b5d828afd36">:arrow_up: Bump to go 1.19 as requirement for building (#319) (5ee1ff6)</a>
</div>
</div>
@@ -436,7 +436,7 @@ if (!doNotTrack) {
</div>
<div class="col-12 col-sm-4 text-center py-2 order-sm-2">
<small class="text-white">&copy; 2022 Ettore Di Giacinto All Rights Reserved</small>
<small class="text-white">&copy; 2023 Ettore Di Giacinto All Rights Reserved</small>
<small class="ml-1"><a href="https://policies.google.com/privacy" target="_blank" rel="noopener">Privacy Policy</a></small>
<p class="mt-2"><a href="/about/">About Luet</a></p>

View File

@@ -425,7 +425,7 @@ if (!doNotTrack) {
<div class="text-muted mt-5 pt-3 border-top">
Last modified October 18, 2022: <a href="https://github.com/mudler/luet/commit/2513760b00de6aebb0444e6a7221ac8967d62b6c">Tag 0.33.0 (2513760)</a>
Last modified February 2, 2023: <a href="https://github.com/mudler/luet/commit/5ee1ff6d5aee5e5bb6d98382ff232b5d828afd36">:arrow_up: Bump to go 1.19 as requirement for building (#319) (5ee1ff6)</a>
</div>
</div>
@@ -466,7 +466,7 @@ if (!doNotTrack) {
</div>
<div class="col-12 col-sm-4 text-center py-2 order-sm-2">
<small class="text-white">&copy; 2022 Ettore Di Giacinto All Rights Reserved</small>
<small class="text-white">&copy; 2023 Ettore Di Giacinto All Rights Reserved</small>
<small class="ml-1"><a href="https://policies.google.com/privacy" target="_blank" rel="noopener">Privacy Policy</a></small>
<p class="mt-2"><a href="/about/">About Luet</a></p>

View File

@@ -70,7 +70,7 @@ $&amp;gt; sudo make build-all
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;At the end of the process, a file &lt;code&gt;luet_os.img&lt;/code&gt;, ready to be flashed to an SD card, should be present in the current directory.&lt;/p&gt;
&lt;h2 id=&#34;add-packages&#34;&gt;Add packages&lt;/h2&gt;
&lt;p&gt;In order to build and add &lt;a href=&#34;https://luet.io/docs/docs/concepts/packages/&#34;&gt;packages&lt;/a&gt; to the exiting repository, simply add or edit the &lt;a href=&#34;https://luet.io/docs/docs/concepts/specfile&#34;&gt;specfiles&lt;/a&gt; under the &lt;code&gt;distro&lt;/code&gt; folder. When doing &lt;code&gt;make rebuild-all&lt;/code&gt; the packages will be automatically compiled and made available to the local repository.&lt;/p&gt;
&lt;p&gt;In order to build and add &lt;a href=&#34;https://luet.io/docs/concepts/packages/&#34;&gt;packages&lt;/a&gt; to the exiting repository, simply add or edit the &lt;a href=&#34;https://luet.io/docs/concepts/packages/specfile&#34;&gt;specfiles&lt;/a&gt; under the &lt;code&gt;distro&lt;/code&gt; folder. When doing &lt;code&gt;make rebuild-all&lt;/code&gt; the packages will be automatically compiled and made available to the local repository.&lt;/p&gt;
</description>
</item>
@@ -85,7 +85,7 @@ $&amp;gt; sudo make build-all
&lt;h2 id=&#34;simple-package-build&#34;&gt;Simple package build&lt;/h2&gt;
&lt;p&gt;Creating and building a simple &lt;a href=&#34;https://luet.io/docs/docs/concepts/packages/&#34;&gt;package&lt;/a&gt;:&lt;/p&gt;
&lt;p&gt;Creating and building a simple &lt;a href=&#34;https://luet.io/docs/concepts/packages/&#34;&gt;package&lt;/a&gt;:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;$&amp;gt; mkdir package
$&amp;gt; cat &amp;lt;&amp;lt;EOF &amp;gt; package/build.yaml
@@ -112,7 +112,7 @@ $&amp;gt; luet build --all
...
&lt;/code&gt;&lt;/pre&gt;&lt;h3 id=&#34;build-packages&#34;&gt;Build packages&lt;/h3&gt;
&lt;p&gt;In order to build a specific version, a full &lt;a href=&#34;https://luet.io/docs/docs/concepts/packages/&#34;&gt;package&lt;/a&gt; definition (triple of &lt;code&gt;category&lt;/code&gt;, &lt;code&gt;name&lt;/code&gt; and &lt;code&gt;version&lt;/code&gt;) has to be specified.
&lt;p&gt;In order to build a specific version, a full &lt;a href=&#34;https://luet.io/docs/concepts/packages/&#34;&gt;package&lt;/a&gt; definition (triple of &lt;code&gt;category&lt;/code&gt;, &lt;code&gt;name&lt;/code&gt; and &lt;code&gt;version&lt;/code&gt;) has to be specified.
In this example we will also enable package compression (gzip).&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;$&amp;gt; mkdir package

View File

@@ -25,11 +25,11 @@
<meta property="og:type" content="article" />
<meta property="og:url" content="https://luet.io/docs/resources/references/" /><meta property="article:section" content="docs" />
<meta property="article:modified_time" content="2022-10-18T08:22:08+00:00" /><meta property="og:site_name" content="Luet" />
<meta property="article:modified_time" content="2023-02-02T11:59:57+01:00" /><meta property="og:site_name" content="Luet" />
<meta itemprop="name" content="References">
<meta itemprop="description" content="References to various resources related to luet">
<meta itemprop="dateModified" content="2022-10-18T08:22:08+00:00" />
<meta itemprop="dateModified" content="2023-02-02T11:59:57+01:00" />
<meta itemprop="wordCount" content="93">
<meta itemprop="keywords" content="" /><meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content="References"/>
@@ -415,7 +415,7 @@ if (!doNotTrack) {
<div class="text-muted mt-5 pt-3 border-top">
Last modified October 18, 2022: <a href="https://github.com/mudler/luet/commit/2513760b00de6aebb0444e6a7221ac8967d62b6c">Tag 0.33.0 (2513760)</a>
Last modified February 2, 2023: <a href="https://github.com/mudler/luet/commit/5ee1ff6d5aee5e5bb6d98382ff232b5d828afd36">:arrow_up: Bump to go 1.19 as requirement for building (#319) (5ee1ff6)</a>
</div>
</div>
@@ -457,7 +457,7 @@ if (!doNotTrack) {
</div>
<div class="col-12 col-sm-4 text-center py-2 order-sm-2">
<small class="text-white">&copy; 2022 Ettore Di Giacinto All Rights Reserved</small>
<small class="text-white">&copy; 2023 Ettore Di Giacinto All Rights Reserved</small>
<small class="ml-1"><a href="https://policies.google.com/privacy" target="_blank" rel="noopener">Privacy Policy</a></small>
<p class="mt-2"><a href="/about/">About Luet</a></p>

View File

@@ -27,12 +27,12 @@
<meta property="og:type" content="article" />
<meta property="og:url" content="https://luet.io/docs/resources/scratch/" /><meta property="article:section" content="docs" />
<meta property="article:modified_time" content="2022-10-18T08:22:08+00:00" /><meta property="og:site_name" content="Luet" />
<meta property="article:modified_time" content="2023-02-02T11:59:57+01:00" /><meta property="og:site_name" content="Luet" />
<meta itemprop="name" content="Images from scratch">
<meta itemprop="description" content="Using Luet to compose images from scratch
">
<meta itemprop="dateModified" content="2022-10-18T08:22:08+00:00" />
<meta itemprop="dateModified" content="2023-02-02T11:59:57+01:00" />
<meta itemprop="wordCount" content="130">
<meta itemprop="keywords" content="" /><meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content="Images from scratch"/>
@@ -400,7 +400,7 @@ docker run -ti --entrypoint /bin/bash --rm luet-runtime-test-image
<div class="text-muted mt-5 pt-3 border-top">
Last modified October 18, 2022: <a href="https://github.com/mudler/luet/commit/2513760b00de6aebb0444e6a7221ac8967d62b6c">Tag 0.33.0 (2513760)</a>
Last modified February 2, 2023: <a href="https://github.com/mudler/luet/commit/5ee1ff6d5aee5e5bb6d98382ff232b5d828afd36">:arrow_up: Bump to go 1.19 as requirement for building (#319) (5ee1ff6)</a>
</div>
</div>
@@ -442,7 +442,7 @@ docker run -ti --entrypoint /bin/bash --rm luet-runtime-test-image
</div>
<div class="col-12 col-sm-4 text-center py-2 order-sm-2">
<small class="text-white">&copy; 2022 Ettore Di Giacinto All Rights Reserved</small>
<small class="text-white">&copy; 2023 Ettore Di Giacinto All Rights Reserved</small>
<small class="ml-1"><a href="https://policies.google.com/privacy" target="_blank" rel="noopener">Privacy Policy</a></small>
<p class="mt-2"><a href="/about/">About Luet</a></p>