2023-12-04 13:08:13 +00:00
|
|
|
{
|
2025-02-10 21:55:08 +00:00
|
|
|
config,
|
|
|
|
pkgs,
|
|
|
|
lib,
|
|
|
|
...
|
2023-12-04 13:08:13 +00:00
|
|
|
}:
|
|
|
|
let
|
2025-02-10 21:55:08 +00:00
|
|
|
inherit (lib)
|
|
|
|
mkIf
|
|
|
|
mkOption
|
|
|
|
types
|
|
|
|
concatStringsSep
|
|
|
|
optionalString
|
|
|
|
;
|
2023-12-04 13:08:13 +00:00
|
|
|
in
|
2025-02-10 21:55:08 +00:00
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
./initramfs.nix
|
|
|
|
./ubifs.nix
|
|
|
|
];
|
2023-12-04 13:08:13 +00:00
|
|
|
|
2025-02-10 21:55:08 +00:00
|
|
|
options.hardware.ubi = {
|
|
|
|
minIOSize = mkOption { type = types.str; };
|
|
|
|
eraseBlockSize = mkOption { type = types.str; }; # LEB
|
|
|
|
maxLEBcount = mkOption { type = types.str; }; # LEB
|
|
|
|
};
|
|
|
|
options.system.outputs.ubivolume = mkOption {
|
|
|
|
type = types.package;
|
|
|
|
};
|
2023-12-04 13:08:13 +00:00
|
|
|
|
2025-02-10 21:55:08 +00:00
|
|
|
config = mkIf (config.rootfsType == "ubifs") {
|
|
|
|
kernel.config = {
|
|
|
|
MTD_UBI = "y";
|
2023-12-04 13:08:13 +00:00
|
|
|
|
2025-02-10 21:55:08 +00:00
|
|
|
UBIFS_FS = "y";
|
|
|
|
UBIFS_FS_SECURITY = "n";
|
|
|
|
};
|
|
|
|
boot.initramfs.enable = true;
|
2023-12-04 13:08:13 +00:00
|
|
|
|
2025-02-10 21:55:08 +00:00
|
|
|
system.outputs.ubivolume =
|
2023-12-04 13:08:13 +00:00
|
|
|
let
|
|
|
|
inherit (pkgs.pkgsBuildBuild) runCommand;
|
2025-02-10 21:55:08 +00:00
|
|
|
ubiVolume = (
|
|
|
|
{
|
|
|
|
name,
|
|
|
|
volumeId,
|
|
|
|
image,
|
|
|
|
flags ? [ ],
|
|
|
|
}:
|
|
|
|
''
|
|
|
|
[${name}]
|
|
|
|
mode=ubi
|
|
|
|
vol_id=${toString volumeId}
|
|
|
|
vol_type=dynamic
|
|
|
|
vol_name=${name}
|
|
|
|
vol_alignment=1
|
|
|
|
${optionalString (image != null) ''
|
|
|
|
image=${image}
|
|
|
|
''}
|
|
|
|
${optionalString (image == null) ''
|
|
|
|
vol_size=1MiB
|
|
|
|
''}
|
|
|
|
${optionalString (flags != [ ]) ''
|
|
|
|
vol_flags=${concatStringsSep "," flags}
|
|
|
|
''}
|
|
|
|
''
|
|
|
|
);
|
2023-12-04 13:08:13 +00:00
|
|
|
|
2025-02-10 21:55:08 +00:00
|
|
|
ubiImage = (
|
|
|
|
volumes:
|
|
|
|
let
|
|
|
|
ubinizeConfig = pkgs.writeText "ubinize.conf" (concatStringsSep "\n" volumes);
|
|
|
|
inherit (pkgs.pkgsBuildBuild) mtdutils;
|
|
|
|
in
|
|
|
|
runCommand "ubinize"
|
|
|
|
{
|
|
|
|
depsBuildBuild = [ mtdutils ];
|
|
|
|
# block size := 128kb
|
|
|
|
# page size := 2048
|
|
|
|
# ubninize opts := -E 5
|
|
|
|
}
|
|
|
|
''
|
|
|
|
ubinize -Q "$SOURCE_DATE_EPOCH" -o $out \
|
|
|
|
-p ${config.hardware.ubi.physicalEraseBlockSize} -m ${config.hardware.ubi.minIOSize} \
|
|
|
|
-e ${config.hardware.ubi.logicalEraseBlockSize} \
|
|
|
|
${ubinizeConfig}
|
|
|
|
''
|
|
|
|
);
|
2023-12-04 13:08:13 +00:00
|
|
|
|
2025-02-10 21:55:08 +00:00
|
|
|
ubiDisk = (
|
|
|
|
{ initramfs }:
|
|
|
|
let
|
|
|
|
initramfsUbi = ubiVolume {
|
|
|
|
name = "rootfs";
|
|
|
|
volumeId = 0;
|
|
|
|
image = initramfs;
|
|
|
|
flags = [ "autoresize" ];
|
|
|
|
};
|
|
|
|
in
|
2023-12-04 13:08:13 +00:00
|
|
|
ubiImage [
|
|
|
|
initramfsUbi
|
2025-02-10 21:55:08 +00:00
|
|
|
]
|
|
|
|
);
|
2023-12-04 13:08:13 +00:00
|
|
|
|
|
|
|
disk = ubiDisk {
|
2024-12-23 22:18:38 +00:00
|
|
|
initramfs = config.system.outputs.rootfs; # ???
|
2023-12-04 13:08:13 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
in
|
2025-02-10 21:55:08 +00:00
|
|
|
disk;
|
2023-12-04 13:08:13 +00:00
|
|
|
};
|
|
|
|
}
|