From: Martin Jansa Date: Fri, 4 Mar 2011 08:02:28 +0000 (+0100) Subject: linux-kexecboot: remove extra quotes arround INITRAMFS_COMPRESSION RD_COMPRESSION... X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3d625ae17f830e89424765a19d22e73357ad39fe;p=openembedded.git linux-kexecboot: remove extra quotes arround INITRAMFS_COMPRESSION RD_COMPRESSION, which made 'make oldconfig' to ignore them Acked-by: Khem Raj Acked-by: Andrea Adami Signed-off-by: Martin Jansa --- diff --git a/recipes/linux/linux-kexecboot.inc b/recipes/linux/linux-kexecboot.inc index f56c27f5fb..34abdee181 100644 --- a/recipes/linux/linux-kexecboot.inc +++ b/recipes/linux/linux-kexecboot.inc @@ -153,9 +153,9 @@ do_configure_prepend() { ${S}/.config echo '${KERNEL_COMPRESSION}' >>${S}/.config - echo '"${INITRAMFS_COMPRESSION}"' >>${S}/.config + echo '${INITRAMFS_COMPRESSION}' >>${S}/.config echo 'CONFIG_INITRAMFS_SOURCE="initramfs.cpio.${INITRAMFS_COMPRESSION_SUFFIX}"' >>${S}/.config - echo '"${RD_COMPRESSION}"' >>${S}/.config + echo '${RD_COMPRESSION}' >>${S}/.config fi yes '' | oe_runmake oldconfig