add mtdutils mkfs.jffs2 --graft option

we'd like a bit more of the convenience of mksquashfs
(never thought I'd say _that_) for jffs2, in particular
not having to copy all the desired store paths into a
single directory just so we can create an image from them
This commit is contained in:
Daniel Barlow
2023-03-31 23:42:13 +01:00
parent e0bd64b80f
commit 98243d43da
2 changed files with 153 additions and 0 deletions

View File

@@ -14,6 +14,12 @@ let
});
in
extraPkgs // {
mtdutils = prev.mtdutils.overrideAttrs(o: {
patches = (if o ? patches then o.patches else []) ++ [
./pkgs/mtdutils/0001-mkfs.jffs2-add-graft-option.patch
];
});
strace = prev.strace.override { libunwind = null; };
kexec-tools-static = prev.kexec-tools.overrideAttrs(o: {