forked from DGNum/liminix
basic doc for flashimage installer
This commit is contained in:
parent
5729cfb4a7
commit
a9760d239c
2 changed files with 31 additions and 3 deletions
7
ci.nix
7
ci.nix
|
@ -39,6 +39,11 @@ let
|
||||||
imports = [ ./modules/all-modules.nix ];
|
imports = [ ./modules/all-modules.nix ];
|
||||||
};
|
};
|
||||||
}).outputs.optionsJson;
|
}).outputs.optionsJson;
|
||||||
|
installers = map (f: "system.outputs.${f}") [
|
||||||
|
"vmroot"
|
||||||
|
"flashimage"
|
||||||
|
];
|
||||||
|
inherit (pkgs.lib) concatStringsSep;
|
||||||
in pkgs.stdenv.mkDerivation {
|
in pkgs.stdenv.mkDerivation {
|
||||||
name = "liminix-doc";
|
name = "liminix-doc";
|
||||||
nativeBuildInputs = with pkgs; [
|
nativeBuildInputs = with pkgs; [
|
||||||
|
@ -47,7 +52,7 @@ let
|
||||||
src = ./.;
|
src = ./.;
|
||||||
buildPhase = ''
|
buildPhase = ''
|
||||||
cat ${json} | fennel --correlate doc/parse-options.fnl > doc/modules-generated.rst
|
cat ${json} | fennel --correlate doc/parse-options.fnl > doc/modules-generated.rst
|
||||||
cat ${json} | fennel --correlate doc/parse-options-outputs.fnl system.outputs.vmroot > doc/installers-generated.rst
|
cat ${json} | fennel --correlate doc/parse-options-outputs.fnl ${concatStringsSep " " installers} > doc/installers-generated.rst
|
||||||
cp ${(import ./doc/hardware.nix)} doc/hardware.rst
|
cp ${(import ./doc/hardware.nix)} doc/hardware.rst
|
||||||
make -C doc html
|
make -C doc html
|
||||||
'';
|
'';
|
||||||
|
|
|
@ -28,8 +28,31 @@ in {
|
||||||
flashimage = mkOption {
|
flashimage = mkOption {
|
||||||
type = types.package;
|
type = types.package;
|
||||||
description = ''
|
description = ''
|
||||||
Flashable image for the target device, and the script to
|
flashimage
|
||||||
install it
|
**********
|
||||||
|
|
||||||
|
This creates an image called :file:`firmware.bin` suitable for
|
||||||
|
squashfs or jffs2 systems. It can be flashed from U-Boot (if
|
||||||
|
you have a serial console connection), or on some devices from
|
||||||
|
the vendor firmware, or from a Liminix kexecboot system.
|
||||||
|
|
||||||
|
If you are flashing from U-Boot, the file
|
||||||
|
:file:`flash.scr` is a sequence of commands
|
||||||
|
which you can paste at the U-Boot prompt to
|
||||||
|
to transfer the firmware file from a TFTP server and
|
||||||
|
write it to flash. **Please read the script before
|
||||||
|
running it: flash operations carry the potential to
|
||||||
|
brick your device**
|
||||||
|
|
||||||
|
.. NOTE::
|
||||||
|
|
||||||
|
TTL serial connections typically have no form of flow
|
||||||
|
control and so don't always like having massive chunks of
|
||||||
|
text pasted into them - and U-Boot may drop characters
|
||||||
|
while it's busy. So don't necessarily expect to copy-paste
|
||||||
|
the whole of :file:`flash.scr` into a terminal emulator and
|
||||||
|
have it work just like that. You may need to paste each
|
||||||
|
line one at a time, or even retype it.
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue