| Submitter | Richard Purdie |
|---|---|
| Date | April 22, 2012, 2:47 p.m. |
| Message ID | <1335106050.12692.29.camel@ted> |
| Download | mbox | patch |
| Permalink | /patch/26305/ |
| State | Accepted |
| Commit | 60ee26ae23132b916019d58e20b8c2e1ddd2b471 |
| Headers | show |
Comments
Patch
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 8f7511e..137a401 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" DEPENDS = "virtual/kernel" SRC_URI = "file://init-live.sh" -PR = "r9" +PR = "r10" do_compile() { - if grep -q "CONFIG_UNION_FS=y" ${STAGING_KERNEL_DIR}/.config; then - sed -i 's/UNIONFS="no"/UNIONFS="yes"/g' ${WORKDIR}/init-live.sh - fi + #if grep -q "CONFIG_UNION_FS=y" ${STAGING_KERNEL_DIR}/.config; then + # sed -i 's/UNIONFS="no"/UNIONFS="yes"/g' ${WORKDIR}/init-live.sh + #fi + : } do_install() {
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] Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> ---