diff options
author | Patrick Ohly <patrick.ohly@intel.com> | 2015-09-03 20:42:33 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-09-06 15:24:26 +0100 |
commit | 8ca8e2e5bf4a9f01dc48300149a8e1d71d715400 (patch) | |
tree | c3eaaf51e494c728952fb3c09958a7910e035e60 /meta | |
parent | 1e29d77d0d33ee216b43022439876863f0db39bb (diff) | |
download | openembedded-core-8ca8e2e5bf4a9f01dc48300149a8e1d71d715400.tar.gz openembedded-core-8ca8e2e5bf4a9f01dc48300149a8e1d71d715400.tar.bz2 openembedded-core-8ca8e2e5bf4a9f01dc48300149a8e1d71d715400.zip |
boot-directdisk.bbclass: use rootfs UUID by default
This changes the default SYSLINUX_ROOTFS such that the rootfs is no
longer expected under a fixed device path. Instead, the UUID is used
to find it. This makes the resulting .hdddirect (and thus also the
vdi/vdmk/qcow2 images derived from that) more flexible.
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/boot-directdisk.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/boot-directdisk.bbclass b/meta/classes/boot-directdisk.bbclass index 600e21abcf..7cb0ab071f 100644 --- a/meta/classes/boot-directdisk.bbclass +++ b/meta/classes/boot-directdisk.bbclass @@ -60,7 +60,7 @@ inherit ${EFI_CLASS} AUTO_SYSLINUXCFG = "1" DISK_SIGNATURE ?= "${DISK_SIGNATURE_GENERATED}" -SYSLINUX_ROOT ?= "root=/dev/sda2" +SYSLINUX_ROOT ?= "root=UUID=<<uuid-of-rootfs>>" SYSLINUX_TIMEOUT ?= "10" IS_VM = '${@bb.utils.contains_any("IMAGE_FSTYPES", ["vmdk", "vdi", "qcow2"], "true", "false", d)}' |