git » armlfs-site.git » commit aa3ceac

Updates. Site be site'ing.

author Urja Rannikko
2025-03-02 11:15:05 UTC
committer Urja Rannikko
2025-03-02 11:15:05 UTC
parent 77015a3ab1858b0e5b99a0d0b0f0a5062f8cf8b4

Updates. Site be site'ing.

Makefile +1 -0
clean-output.sh +3 -0
content/pages/download.md +4 -4
content/pages/index.md +0 -3
content/pages/known-issues.md +7 -1
content/pages/sources.md +16 -15
content/the-long-story.md +0 -2
mount-output.sh +1 -1

diff --git a/Makefile b/Makefile
index d74fecc..345ac1f 100644
--- a/Makefile
+++ b/Makefile
@@ -1,3 +1,4 @@
 all:
+	./mount-output.sh
 	./poke-dates.sh
 	pelican
diff --git a/clean-output.sh b/clean-output.sh
index fc1a7ff..6d62844 100755
--- a/clean-output.sh
+++ b/clean-output.sh
@@ -4,6 +4,9 @@ for d in *; do
 	if [ -L "$d" ]; then
 		continue
 	fi
+	if [ "$d" == "robots.txt" ]; then
+		continue
+	fi
 	echo $d
 	rm -r "$d"
 done
diff --git a/content/pages/download.md b/content/pages/download.md
index c0fef0e..43fa5ea 100644
--- a/content/pages/download.md
+++ b/content/pages/download.md
@@ -6,7 +6,7 @@ There are 2 formats provided, and 2 different images provided.
 ## Formats:
 
 - .img.xz - XZ-compressed bootable SD-card / usb-stick image
-- .tar.gz - a tarball of the files on the root filesystem
+- .tar.xz - a tarball of the files on the root filesystem
 
 The SD-card image is the one i recommend if you don't know which one to use.
 It will also self-partition on first boot to use the full size of the card.
@@ -17,7 +17,7 @@ installing to the eMMC.
 ## Images:
 
 - armlfs-kde5-base: basic KDE 5 experience with firefox, but not much else.
-- armlfs-kde5-showcase: the full set of applications (and waydroid).
+- armlfs-kde5-showcase: the full set of applications.
 
 ## Preparation
 
@@ -63,8 +63,8 @@ Here are all the download links, finally:
 
 | Variant | Disk Image | Tarball |
 | ------- | ---------- | ------- |
-| armlfs-kde5-base | [.img.xz](/dist/armlfs-kde5-base.img.xz) | [.tar.gz](/dist/armlfs-kde5-base.tar.gz) |
-| armlfs-kde5-showcase | **[.img.xz](/dist/armlfs-kde5-showcase.img.xz)** | [.tar.gz](/dist/armlfs-kde5-showcase.tar.gz) |
+| armlfs-kde5-base | [.img.xz](/dist/armlfs-kde5-base.img.xz) | [.tar.xz](/dist/armlfs-kde5-base.tar.xz) |
+| armlfs-kde5-showcase | **[.img.xz](/dist/armlfs-kde5-showcase.img.xz)** | [.tar.xz](/dist/armlfs-kde5-showcase.tar.xz) |
 
 ## Finally
 
diff --git a/content/pages/index.md b/content/pages/index.md
index 7d2ef13..29f5917 100644
--- a/content/pages/index.md
+++ b/content/pages/index.md
@@ -4,9 +4,6 @@ URL:
 save_as: index.html
 status: hidden
 
-# Hi, how did you find this?
-Just a note that the entire thing here is WIP and not released. Anyways, carry on :)
-
 Hello, yes this is a one-person distro.
 
 Let me just show what I've got.
diff --git a/content/pages/known-issues.md b/content/pages/known-issues.md
index e100f03..5151de1 100644
--- a/content/pages/known-issues.md
+++ b/content/pages/known-issues.md
@@ -3,8 +3,14 @@ date: 2024-07-06
 
 This is just a list of weird things that I should look into later.
 
-- C201 kernel doesnt poweroff properly (workarounds: long press, or reboot to chromeos, or sleep)
 - Krita hardware accelerated canvas is just black (workaround: disable hwaccel in prefs)
 - nextpnr-ice40 GUI doesnt show up (workaround: LIBGL_ALWAYS_SOFTWARE=1, but that was _very_ slow. TODO.)
+- (6.6.30) waking up from suspend with USB attached hangs until USB detach (and USB is nonfunctional afterwards)
 
 If you've noticed something that you'd want to keep a track of, poke me and atleast i'll put it in this list.
+
+Weird things dealt with:
+
+- C201 kernel doesnt poweroff properly (workarounds: long press, or reboot to chromeos, or sleep)  
+[located and reported](http://lists.infradead.org/pipermail/linux-arm-kernel/2024-July/944391.html) (and patched)
+
diff --git a/content/pages/sources.md b/content/pages/sources.md
index c2c67ca..74b0321 100644
--- a/content/pages/sources.md
+++ b/content/pages/sources.md
@@ -1,22 +1,23 @@
 Title: Sources
 date: 2024-06-16
 
+To figure out how this all works together, reading
+[The Rebuild Process]({filename}/rebuild-process.md) might be useful. 
 
-## TODO: Add the links to:
+Package PKGBUILDs:
 
-- source archives
-- pkgbuilds (gits) for
-    - core
-    - base
-    - kde5
-- build scripts for
-    - core
-    - base
-    - kde5
-- the Pelican sources to the website
-- a tarball of the build executive version of ARMLFS
-- all the binary packages (arm64 buildcore64, and armlfs core,base,kde5)
+- [core](/git/core-pkgbuilds/)
+- [base](/git/base-pkgbuilds/)
+- [kde5](/git/kde5-pkgbuilds/)
 
+[All the build machinery, website, etc.](/git/sources/)
+
+[Archives of (mostly) upstream sources.](/archives/)
+
+[Binary distributions](/dist/) - also see [Download]({filename}/pages/download.md).
+
+Binary packages (for your pacman.conf - i see no need for direct link):
+```
+Server = https://armlfs.urja.dev/pkg/$arch/$repo
+```
 
-This is TODO because the website is not on the final server, duh.
-(And I've not made all the git repos yet, uhh...)
diff --git a/content/the-long-story.md b/content/the-long-story.md
index 023c084..07c4197 100644
--- a/content/the-long-story.md
+++ b/content/the-long-story.md
@@ -97,8 +97,6 @@ and has a rather nice set of available software:
 Along with all the core tech enabling stuff, like Mesa (panfrost), Pulseaudio, Networkmanager,
 BlueZ (yes, bluetooth headsets will work), etc.
 
-Oh, and as a bonus, "Waydroid".
-
 And now i've realized that to do what I really started off to do,
 to show Arch-ARM __and__ Debian and every other distro out there
 that you can do a better experience (especially on armv7),
diff --git a/mount-output.sh b/mount-output.sh
index 0cc708c..4d44bf9 100755
--- a/mount-output.sh
+++ b/mount-output.sh
@@ -1,2 +1,2 @@
 #!/bin/sh
-sshfs webalfs:srv/ output
+mountpoint -q output || sshfs webalfs:srv/ output