diff --git a/README.md b/README.md index 90f73e2..d1b0170 100644 --- a/README.md +++ b/README.md @@ -61,8 +61,8 @@ mkdir /root/fckernels /root/fcsockets /root/fcruntimes #### Download Kernel and Runtime root filesystem ```bash -cd /root/fcruntimes && wget https://terraform-20231223074656017300000001.s3.amazonaws.com/rootfs/nodejs-runtime/nodejs-runtime.ext4 -cd /root/fckernels && curl -fsSL -o hello-vmlinux.bin https://s3.amazonaws.com/spec.ccfc.min/img/hello/kernel/hello-vmlinux.bin +cd /root/fcruntimes && wget https://terraform-20231223074656017300000001.s3.amazonaws.com/runtimes/nodejs-runtime.ext4 +cd /root/fckernels && wget https://terraform-20231223074656017300000001.s3.amazonaws.com/kernels/vmlinux ``` diff --git a/internal/vm/config.go b/internal/vm/config.go index 9b8ba16..f569d12 100644 --- a/internal/vm/config.go +++ b/internal/vm/config.go @@ -1,7 +1,7 @@ package vm var ( - KERNEL_IMAGE_PATH = "/root/fckernels/hello-vmlinux.bin" + KERNEL_IMAGE_PATH = "/root/fckernels/vmlinux" KERNEL_ARGS = "console=ttyS0 reboot=k panic=1 pci=off" DEFAULT_CPU_COUNT int64 = 1 DEFAULT_MEMORY_COUNT int64 = 512