support links from device pages to their installation methods

pull/2/head
Daniel Barlow 2023-11-09 23:02:35 +00:00
parent a9760d239c
commit 5e046490de
4 changed files with 17 additions and 6 deletions

2
ci.nix
View File

@ -59,7 +59,7 @@ let
installPhase = ''
mkdir -p $out/nix-support $out/share/doc/
cd doc
cp modules-generated.rst $out
cp *-generated.rst $out
ln -s ${json} $out/options.json
cp -a _build/html $out/share/doc/liminix
echo "file source-dist \"$out/share/doc/liminix\"" \

View File

@ -6,7 +6,7 @@
# Mainline linux 5.19 doesn't have device-tree support for this device
# or even for the SoC, so we use the extensive OpenWrt kernel patches
{
rec {
system = {
crossSystem = {
config = "mips-unknown-linux-musl";
@ -51,6 +51,7 @@
OpenWrt web page: https://openwrt.org/toh/gl.inet/gl-ar750
'';
installer = "flashimage";
module = {pkgs, config, ... }:
let
@ -102,7 +103,7 @@
FEATURE_DD_IBS_OBS = "y"; # ath10k_cal_data needs skip_bytes,fullblock
};
hardware = {
defaultOutput = "flashimage";
defaultOutput = installer;
loadAddress = "0x80060000";
entryPoint = "0x80060000";
flash = {

View File

@ -5,8 +5,18 @@ let
builtins.readDir ../devices;
texts = lib.mapAttrsToList (n: t:
let d = import ../devices/${n}/default.nix;
d' = { description = "no description for ${n}"; } // d;
in d'.description )
d' = {
description = "no description for ${n}";
} // d;
installer =
if d ? installer
then ''
The default installation route for this device is
:ref:`system-outputs-${d.installer}`
''
else "";
in (d'.description + installer))
devices;
in
writeText "hwdoc" ''

View File

@ -7,5 +7,5 @@
(each [_ option (ipairs (yaml.load (io.read "*a")))]
(when (. outputs option.name)
(print (.. ".. _" option.name) "\n")
(print (.. ".. _" (string.gsub option.name "%." "-") ":") "\n")
(print option.description)))