diff options
author | Imre Kaloz <kaloz@openwrt.org> | 2013-11-22 09:54:36 +0000 |
---|---|---|
committer | Imre Kaloz <kaloz@openwrt.org> | 2013-11-22 09:54:36 +0000 |
commit | 4242b42880c535007e68cc1bedbe83a4aef36814 (patch) | |
tree | 003811ff445dd97c5e831578c3a6cf4e381dcfe8 | |
parent | 4c65eebf06dc6131c38b9cbe3db0771b582cd72b (diff) | |
download | master-31e0f0ae-4242b42880c535007e68cc1bedbe83a4aef36814.tar.gz master-31e0f0ae-4242b42880c535007e68cc1bedbe83a4aef36814.tar.bz2 master-31e0f0ae-4242b42880c535007e68cc1bedbe83a4aef36814.zip |
VMWare and VirtualBox images should select what they need, not depend on it..
Signed-off-by: Imre Kaloz <kaloz@openwrt.org>
SVN-Revision: 38892
-rw-r--r-- | target/linux/x86/image/Config.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/target/linux/x86/image/Config.in b/target/linux/x86/image/Config.in index 869d6a0fa7..1b88432f38 100644 --- a/target/linux/x86/image/Config.in +++ b/target/linux/x86/image/Config.in @@ -56,14 +56,14 @@ config X86_GRUB_TIMEOUT config X86_VDI_IMAGES bool "Build VirtualBox image files (VDI)" - depends on X86_GRUB_IMAGES - depends on TARGET_ROOTFS_EXT4FS + select X86_GRUB_IMAGES + select TARGET_ROOTFS_EXT4FS select PACKAGE_kmod-pcnet32 config X86_VMDK_IMAGES bool "Build VMware image files (VMDK)" - depends on X86_GRUB_IMAGES - depends on TARGET_ROOTFS_EXT4FS + select X86_GRUB_IMAGES + select TARGET_ROOTFS_EXT4FS select PACKAGE_kmod-e1000 |