diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2022-02-15 18:26:39 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2022-02-15 18:26:39 +0100 |
commit | 7833b797b8907c1e1b8981d9f586ed6adc7686c6 (patch) | |
tree | 68b91434db6262606c1ea2754ef92df7157df96e /target/x86 | |
parent | 7ccb3f48292ce2404708a02c3202698c4a41d825 (diff) |
remove virtualbox support
Diffstat (limited to 'target/x86')
-rw-r--r-- | target/x86/Makefile | 5 | ||||
-rw-r--r-- | target/x86/kernel/vbox-x86 | 4 | ||||
-rw-r--r-- | target/x86/systems/vbox-x86 | 9 |
3 files changed, 0 insertions, 18 deletions
diff --git a/target/x86/Makefile b/target/x86/Makefile index b47da2b42..b9bbc72a3 100644 --- a/target/x86/Makefile +++ b/target/x86/Makefile @@ -45,11 +45,6 @@ else @echo 'qemu-system-${QEMU_ARCH} ${QEMU_ARGS} -kernel $(FW_DIR)/$(TARGET_KERNEL) qemu-${ADK_TARGET_CPU_ARCH}.img' endif endif -ifeq ($(ADK_TARGET_VBOX),y) - @cp $(KERNEL) $(FW_DIR)/$(TARGET_KERNEL) - @echo "Use following command to create a VirtualBox Image:" - @echo "./scripts/create.sh -g -T vdi vbox-${ADK_TARGET_CPU_ARCH}.img $(FW_DIR)/$(ROOTFSTARBALL)" -endif endif ifeq ($(ADK_TARGET_FS),initramfs) targethelp: diff --git a/target/x86/kernel/vbox-x86 b/target/x86/kernel/vbox-x86 deleted file mode 100644 index 849852a65..000000000 --- a/target/x86/kernel/vbox-x86 +++ /dev/null @@ -1,4 +0,0 @@ -CONFIG_X86=y -CONFIG_X86_32=y -CONFIG_SERIAL_8250=y -CONFIG_SERIAL_8250_CONSOLE=y diff --git a/target/x86/systems/vbox-x86 b/target/x86/systems/vbox-x86 deleted file mode 100644 index 7577554bf..000000000 --- a/target/x86/systems/vbox-x86 +++ /dev/null @@ -1,9 +0,0 @@ -config ADK_TARGET_SYSTEM_VBOX_X86 - bool "VirtualBox Emulator" - select ADK_TARGET_VBOX - select ADK_TARGET_KERNEL_BZIMAGE - select ADK_TARGET_KERNEL_WITH_COMPRESSION - select ADK_PACKAGE_GRUB - help - Support for VirtualBox Emulator. - |