website: pi 3 → pi 3 or 4
This commit is contained in:
parent
be1a525364
commit
c0759a418c
@ -4,7 +4,7 @@
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>gokrazy - a pure-Go userland for your Raspberry Pi 3 appliances</title>
|
||||
<title>gokrazy - a pure-Go userland for your Raspberry Pi 3 or 4 appliances</title>
|
||||
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
|
||||
<link href="/jumbotron-narrow.css" rel="stylesheet">
|
||||
@ -50,7 +50,7 @@ body {
|
||||
|
||||
<div class="jumbotron" style="padding: 1em; padding-right: 0; padding-left: 2em; text-align: left">
|
||||
<img src="logo.svg" width="200" height="217" align="right" text="gokrazy 'crazy gopher' logo">
|
||||
<h2>gokrazy is a pure-Go userland for your Raspberry Pi 3 appliances</h2>
|
||||
<h2>gokrazy is a pure-Go userland for your Raspberry Pi 3/4 appliances</h2>
|
||||
<p>
|
||||
For a long time, we were unhappy with having to care about security
|
||||
issues and Linux distribution maintenance on our various Raspberry Pis.
|
||||
@ -101,8 +101,9 @@ body {
|
||||
<p>
|
||||
Due to no C runtime environment being present, your code must compile
|
||||
with the environment variable <code>CGO_ENABLED=0</code>. To
|
||||
cross-compile for the Raspberry Pi 3, use <code>GOARCH=arm64</code>.
|
||||
If your program still builds, you’re good to go!
|
||||
cross-compile for the Raspberry Pi 3 or 4,
|
||||
use <code>GOARCH=arm64</code>. If your program still builds, you’re
|
||||
good to go!
|
||||
</p>
|
||||
|
||||
<h4>Network updates</h4>
|
||||
|
@ -48,10 +48,10 @@ body {
|
||||
|
||||
<div class="row">
|
||||
<div class="col-lg-12">
|
||||
<h1>Get a Raspberry Pi 3 (no other model)</h1>
|
||||
<h1>Get a Raspberry Pi 3 or 4 (no others)</h1>
|
||||
<p>
|
||||
Currently, the Raspberry Pi 3 is the <strong>only</strong>
|
||||
model supported. Many people assume the Raspberry Pi Zero W
|
||||
Currently, the Raspberry Pi 3 and Pi 4 are the <strong>only</strong>
|
||||
supported models. Many people assume the Raspberry Pi Zero W
|
||||
could be used as well. Unfortunately, it uses the older
|
||||
BCM2835 SoC, which is not arm64, so gokrazy won’t run on
|
||||
it. See
|
||||
@ -88,7 +88,7 @@ If your applications need to store persistent data, create a file system using e
|
||||
|
||||
mkfs.ext4 /dev/sdb4
|
||||
|
||||
To boot gokrazy, plug the SD card into a Raspberry Pi 3 (no other model supported)
|
||||
To boot gokrazy, plug the SD card into a Raspberry Pi 3 or 4 (no other models supported)
|
||||
|
||||
To interact with the device, gokrazy provides a web interface reachable at:
|
||||
|
||||
@ -96,7 +96,7 @@ To interact with the device, gokrazy provides a web interface reachable at:
|
||||
|
||||
There will be not be any other output (no HDMI, no serial console, etc.)</pre>
|
||||
<p>
|
||||
After booting from this SD card, your Raspberry Pi 3 will:
|
||||
After booting from this SD card, your Raspberry Pi 3 or 4 will:
|
||||
<ul>
|
||||
<li>obtain an IP address for hostname “gokrazy” via DHCP (IPv4) and SLAAC (IPv6)</li>
|
||||
<li>synchronize the clock using NTP</li>
|
||||
|
@ -76,7 +76,7 @@ to <a href="https://github.com/stapelberg">stapelberg</a>’s home network).
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://github.com/stapelberg/scan2drive"><strong>scan2drive</strong></a><br>
|
||||
scan2drive is a Raspberry Pi 3-based appliance (with a web interface)
|
||||
scan2drive is a Raspberry Pi 3/4-based appliance (with a web interface)
|
||||
for scanning, converting and uploading physical documents to Google
|
||||
Drive.
|
||||
</li>
|
||||
|
@ -1,6 +1,6 @@
|
||||
---
|
||||
layout: default
|
||||
title: gokrazy - a pure-Go userland for your Raspberry Pi 3 appliances
|
||||
title: gokrazy - a pure-Go userland for your Raspberry Pi 3 or 4 appliances
|
||||
menu:
|
||||
main:
|
||||
title: "Home"
|
||||
@ -9,7 +9,7 @@ menu:
|
||||
|
||||
<div class="jumbotron" style="padding: 1em; padding-right: 0; padding-left: 2em; text-align: left">
|
||||
<img src="logo.svg" width="200" height="217" align="right" text="gokrazy 'crazy gopher' logo">
|
||||
<h2>gokrazy is a pure-Go userland for your Raspberry Pi 3 appliances</h2>
|
||||
<h2>gokrazy is a pure-Go userland for your Raspberry Pi 3/4 appliances</h2>
|
||||
<p>
|
||||
For a long time, we were unhappy with having to care about security
|
||||
issues and Linux distribution maintenance on our various Raspberry Pis.
|
||||
@ -60,8 +60,9 @@ menu:
|
||||
<p>
|
||||
Due to no C runtime environment being present, your code must compile
|
||||
with the environment variable <code>CGO_ENABLED=0</code>. To
|
||||
cross-compile for the Raspberry Pi 3, use <code>GOARCH=arm64</code>.
|
||||
If your program still builds, you’re good to go!
|
||||
cross-compile for the Raspberry Pi 3 or 4,
|
||||
use <code>GOARCH=arm64</code>. If your program still builds, you’re
|
||||
good to go!
|
||||
</p>
|
||||
|
||||
<h4>Network updates</h4>
|
||||
|
@ -10,10 +10,10 @@ menu:
|
||||
|
||||
<div class="row">
|
||||
<div class="col-lg-12">
|
||||
<h1>Get a Raspberry Pi 3 (no other model)</h1>
|
||||
<h1>Get a Raspberry Pi 3 or 4 (no others)</h1>
|
||||
<p>
|
||||
Currently, the Raspberry Pi 3 is the <strong>only</strong>
|
||||
model supported. Many people assume the Raspberry Pi Zero W
|
||||
Currently, the Raspberry Pi 3 and Pi 4 are the <strong>only</strong>
|
||||
supported models. Many people assume the Raspberry Pi Zero W
|
||||
could be used as well. Unfortunately, it uses the older
|
||||
BCM2835 SoC, which is not arm64, so gokrazy won’t run on
|
||||
it. See
|
||||
@ -50,7 +50,7 @@ If your applications need to store persistent data, create a file system using e
|
||||
|
||||
mkfs.ext4 /dev/sdb4
|
||||
|
||||
To boot gokrazy, plug the SD card into a Raspberry Pi 3 (no other model supported)
|
||||
To boot gokrazy, plug the SD card into a Raspberry Pi 3 or 4 (no other models supported)
|
||||
|
||||
To interact with the device, gokrazy provides a web interface reachable at:
|
||||
|
||||
@ -58,7 +58,7 @@ To interact with the device, gokrazy provides a web interface reachable at:
|
||||
|
||||
There will be not be any other output (no HDMI, no serial console, etc.)</pre>
|
||||
<p>
|
||||
After booting from this SD card, your Raspberry Pi 3 will:
|
||||
After booting from this SD card, your Raspberry Pi 3 or 4 will:
|
||||
<ul>
|
||||
<li>obtain an IP address for hostname “gokrazy” via DHCP (IPv4) and SLAAC (IPv6)</li>
|
||||
<li>synchronize the clock using NTP</li>
|
||||
|
@ -39,7 +39,7 @@ to <a href="https://github.com/stapelberg">stapelberg</a>’s home network).
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://github.com/stapelberg/scan2drive"><strong>scan2drive</strong></a><br>
|
||||
scan2drive is a Raspberry Pi 3-based appliance (with a web interface)
|
||||
scan2drive is a Raspberry Pi 3/4-based appliance (with a web interface)
|
||||
for scanning, converting and uploading physical documents to Google
|
||||
Drive.
|
||||
</li>
|
||||
|
Loading…
x
Reference in New Issue
Block a user