forked from dan/liminix
didn't need u-boot
This commit is contained in:
parent
56d679416f
commit
c948a9b49a
28
default.nix
28
default.nix
@ -16,7 +16,6 @@ let
|
|||||||
];
|
];
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
pkgsNative = pkgs.pkgsBuildBuild;
|
|
||||||
|
|
||||||
config = (pkgs.lib.evalModules {
|
config = (pkgs.lib.evalModules {
|
||||||
modules = [
|
modules = [
|
||||||
@ -50,19 +49,16 @@ in {
|
|||||||
# cross-compiling nix-shell for any package we're customizing
|
# cross-compiling nix-shell for any package we're customizing
|
||||||
inherit pkgs;
|
inherit pkgs;
|
||||||
|
|
||||||
buildEnv =
|
buildEnv = pkgs.mkShell {
|
||||||
pkgs.mkShell {
|
packages = with pkgs.pkgsBuildBuild; [
|
||||||
packages =
|
tufted
|
||||||
with pkgsNative; [
|
routeros.routeros
|
||||||
tufted
|
routeros.ros-exec-script
|
||||||
routeros.routeros
|
mips-vm
|
||||||
routeros.ros-exec-script
|
borderVm.build.vm
|
||||||
borderVm.build.vm
|
go-l2tp
|
||||||
go-l2tp
|
min-copy-closure
|
||||||
min-copy-closure
|
fennelrepl
|
||||||
fennelrepl
|
];
|
||||||
(mips-vm.override { inherit (pkgs) ubootQemuAarch64; })
|
};
|
||||||
];
|
|
||||||
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
@ -1,14 +1,12 @@
|
|||||||
{
|
{
|
||||||
qemu
|
qemu
|
||||||
, socat
|
, socat
|
||||||
, ubootQemuAarch64
|
|
||||||
, writeShellScriptBin
|
, writeShellScriptBin
|
||||||
, symlinkJoin
|
, symlinkJoin
|
||||||
, lib
|
, lib
|
||||||
}: let
|
}: let
|
||||||
mips-vm = writeShellScriptBin "mips-vm" ''
|
mips-vm = writeShellScriptBin "mips-vm" ''
|
||||||
export PATH="${lib.makeBinPath [qemu]}:$PATH"
|
export PATH="${lib.makeBinPath [qemu]}:$PATH"
|
||||||
export UBOOT=${ubootQemuAarch64}/u-boot.bin
|
|
||||||
${builtins.readFile ./mips-vm.sh}
|
${builtins.readFile ./mips-vm.sh}
|
||||||
'';
|
'';
|
||||||
connect = writeShellScriptBin "connect-vm" ''
|
connect = writeShellScriptBin "connect-vm" ''
|
||||||
|
@ -48,7 +48,7 @@ qemu-system-aarch64 \
|
|||||||
-echr 16 \
|
-echr 16 \
|
||||||
-append "liminix default earlycon=smh console=ttyAMA0,38400n8 panic=10 oops=panic init=$INIT loglevel=8 root=/dev/mtdblock0 block2mtd.block2mtd=/dev/vda,65536" \
|
-append "liminix default earlycon=smh console=ttyAMA0,38400n8 panic=10 oops=panic init=$INIT loglevel=8 root=/dev/mtdblock0 block2mtd.block2mtd=/dev/vda,65536" \
|
||||||
-semihosting \
|
-semihosting \
|
||||||
-cpu cortex-a72 -bios $UBOOT \
|
-cpu cortex-a72 \
|
||||||
-drive file=$rootfs,format=raw,readonly=off,if=virtio,index=0 \
|
-drive file=$rootfs,format=raw,readonly=off,if=virtio,index=0 \
|
||||||
${initramfs} \
|
${initramfs} \
|
||||||
-netdev socket,id=access,mcast=230.0.0.1:1234,localaddr=127.0.0.1 \
|
-netdev socket,id=access,mcast=230.0.0.1:1234,localaddr=127.0.0.1 \
|
||||||
|
Loading…
Reference in New Issue
Block a user