From d65d683dfcb4b5d209bcef4c4be0f024e657e20d Mon Sep 17 00:00:00 2001 From: Mikhail Klementev Date: Sun, 9 Apr 2023 14:16:29 +0000 Subject: [PATCH] Fix name of ubuntu image generator --- .github/workflows/ubuntu.yml | 2 +- qemu/README.md | 2 +- qemu/test.config.go | 8 ++++---- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml index 4d4c1e6..27346ea 100644 --- a/.github/workflows/ubuntu.yml +++ b/.github/workflows/ubuntu.yml @@ -24,7 +24,7 @@ jobs: sudo apt-get install qemu-system-x86 - name: Bootstrap - run: ./tools/qemu-debian-img/bootstrap.sh + run: ./tools/qemu-ubuntu-img/bootstrap.sh - name: Unit Testing run: go test -parallel 1 -v ./... diff --git a/qemu/README.md b/qemu/README.md index 67aea76..aec37db 100644 --- a/qemu/README.md +++ b/qemu/README.md @@ -30,7 +30,7 @@ Note: qemu on macOS since v2.12 (24 April 2018) supports Hypervisor.framework. #### Generate image - $ cd $GOPATH/src/code.dumpstack.io/tools/out-of-tree/tools/qemu-debian-img + $ cd $GOPATH/src/code.dumpstack.io/tools/out-of-tree/tools/qemu-ubuntu-img $ ./bootstrap.sh ### Fill configuration file diff --git a/qemu/test.config.go b/qemu/test.config.go index 846398a..e8be113 100644 --- a/qemu/test.config.go +++ b/qemu/test.config.go @@ -4,7 +4,7 @@ package qemu -const testConfigVmlinuz = "../tools/qemu-debian-img/ubuntu2204.vmlinuz" -const testConfigInitrd = "../tools/qemu-debian-img/ubuntu2204.initrd" -const testConfigRootfs = "../tools/qemu-debian-img/ubuntu2204.img" -const testConfigSampleKo = "../tools/qemu-debian-img/ubuntu2204.ko" +const testConfigVmlinuz = "../tools/qemu-ubuntu-img/ubuntu2204.vmlinuz" +const testConfigInitrd = "../tools/qemu-ubuntu-img/ubuntu2204.initrd" +const testConfigRootfs = "../tools/qemu-ubuntu-img/ubuntu2204.img" +const testConfigSampleKo = "../tools/qemu-ubuntu-img/ubuntu2204.ko"