2024-02-18 21:35:27 +00:00
|
|
|
## Boot blessing via Zyxel
|
|
|
|
## =======================
|
|
|
|
## Boot blessing is the process to bless a particular boot configuration
|
|
|
|
## It is commonly encountered in devices with redundant partitions
|
|
|
|
## for automatic recovery of broken upgrades.
|
|
|
|
## This is also known as A/B schemas, where A represents the primary partition
|
|
|
|
## and B the secondary partition used for recovery.
|
|
|
|
## To use boot blessing on Liminix, you need to have the support of
|
|
|
|
## your bootloader to help you boot on the secondary partition in case of
|
|
|
|
## failure on the primary partition. The exact details are specifics to your device.
|
|
|
|
## See the Zyxel NWA50AX for an example.
|
|
|
|
## TODO: generalize this module.
|
2025-02-10 21:55:08 +00:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
pkgs,
|
|
|
|
...
|
|
|
|
}:
|
2024-02-18 21:35:27 +00:00
|
|
|
let
|
|
|
|
inherit (lib) mkOption types;
|
|
|
|
inherit (pkgs) liminix;
|
|
|
|
in
|
|
|
|
{
|
|
|
|
options.boot.zyxel-dual-image = mkOption {
|
|
|
|
type = liminix.lib.types.serviceDefn;
|
|
|
|
};
|
|
|
|
|
2024-07-15 18:00:08 +00:00
|
|
|
config.boot.zyxel-dual-image = config.system.callService ./service.nix {
|
2024-02-18 21:35:27 +00:00
|
|
|
ensureActiveImage = mkOption {
|
2025-02-10 21:55:08 +00:00
|
|
|
type = types.enum [
|
|
|
|
"primary"
|
|
|
|
"secondary"
|
|
|
|
];
|
2024-02-18 21:35:27 +00:00
|
|
|
default = "primary";
|
2025-02-10 21:55:08 +00:00
|
|
|
description = ''
|
|
|
|
At boot, ensure that the active image is the one specified.
|
2024-02-18 21:35:27 +00:00
|
|
|
|
2025-02-10 21:55:08 +00:00
|
|
|
If you are already on a broken image, you need to manually boot
|
|
|
|
into the right image via `atgo <image index>` in U-Boot.
|
2024-02-18 21:35:27 +00:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
kernelCommandLineSource = mkOption {
|
2025-02-10 21:55:08 +00:00
|
|
|
type = types.enum [
|
|
|
|
"/proc/cmdline"
|
|
|
|
"/proc/device-tree/chosen/bootargs"
|
|
|
|
];
|
2024-02-18 21:35:27 +00:00
|
|
|
default = "/proc/device-tree/chosen/bootargs";
|
2025-02-10 21:55:08 +00:00
|
|
|
description = ''
|
|
|
|
Kernel command line arguments source file.
|
|
|
|
On MIPS, Liminix embeds the kernel command line in /proc/device-tree/chosen/bootargs-override.
|
2024-02-18 21:35:27 +00:00
|
|
|
|
2025-02-10 21:55:08 +00:00
|
|
|
In this instance, it does not get concatenated with `/proc/cmdline`.
|
|
|
|
Therefore you may prefer to source it from another place, like `/proc/device-tree/chosen/bootargs`.
|
2024-02-18 21:35:27 +00:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
primaryMtdPartition = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
description = "Primary MTD partition device node, i.e. for image 0.";
|
|
|
|
};
|
|
|
|
|
|
|
|
secondaryMtdPartition = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
description = "Secondary MTD partition device node, i.e. for image 1.";
|
|
|
|
};
|
|
|
|
|
|
|
|
bootConfigurationMtdPartition = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
description = "Boot configuration MTD partition device node.";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|