mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
* [ptxdist] [PATCH] kernel: Ignore config difference when using rootfs in kernel option
@ 2012-05-28 12:42 Bart vdr. Meulen
  2012-05-30 16:23 ` Michael Olbrich
  0 siblings, 1 reply; 2+ messages in thread
From: Bart vdr. Meulen @ 2012-05-28 12:42 UTC (permalink / raw)
  To: ptxdist

From: "Bart vdr. Meulen" <bartvdrmeulen@gmail.com>

When using a rootfs inside the kernel the config option CONFIG_INITRAMFS_SOURCE
is changed build time, ignore this when checking for differences
after running oldconfig.

This prevents a make failure when the source kernel.config is read-only,
preventing the copy back action that normally takes place when a
difference is detected.

Signed-off-by: Bart vdr. Meulen <bartvdrmeulen@gmail.com>
---
 rules/kernel.make |    7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/rules/kernel.make b/rules/kernel.make
index 4a45a3f..e1e3a6a 100644
--- a/rules/kernel.make
+++ b/rules/kernel.make
@@ -111,16 +111,19 @@ ifdef KERNEL_INITRAMFS_SOURCE_y
 endif
 
 	@$(call ptx/oldconfig, KERNEL)
-	@diff -q -I "# [^C]" "$(KERNEL_DIR)/.config" "$(<)" > /dev/null || cp "$(KERNEL_DIR)/.config" "$(<)"
-
 #
+# CONFIG_INITRAMFS_SOURCE has been changed in .config, ignore when taking diff.
 # Don't keep the expanded path to INITRAMS_SOURCE in $(KERNEL_CONFIG),
 # because it contains local workdir path which is not relevant to
 # other developers.
 #
 ifdef KERNEL_INITRAMFS_SOURCE_y
+	@diff -q -I "# [^C]" -I "^CONFIG_INITRAMFS_SOURCE=[^C]" "$(KERNEL_DIR)/.config" "$(<)" > /dev/null || \
+		cp "$(KERNEL_DIR)/.config" "$(<)"
 	@sed -i -e 's,^CONFIG_INITRAMFS_SOURCE.*$$,CONFIG_INITRAMFS_SOURCE=\"# Automatically set by PTXDist\",g' \
 		"$(<)"
+else
+	@diff -q -I "# [^C]" "$(KERNEL_DIR)/.config" "$(<)" > /dev/null || cp "$(KERNEL_DIR)/.config" "$(<)"
 endif
 	@$(call touch)
 
-- 
1.7.9.5


-- 
ptxdist mailing list
ptxdist@pengutronix.de

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2012-05-30 16:23 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-05-28 12:42 [ptxdist] [PATCH] kernel: Ignore config difference when using rootfs in kernel option Bart vdr. Meulen
2012-05-30 16:23 ` Michael Olbrich

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox