diff options
author | Manuel Bentele | 2021-06-25 12:03:47 +0200 |
---|---|---|
committer | Manuel Bentele | 2021-06-25 12:03:47 +0200 |
commit | ab828877dc37ba012fc1264d6b0ef30f4665acaf (patch) | |
tree | 7dbc920992f7cb602287be978a965bab82342d0b | |
parent | [openjdk-8-jre-headless] Remove build support of Java 8 JRE for MiniLinux (diff) | |
download | mltk-ab828877dc37ba012fc1264d6b0ef30f4665acaf.tar.gz mltk-ab828877dc37ba012fc1264d6b0ef30f4665acaf.tar.xz mltk-ab828877dc37ba012fc1264d6b0ef30f4665acaf.zip |
[qemu] Remove build support for MiniLinux
-rw-r--r-- | core/modules/qemu/module.build | 6 | ||||
-rw-r--r-- | core/modules/qemu/module.conf | 32 | ||||
-rw-r--r-- | core/modules/qemu/module.conf.ubuntu | 2 |
3 files changed, 3 insertions, 37 deletions
diff --git a/core/modules/qemu/module.build b/core/modules/qemu/module.build index d1d9a691..4d86de96 100644 --- a/core/modules/qemu/module.build +++ b/core/modules/qemu/module.build @@ -9,12 +9,6 @@ fetch_source() { } build() { - # copy mandatory system packages - COPYLIST="list_dpkg_output" - [ -e "${COPYLIST}" ] && rm "${COPYLIST}" - list_packet_files >> "${COPYLIST}" - tarcopy "$(cat "${COPYLIST}" | sort -u)" "${MODULE_BUILD_DIR}" - # build qemu runvirt plugin local build_dir="${MODULE_WORK_DIR}/src/runvirt-plugin-qemu" mvn -f "${build_dir}" clean package || perror "Could not build runvirt-plugin-qemu with Maven!" diff --git a/core/modules/qemu/module.conf b/core/modules/qemu/module.conf index def35459..c1cdf05d 100644 --- a/core/modules/qemu/module.conf +++ b/core/modules/qemu/module.conf @@ -5,32 +5,6 @@ REQUIRED_MODULES=" openjdk-8-jre-headless " -REQUIRED_BINARIES=" - ivshmem-client - ivshmem-server - kvm - qemu-img - qemu-io - qemu-nbd - qemu-pr-helper - qemu-system-aarch64 - qemu-system-arm - qemu-system-i386 - qemu-system-x86_64 - virtfs-proxy-helper - qemu-make-debian-root - qemu-bridge-helper - vhost-user-gpu -" - -REQUIRED_DIRECTORIES=" - /etc - /usr/share/ovmf - /usr/share/OVMF - /usr/share/qemu - /usr/share/seabios -" - -REQUIRED_FILES=" - /opt/openslx/share/java/runvirt-plugin-qemu.jar -" +REQUIRED_BINARIES="" +REQUIRED_LIBRARIES="" +REQUIRED_DIRECTORIES="" diff --git a/core/modules/qemu/module.conf.ubuntu b/core/modules/qemu/module.conf.ubuntu index 5f9bc981..3b1089e0 100644 --- a/core/modules/qemu/module.conf.ubuntu +++ b/core/modules/qemu/module.conf.ubuntu @@ -1,8 +1,6 @@ #!/bin/bash REQUIRED_INSTALLED_PACKAGES=" - qemu - qemu-kvm maven openjdk-8-jdk-headless " |