summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2012-04-22 15:47:30 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-04-22 15:56:42 +0100
commit8558c3e1f4c380e78fcdaa111cb21564cfd63a63 (patch)
tree4a0c2db3da1c600fd2dc138ed25db1f10f65be78 /meta
parent0bfb42dbb6f0fa93e640108e0d6a9224d99a2adf (diff)
downloadpoky-8558c3e1f4c380e78fcdaa111cb21564cfd63a63.tar.gz
initramfs-live-boot: Disable unionfs until its issue with the system rootdir are resolved
There are issues with the current unionfs when making a union mount over "/". Until these are resolved we can't use unionfs for live booting so disable this temporarily as a workaround. unionfs is usable in other circumstances. [YOCTO #2331 workaround] (From OE-Core rev: 60ee26ae23132b916019d58e20b8c2e1ddd2b471) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/recipes-core/initrdscripts/initramfs-live-boot_1.0.bb9
1 files changed, 5 insertions, 4 deletions
diff --git a/meta/recipes-core/initrdscripts/initramfs-live-boot_1.0.bb b/meta/recipes-core/initrdscripts/initramfs-live-boot_1.0.bb
index 8f7511eadd..137a40106e 100644
--- a/meta/recipes-core/initrdscripts/initramfs-live-boot_1.0.bb
+++ b/meta/recipes-core/initrdscripts/initramfs-live-boot_1.0.bb
@@ -5,12 +5,13 @@ RDEPENDS = "udev"
5DEPENDS = "virtual/kernel" 5DEPENDS = "virtual/kernel"
6SRC_URI = "file://init-live.sh" 6SRC_URI = "file://init-live.sh"
7 7
8PR = "r9" 8PR = "r10"
9 9
10do_compile() { 10do_compile() {
11 if grep -q "CONFIG_UNION_FS=y" ${STAGING_KERNEL_DIR}/.config; then 11 #if grep -q "CONFIG_UNION_FS=y" ${STAGING_KERNEL_DIR}/.config; then
12 sed -i 's/UNIONFS="no"/UNIONFS="yes"/g' ${WORKDIR}/init-live.sh 12 # sed -i 's/UNIONFS="no"/UNIONFS="yes"/g' ${WORKDIR}/init-live.sh
13 fi 13 #fi
14 :
14} 15}
15 16
16do_install() { 17do_install() {