mirror of
https://github.com/mudler/luet.git
synced 2025-09-18 16:32:16 +00:00
Deploying to gh-pages from @ 5ee1ff6d5a
🚀
This commit is contained in:
@@ -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 @@ $> 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 @@ $> 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 @@ $> sudo make build-all
|
||||
|
||||
</div>
|
||||
<div class="col-12 col-sm-4 text-center py-2 order-sm-2">
|
||||
<small class="text-white">© 2022 Ettore Di Giacinto All Rights Reserved</small>
|
||||
<small class="text-white">© 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>
|
||||
|
@@ -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>$> mkdir package
|
||||
|
||||
$> cat <<EOF > package/build.yaml
|
||||
@@ -347,7 +347,7 @@ $> 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>$> mkdir package
|
||||
|
||||
@@ -441,7 +441,7 @@ $> 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 @@ $> 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">© 2022 Ettore Di Giacinto All Rights Reserved</small>
|
||||
<small class="text-white">© 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>
|
||||
|
@@ -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">© 2022 Ettore Di Giacinto All Rights Reserved</small>
|
||||
<small class="text-white">© 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>
|
||||
|
@@ -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">© 2022 Ettore Di Giacinto All Rights Reserved</small>
|
||||
<small class="text-white">© 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>
|
||||
|
@@ -70,7 +70,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="https://luet.io/docs/docs/concepts/packages/">packages</a> to the exiting repository, simply add or edit the <a href="https://luet.io/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="https://luet.io/docs/concepts/packages/">packages</a> to the exiting repository, simply add or edit the <a href="https://luet.io/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>
|
||||
|
||||
</description>
|
||||
</item>
|
||||
@@ -85,7 +85,7 @@ $&gt; sudo make build-all
|
||||
|
||||
|
||||
<h2 id="simple-package-build">Simple package build</h2>
|
||||
<p>Creating and building a simple <a href="https://luet.io/docs/docs/concepts/packages/">package</a>:</p>
|
||||
<p>Creating and building a simple <a href="https://luet.io/docs/concepts/packages/">package</a>:</p>
|
||||
<pre tabindex="0"><code>$&gt; mkdir package
|
||||
|
||||
$&gt; cat &lt;&lt;EOF &gt; package/build.yaml
|
||||
@@ -112,7 +112,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="https://luet.io/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="https://luet.io/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
|
||||
|
||||
|
@@ -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">© 2022 Ettore Di Giacinto All Rights Reserved</small>
|
||||
<small class="text-white">© 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>
|
||||
|
@@ -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">© 2022 Ettore Di Giacinto All Rights Reserved</small>
|
||||
<small class="text-white">© 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>
|
||||
|
Reference in New Issue
Block a user