remove jffs2boot target

It's not needed now initramfs is compiled into the kernel.
This commit is contained in:
Daniel Barlow 2023-04-23 11:31:48 +01:00
parent 3595e36294
commit 2c4f8b823e
2 changed files with 2 additions and 12 deletions

View file

@ -5,7 +5,7 @@
let img = (import liminix {
device = import "${liminix}/devices/qemu/";
liminix-config = ./configuration.nix;
}).outputs.jffs2boot;
}).outputs.vmroot;
pkgs = import <nixpkgs> { overlays = [(import ../../overlay.nix)]; };
inherit (pkgs.pkgsBuildBuild) routeros mips-vm;
in pkgs.runCommand "check" {
@ -39,6 +39,6 @@ fatal(){
trap fatal ERR
mkdir vm
mips-vm --background ./vm ${img}/vmlinux ${img}/rootfs ${img}/initramfs
mips-vm --background ./vm ${img}/vmlinux ${img}/rootfs
expect ${./script.expect} >$out
''