summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorLaurent Bercot <ska-skaware@skarnet.org>2021-01-28 14:52:10 +0000
committerLaurent Bercot <ska-skaware@skarnet.org>2021-01-28 14:52:10 +0000
commit83f6cc219f1df40b14e3194c80f7df5fdac61fc1 (patch)
treed51710e7ffb6412130d6e631396bf7d682c638f3 /README.md
parent05f07a4b8c4c3d72cd582e24fcb862518d32e4c9 (diff)
downloadlh-bootstrap-83f6cc219f1df40b14e3194c80f7df5fdac61fc1.tar.xz
Update to new versions (first part)
Diffstat (limited to 'README.md')
-rw-r--r--README.md18
1 files changed, 9 insertions, 9 deletions
diff --git a/README.md b/README.md
index 15764e3..f84a1b7 100644
--- a/README.md
+++ b/README.md
@@ -2,7 +2,7 @@
# lh-bootstrap: building a disk image with Linux, musl, and skarnet.org tools from scratch
Laurent Bercot
-last modified: 2017-05-22
+last modified: 2021-01-28
## License
@@ -17,12 +17,12 @@ last modified: 2017-05-22
and the files can also be copied to real hardware.
The image contains a Linux kernel and a collection of small user-space
-tools such as [busybox](http://busybox.net/), [dropbear](https://matt.ucc.asn.au/dropbear/dropbear.html)
-and the [skarnet.org tools](http://skarnet.org/software/), all statically
-linked against the [musl libc](http://musl-libc.org/). It includes
+tools such as [busybox](https://busybox.net/), [dropbear](https://matt.ucc.asn.au/dropbear/dropbear.html)
+and the [skarnet.org tools](https://skarnet.org/software/), all statically
+linked against the [musl libc](https://musl-libc.org/). It includes
the minimal amount of necessary software and client configuration to get
-a machine up, running (with [s6](http://skarnet.org/software/s6) as
-process 1 and [s6-rc](http://skarnet.org/software/s6-rc) as service
+a machine up, running (with [s6](https://skarnet.org/software/s6) as
+process 1 and [s6-rc](https://skarnet.org/software/s6-rc) as service
manager) and connected to the Internet.
The image is built from scratch: every package is compiled from source.
@@ -111,7 +111,7 @@ computing power.
a gcc toolchain running on your BUILD machine and producing code intended
to run on your BUILD machine. You should have this on any distribution,
and your compiler should just be called `gcc`. If you do not have this,
-you can get a native toolchain [here](http://skarnet.org/toolchains/).
+you can get a native toolchain [here](https://skarnet.org/toolchains/).
- An unrestricted Internet connection on the BUILD machine.
@@ -135,13 +135,13 @@ binaries against the musl libc.
Even if you are building for the same TARGET as your BUILD machine
(example: you are building for x86_64 on an x86_64), **you cannot use
your stock distribution's native compiler for this!** Pick one of the
-cross toolchains available [here](http://skarnet.org/toolchains/).
+cross toolchains available [here](https://skarnet.org/toolchains/).
- A native musl development environment for the TARGET machine. This means a
gcc toolchain running on your TARGET machine and producing code intended
to run on your TARGET machine, linking the TARGET binaries against the musl
libc. Pick one of the native toolchains available
-[here](http://skarnet.org/toolchains/).
+[here](https://skarnet.org/toolchains/).
## Usage