aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2014-10-27 14:35:39 +0000
committerJo-Philipp Wich <jow@openwrt.org>2014-10-27 14:35:39 +0000
commit1eb6640612d7464af4ba87a77bd071cb7eb1e342 (patch)
tree5c43b57be2b048e39aab75cc18c4b56b589d9259
parent2ab0dae9915d5c7c1c06c26ce1956bf0badd7a5b (diff)
downloadupstream-1eb6640612d7464af4ba87a77bd071cb7eb1e342.tar.gz
upstream-1eb6640612d7464af4ba87a77bd071cb7eb1e342.tar.bz2
upstream-1eb6640612d7464af4ba87a77bd071cb7eb1e342.zip
config: use PARTUUID by default on x86_64
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org> SVN-Revision: 43086
-rw-r--r--config/Config-images.in7
1 files changed, 4 insertions, 3 deletions
diff --git a/config/Config-images.in b/config/Config-images.in
index eca2d75b01..5c2e79e41e 100644
--- a/config/Config-images.in
+++ b/config/Config-images.in
@@ -268,10 +268,11 @@ menu "Target Images"
string "Root partition on target device"
depends on OLPC_BOOTSCRIPT_IMAGES || GRUB_IMAGES
default "/dev/xvda2" if TARGET_x86_xen_domu
- default "/dev/sda2" if ! TARGET_x86_xen_domu
+ default "/dev/sda2" if TARGET_x86 && ! TARGET_x86_xen_domu
help
- The root partition on the final device. If you don't know,
- you probably want the default (/dev/sda2).
+ Override the root partition on the final device. If left empty,
+ it will be mounted by PARTUUID which makes the kernel find the
+ appropriate disk automatically.
menuconfig TARGET_ROOTFS_INCLUDE_KERNEL
ef='#n160'>160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198