From: Sebastian Andrzej Siewior Date: Wed, 23 Nov 2011 19:53:17 +0000 (+0100) Subject: target: use \n as a separator for configuration X-Git-Tag: v3.3-rc1~7^2~20 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=90c161b643d9531d271110876a14e68b49172d8a;p=pandora-kernel.git target: use \n as a separator for configuration The command | echo rd_pages=32768 > ramdisk/control Does not work because it writes "rd_pages=32768\n" and the parser which matches for "rd_pages=%d" does not recognize it due to the \n. One way of fixing this would be using "echo -n" instead. This patch adds \n to the list of separators so we don't have to use the -n argument which I find is more convinient. Signed-off-by: Sebastian Andrzej Siewior Signed-off-by: Nicholas Bellinger --- Reading git-diff-tree failed