From 06561137fd1f54e8c4d896fa7cec0342839a1e05 Mon Sep 17 00:00:00 2001 From: Alex Zenla Date: Mon, 19 Feb 2024 01:32:32 +0000 Subject: [PATCH] kernel: copy kernel to kernel/target --- README.md | 2 +- kernel/config.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f5b0b1e..677ac35 100644 --- a/README.md +++ b/README.md @@ -80,7 +80,7 @@ GRUB_CMDLINE_XEN_DEFAULT="dom0_mem=4G,max:4G" $ ./kernel/build.sh -j4 ``` -4. Copy the guest kernel image to `/var/lib/hypha/default/kernel` to have it automatically detected by hyphactl. +4. Copy the guest kernel image at `kernel/target/kernel` to `/var/lib/hypha/default/kernel` to have it automatically detected by hyphactl. 5. Launch `./scripts/hyphanet-debug.sh` and keep it running in the foreground. 6. Run hyphactl to launch a container: diff --git a/kernel/config.sh b/kernel/config.sh index 99aff4f..27d02b8 100644 --- a/kernel/config.sh +++ b/kernel/config.sh @@ -2,4 +2,4 @@ KERNEL_VERSION="6.7.5" KERNEL_SRC_URL="https://cdn.kernel.org/pub/linux/kernel/v6.x/linux-${KERNEL_VERSION}.tar.xz" SRC_DIR_NAME="linux-${KERNEL_VERSION}" -OUTPUT_DIR_NAME="out" +OUTPUT_DIR_NAME="target"