[Armadeus-commitlog] armadeus branch, master, updated. release-3.3-75-g0072a17
Brought to you by:
sszy
|
From: Julien B a. A. <ar...@us...> - 2010-10-28 17:07:13
|
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "armadeus".
The branch, master has been updated
via 0072a175cd67516b4c86b74f79433c4a45c61fb8 (commit)
from 4680fb7d7311aa707eaeb18b0f00cfe9bb79d230 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 0072a175cd67516b4c86b74f79433c4a45c61fb8
Author: Julien Boibessot <jul...@ar...>
Date: Thu Oct 28 19:06:36 2010 +0200
[BUILDROOT] Don't dereference symlinked Linux configs when copying them
-----------------------------------------------------------------------
Summary of changes:
...nux-dont_deference_symlinked_config_files.patch | 24 ++++++++++++++++++++
1 files changed, 24 insertions(+), 0 deletions(-)
create mode 100644 patches/buildroot/134-linux-dont_deference_symlinked_config_files.patch
diff --git a/patches/buildroot/134-linux-dont_deference_symlinked_config_files.patch b/patches/buildroot/134-linux-dont_deference_symlinked_config_files.patch
new file mode 100644
index 0000000..2fd832c
--- /dev/null
+++ b/patches/buildroot/134-linux-dont_deference_symlinked_config_files.patch
@@ -0,0 +1,24 @@
+Otherwise Linux configs which are symlinks are copied as symlinks and prevent
+build from going further afterwards.
+
+Signed-off-by: Julien Boibessot <jul...@fr...>
+
+Index: buildroot/target/linux/Makefile.in.advanced
+===================================================================
+--- buildroot.orig/target/linux/Makefile.in.advanced 2010-10-28 16:51:17.000000000 +0200
++++ buildroot/target/linux/Makefile.in.advanced 2010-10-28 16:55:09.000000000 +0200
+@@ -315,12 +315,12 @@
+ ifeq ($(BR2_PACKAGE_LINUX_USE_KCONFIG),y)
+ # Try user defined config
+ if [ -f "$(LINUX26_KCONFIG)" ] ; then \
+- cp -dpf $(LINUX26_KCONFIG) $@ ; \
++ cp -pf $(LINUX26_KCONFIG) $@ ; \
+ fi
+ # Try to get a config for this linux version in the board directory
+ if [ ! -f "$(LINUX26_DIR)/.config" ] ; then \
+ if [ -f "$(BOARD_PATH)/$(BOARD_NAME)-linux-$(LINUX26_VERSION).config" ] ; then \
+- cp -dpf $(BOARD_PATH)/$(BOARD_NAME)-linux-$(LINUX26_VERSION).config $@ ; \
++ cp -pf $(BOARD_PATH)/$(BOARD_NAME)-linux-$(LINUX26_VERSION).config $@ ; \
+ fi ; \
+ fi
+ # Try to get a config for latest linux version in the board directory
hooks/post-receive
--
armadeus
|