Skip to content

Commit

Permalink
fix: use custom linux kernel
Browse files Browse the repository at this point in the history
  • Loading branch information
utibeabasi6 committed Jan 28, 2024
1 parent 2dd7a18 commit 602cdd6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

```

Expand Down
2 changes: 1 addition & 1 deletion internal/vm/config.go
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 602cdd6

Please sign in to comment.