1
0
forked from dan/liminix

remove remaining refs to kexecboot

This commit is contained in:
Daniel Barlow 2025-01-05 17:22:30 +00:00
parent 61eaaa82eb
commit f77da6f14c
7 changed files with 18 additions and 81 deletions

View File

@ -41,10 +41,11 @@
:ref:`system-outputs-mtdimage` can be flashed using the :ref:`system-outputs-mtdimage` can be flashed using the
vendor web UI or the U-Boot emergency "unbrick" routine. vendor web UI or the U-Boot emergency "unbrick" routine.
For flashing from an existing Liminix system (we believe that) it Flashing over an existing Liminix system is not possible while
is necessary to first boot into a :ref:`system-outputs-kexecboot` that system is running, otherwise you'll be overwriting flash
system, otherwise you'll be overwriting flash partitions while partitions while they're in use - and that might not end well.
they're in use - and that might not end well. Configure the system with :ref:`levitate` if you need to
make it upgradable.
Vendor web page: https://www.gl-inet.com/products/gl-ar750/ Vendor web page: https://www.gl-inet.com/products/gl-ar750/

View File

@ -32,10 +32,11 @@
binary created by :ref:`system-outputs-mtdimage` can be flashed binary created by :ref:`system-outputs-mtdimage` can be flashed
using the vendor web UI or the U-Boot emergency "unbrick" routine. using the vendor web UI or the U-Boot emergency "unbrick" routine.
For flashing from an existing Liminix system (we think) it Flashing over an existing Liminix system is not possible while
is necessary to first boot into a :ref:`system-outputs-kexecboot` that system is running, otherwise you'll be overwriting flash
system, otherwise you'll be overwriting flash partitions while partitions while they're in use - and that might not end well.
they're in use - and that might not end well. Configure the system with :ref:`levitate` if you need to
make it upgradable.
Vendor web page: https://www.gl-inet.com/products/gl-mt300a/ Vendor web page: https://www.gl-inet.com/products/gl-mt300a/

View File

@ -25,10 +25,11 @@
binary created by :ref:`system-outputs-mtdimage` can be flashed binary created by :ref:`system-outputs-mtdimage` can be flashed
using the vendor web UI or the U-Boot emergency "unbrick" routine. using the vendor web UI or the U-Boot emergency "unbrick" routine.
For flashing from an existing Liminix system (we think) it Flashing over an existing Liminix system is not possible while
is necessary to first boot into a :ref:`system-outputs-kexecboot` that system is running, otherwise you'll be overwriting flash
system, otherwise you'll be overwriting flash partitions while partitions while they're in use - and that might not end well.
they're in use - and that might not end well. Configure the system with :ref:`levitate` if you need to
make it upgradable.
Vendor web page: https://www.gl-inet.com/products/gl-mt300n-v2/ Vendor web page: https://www.gl-inet.com/products/gl-mt300n-v2/

View File

@ -22,7 +22,6 @@
./outputs/ext4fs.nix ./outputs/ext4fs.nix
./outputs/initramfs.nix ./outputs/initramfs.nix
./outputs/jffs2.nix ./outputs/jffs2.nix
./outputs/kexecboot.nix
./outputs/mtdimage.nix ./outputs/mtdimage.nix
./outputs/tftpboot.nix ./outputs/tftpboot.nix
./outputs/ubifs.nix ./outputs/ubifs.nix

View File

@ -1,65 +0,0 @@
{
config
, pkgs
, lib
, ...
}:
let
inherit (lib) mkOption types concatStringsSep;
in {
imports = [ ../ramdisk.nix ];
options.system.outputs = {
kexecboot = mkOption {
type = types.package;
description = ''
kexecboot
*********
Directory containing files needed for kexec booting.
Can be copied onto the target device using ssh or similar
'';
};
boot-sh = mkOption {
type = types.package;
description = ''
Shell script to run on the target device that invokes
kexec with appropriate options
'';
};
};
config = {
boot.ramdisk.enable = true;
system.outputs = {
kexecboot =
let o = config.system.outputs; in
pkgs.runCommand "kexecboot" {} ''
mkdir $out
cd $out
ln -s ${o.rootfs} rootfs
ln -s ${o.kernel} kernel
ln -s ${o.manifest} manifest
ln -s ${o.boot-sh} boot.sh
ln -s ${pkgs.kexec-tools-static}/bin/kexec ./kexec
ln -s ${o.dtb} dtb
'';
boot-sh =
let
inherit (config.system.outputs) rootfs;
cmdline = concatStringsSep " " config.boot.commandLine;
in
pkgs.buildPackages.runCommand "boot.sh.sh" {
} ''
rootfsStart=${toString (100 * 1024 * 1024)}
rootfsBytes=$(stat -L -c %s ${rootfs})
append_cmd="mtdparts=phram0:''${rootfsBytes}(rootfs) phram.phram=phram0,''${rootfsStart},''${rootfsBytes} memmap=''${rootfsBytes}\$''${rootfsStart}";
cat > $out <<EOF
#!/bin/sh
test -d \$1
cd \$1
./kexec -f -d --map-file rootfs@$rootfsStart --dtb dtb --command-line '${cmdline} $append_cmd' kernel
EOF
'';
};
};
}

View File

@ -34,7 +34,8 @@ in {
This creates an image called :file:`firmware.bin` suitable for This creates an image called :file:`firmware.bin` suitable for
squashfs or jffs2 systems. It can be flashed from U-Boot (if squashfs or jffs2 systems. It can be flashed from U-Boot (if
you have a serial console connection), or on some devices from you have a serial console connection), or on some devices from
the vendor firmware, or from a Liminix kexecboot system. the vendor firmware, or from Liminix when using
:ref:`levitate`
If you are flashing from U-Boot, the file If you are flashing from U-Boot, the file
:file:`flash.scr` is a sequence of commands :file:`flash.scr` is a sequence of commands

View File

@ -7,8 +7,7 @@ in {
ramdisk = { ramdisk = {
enable = mkEnableOption '' enable = mkEnableOption ''
reserving part of memory as reserving part of memory as
an MTD-based RAM disk. Needed for TFTP booting or for an MTD-based RAM disk. Needed for TFTP booting
kexec-based revertable upgrade
''; '';
}; };
}; };