From 87f38cad6140a10f436ba4d60b52735cc545bc63 Mon Sep 17 00:00:00 2001 From: Florian Klink Date: Mon, 1 Jul 2024 09:37:42 +0300 Subject: fix(tvix/boot): use shrunk kernel image The aarch64-linux version of this is too big for cloud-hypervisor to accept. The correct place for this is in `${kernel}/${stdenv.hostPlatform.linux-kernel.target}`, the other output is only useful for debugging purposes. This gets cloud-hypervisor to start booting up the kernel. It still doesn't boot successfully, but it's getting further. Part of b/407. Change-Id: I3fbe52597fb1a6f5728a7f375dd35b50e00b3b1a Co-Authored-By: Alyssa Ross Reviewed-on: https://cl.tvl.fyi/c/depot/+/11905 Tested-by: BuildkiteCI Reviewed-by: Alyssa Ross Autosubmit: flokli --- tvix/boot/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tvix/boot/default.nix') diff --git a/tvix/boot/default.nix b/tvix/boot/default.nix index 85995ffbf2c5..7be05c815cdc 100644 --- a/tvix/boot/default.nix +++ b/tvix/boot/default.nix @@ -99,7 +99,7 @@ rec { --memory mergeable=on,shared=on,size=$CH_MEM_SIZE \ --console null \ --serial tty \ - --kernel ${kernel.dev}/vmlinux \ + --kernel ${kernel}/${pkgs.stdenv.hostPlatform.linux-kernel.target} \ --initramfs ${initrd} \ --cmdline "console=ttyS0 $CH_CMDLINE" \ --fs tag=tvix,socket=$tempdir/tvix.sock,num_queues=''${CH_NUM_CPU},queue_size=512 -- cgit 1.4.1