aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2014-05-13 12:55:32 +0000
committerJo-Philipp Wich <jow@openwrt.org>2014-05-13 12:55:32 +0000
commitc420e332c9dd8892a4cc649d11d3bc9c8c6e2540 (patch)
tree4fe75d603b393fa259def031ae9ce714b9a5045e
parent2d4a06d164e56b77c520ef7c0db81dcc17615a2f (diff)
downloadupstream-c420e332c9dd8892a4cc649d11d3bc9c8c6e2540.tar.gz
upstream-c420e332c9dd8892a4cc649d11d3bc9c8c6e2540.tar.bz2
upstream-c420e332c9dd8892a4cc649d11d3bc9c8c6e2540.zip
AA: x86: don't use /dev/vda2 for kvm guest, its not used since a long time
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/branches/attitude_adjustment@40757 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r--target/linux/x86/image/Config.in3
1 files changed, 1 insertions, 2 deletions
diff --git a/target/linux/x86/image/Config.in b/target/linux/x86/image/Config.in
index 08880e5803..4fb3ca282d 100644
--- a/target/linux/x86/image/Config.in
+++ b/target/linux/x86/image/Config.in
@@ -98,9 +98,8 @@ config TARGET_KERNEL_PARTSIZE
config TARGET_ROOTFS_PARTNAME
string "Root partition on target device"
depends OLPC_BOOTSCRIPT_IMAGES || X86_GRUB_IMAGES
- default "/dev/vda2" if TARGET_x86_kvm_guest
default "/dev/xvda2" if TARGET_x86_xen_domu
- default "/dev/sda2" if ! (TARGET_x86_kvm_guest || TARGET_x86_xen_domu)
+ default "/dev/sda2" if ! TARGET_x86_xen_domu
help
The root partition on the final device. If you don't know,
you probably want the default (/dev/sda2).