54a1ab3529
the jffs2 filesystem contains only /nix/store and a script which is run in early init (initramfs) and is responsible for recreating "traditional" directories (/bin /etc/**/* /var &c) based on the configuration. this is tested only in qemu so far and could use some cleanup
49 lines
1.3 KiB
Nix
49 lines
1.3 KiB
Nix
{
|
|
config
|
|
, pkgs
|
|
, lib
|
|
, ...
|
|
}:
|
|
let
|
|
inherit (lib) mkOption types concatStringsSep;
|
|
inherit (pkgs) liminix callPackage writeText closureInfo;
|
|
in
|
|
{
|
|
imports = [
|
|
./initramfs.nix
|
|
];
|
|
config = {
|
|
kernel.config.JFFS2_FS = "y";
|
|
outputs = rec {
|
|
systemConfiguration =
|
|
let inherit (pkgs.pkgsBuildBuild) systemconfig;
|
|
in systemconfig config.filesystem.contents;
|
|
jffs2fs =
|
|
let
|
|
inherit (pkgs.pkgsBuildBuild) runCommand systemconfig mtdutils;
|
|
sysconf = systemConfiguration;
|
|
in runCommand "make-jffs2" {
|
|
depsBuildBuild = [ mtdutils ];
|
|
} ''
|
|
mkdir -p $TMPDIR/empty/nix/store/
|
|
cp ${sysconf}/activate $TMPDIR/empty/activate
|
|
pkgClosure=${closureInfo { rootPaths = [ sysconf ]; }}
|
|
cp $pkgClosure/registration nix-path-registration
|
|
grafts=$(sed < $pkgClosure/store-paths 's/^\(.*\)$/--graft \1:\1/g')
|
|
mkfs.jffs2 --pad --big-endian --root $TMPDIR/empty --output $out $grafts --verbose
|
|
'';
|
|
jffs2boot =
|
|
let o = config.outputs; in
|
|
pkgs.runCommand "jffs2boot" {} ''
|
|
mkdir $out
|
|
cd $out
|
|
ln -s ${o.jffs2fs} rootfs
|
|
ln -s ${o.kernel} vmlinux
|
|
ln -s ${o.manifest} manifest
|
|
ln -s ${o.initramfs} initramfs
|
|
'';
|
|
|
|
|
|
};
|
|
};
|
|
}
|