summaryrefslogtreecommitdiffstats
path: root/core/modules/qemu-src
diff options
context:
space:
mode:
authorSimon Rettberg2022-07-26 10:32:04 +0200
committerSimon Rettberg2022-07-26 10:32:04 +0200
commit7bb183a63e5dbed36b8fbc08ab7d57a4c1abb5e0 (patch)
tree6c221caccbbda56f84ab72fe0d6446a26b0cd356 /core/modules/qemu-src
parent[disk-partitions] Enable discard=pages for thinpool swap (diff)
downloadmltk-7bb183a63e5dbed36b8fbc08ab7d57a4c1abb5e0.tar.gz
mltk-7bb183a63e5dbed36b8fbc08ab7d57a4c1abb5e0.tar.xz
mltk-7bb183a63e5dbed36b8fbc08ab7d57a4c1abb5e0.zip
[qemu-src] Fix messed up version check; do what comment says
Diffstat (limited to 'core/modules/qemu-src')
-rw-r--r--core/modules/qemu-src/module.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/modules/qemu-src/module.build b/core/modules/qemu-src/module.build
index e474189a..2c7eb1cb 100644
--- a/core/modules/qemu-src/module.build
+++ b/core/modules/qemu-src/module.build
@@ -6,7 +6,7 @@ fetch_source() {
local ver="$(( cat "${MODULE_WORK_DIR}/src/qemu/VERSION" ))"
ver="${ver%%.*}"
- if (( ver == 7 )); then
+ if (( ver == 6 )); then
# patch EDK2 version to retrieve EDK2 submodules
git -C "${MODULE_WORK_DIR}/src/qemu/roms/edk2" checkout edk2-stable202108 \
|| perror "Failed to checkout new EDK2 version!"